Skip to main content
Participant
August 10, 2020
Question

Are multiple Links in HTML5 Ad for Adwords possible?

  • August 10, 2020
  • 1 reply
  • 1240 views

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! 

    This topic has been closed for replies.

    1 reply

    Community Expert
    August 11, 2020

    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");
    }