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

Connecting Animate CC HTML5 Canvas Documents

New Here ,
Nov 14, 2016 Nov 14, 2016

Copy link to clipboard

Copied

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?

Views

587

Translate

Translate

Report

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.

Votes

Translate

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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