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

Are multiple Links in HTML5 Ad for Adwords possible?

New Here ,
Aug 10, 2020 Aug 10, 2020

Copy link to clipboard

Copied

I have been making html5 banner ads that are run in Adwords. They work fine with 1 link (or exit). Is it possible to make banner ads in Animate that have multiple links? 

 

For example, an ad that has 3 buttons and each button would link to a different landing page. 

 

I can make an ad in animate with multiple buttons but what is needed to make it compatible with Adwords? Does the html file just need more clickTAGs? Or is this just not possible in Adwords? 

 

If anyone has insight on this help is appreciated, thanks! 

Views

831

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
Community Expert ,
Aug 10, 2020 Aug 10, 2020

Copy link to clipboard

Copied

LATEST

yes, you just need to have 3 different coded buttons with links to them. That should work. 

 

Clicking on the specified symbol instance loads the URL in a new browser window.

Instructions:
1. Replace http://www.adobe.com with the desired URL address.
Keep the quotation marks ("").
*/

this.btn1.addEventListener("click", fl_ClickToGoToWebPage);

function fl_ClickToGoToWebPage() {
window.open("http://www.adobe.com", "_blank");
}

/* Click to Go to Web Page
Clicking on the specified symbol instance loads the URL in a new browser window.

Instructions:
1. Replace http://www.adobe.com with the desired URL address.
Keep the quotation marks ("").
*/

this.btn2.addEventListener("click", fl_ClickToGoToWebPage_2);

function fl_ClickToGoToWebPage_2() {
window.open("http://www.adobe.com", "_blank");
}

/* Click to Go to Web Page
Clicking on the specified symbol instance loads the URL in a new browser window.

Instructions:
1. Replace http://www.adobe.com with the desired URL address.
Keep the quotation marks ("").
*/

this.btn3.addEventListener("click", fl_ClickToGoToWebPage_3);

function fl_ClickToGoToWebPage_3() {
window.open("http://www.adobe.com", "_blank");
}

 

Screen Shot 2020-08-10 at 11.32.56 PM.png

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