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

How to add a button that links to a website

New Here ,
Oct 18, 2018 Oct 18, 2018

Hi everyone I know absolutely nothing about adobe animate CC but iv been assigned a task to create a link from a button on a video, I dont speak computer so please just include screenshots to show me what I need to do.

I am using Adobe Animate CC 2018

Kind regard, Angus

2.5K
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

Community Expert , Oct 19, 2018 Oct 19, 2018

Hi.

Please put this code in a frame of the timeline where your button is located.

JavaScript code:

function openWebPage()

{

     window.open("http://www.adobe.com", "_blank");

}

this.linkButton.addEventListener("click", openWebPage);

FLA download:

animate_cc_html5_open_webpage.zip - Google Drive​

Don't forget to have a look at the Snippets panel for common interactivities.

Regards,

JC

Translate
Community Expert ,
Oct 19, 2018 Oct 19, 2018

Hi.

Please put this code in a frame of the timeline where your button is located.

JavaScript code:

function openWebPage()

{

     window.open("http://www.adobe.com", "_blank");

}

this.linkButton.addEventListener("click", openWebPage);

FLA download:

animate_cc_html5_open_webpage.zip - Google Drive​

Don't forget to have a look at the Snippets panel for common interactivities.

Regards,

JC

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
Explorer ,
Mar 08, 2024 Mar 08, 2024

João César, I see that both your answer and the Animate Wizard give me options for opening the link in a new browser window. 

Is there JavaScript code to follow the link in the current browser window?

Thank you for your help in advance. 

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
Community Expert ,
Mar 08, 2024 Mar 08, 2024
LATEST

instead of _blank, use _self

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