Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Connecting Animate CC HTML5 Canvas Documents

New Here ,
Nov 14, 2016 Nov 14, 2016

Is there a way to connect/link two or more HTML5 Canvas documents to each other?

I purposefully created different .fla Animate HTML5 Canvas documents to make the page loads faster, but I now cannot figure out how to seamlessly connect the two. Not sure if it is simply a matter to using a "go to web page" code and applying the finished html website address?

Any suggestions?

701
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Nov 14, 2016 Nov 14, 2016

The preferred method of navigating the current page to a new URL in JavaScript is:

window.location.href = "mywebpageurl.htm";

html - Should I use window.navigate or document.location in JavaScript? - Stack Overflow

window.open is generally only used to open popup windows.

Translate
Community Expert ,
Nov 14, 2016 Nov 14, 2016

the easiest (but not the most seamless) is to use window.open().

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 14, 2016 Nov 14, 2016
LATEST

The preferred method of navigating the current page to a new URL in JavaScript is:

window.location.href = "mywebpageurl.htm";

html - Should I use window.navigate or document.location in JavaScript? - Stack Overflow

window.open is generally only used to open popup windows.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines