Do banner ads need to be clickable

Ask a Question related to Adobe Flash, Flex & Director, Design and Development.

  1. #1

    Default Do banner ads need to be clickable

    I'm creating my first banner ad. Will the sites hosting the ad generally make
    the whole ad clickable (to direct to our web site) or do I need to put
    something into flash?

    ie. is it like making an image a link, or is it more complicated.

    bilbo--baggins Guest

  2. Similar Questions and Discussions

    1. any clickable control
      Hi all, Is there a webcontrol or an htmlcontrol available that does a postback on a onclick but is more generic that a button? For example I...
    2. Has anyone seen the "Mad Mad House" banner or the Pizza Hut banner? [video]
      Has anyone seen these two banners anyplace? I've run into both of them on Yahoo and am desperately seeking a tutorial or any resources on how these...
    3. button in MC not clickable
      ok, i'm fairly new at actionscripts but i'm creating something very simple and am hung up on it for some reason. i have searched the forums here and...
    4. clickable boundcolumn is it possible
      Hi I have a data grid with boundcolumns what I am trying to do is make the data that shows up in the bound columns clickable so as to be able to...
    5. Clickable area
      I an image which illustrates a circle. The area out of the circle is white and when I do Background transparent it disappears. When i assign a...
  3. #2

    Default Re: Do banner ads need to be clickable

    You need to put this in your ad.

    I used to work for a marketing agency and we would run across this problem all
    the time with client-provided SWF ads. You need to make the entire ad
    clickable (can use a "clear" button with an onrelease of
    "getURL("http://whatever", "_blank");")

    Otherwise, when embedded on the page, the ad will just animate and do nothing.

    If you want the URL to be dynamic, you can pass it in via the FlashVars
    parameter and then use a bit of actionscript to make the getURL statement use
    the passed-in URL, but this means you have to make absolutely sure that whoever
    uses the ad uses the correct HTML structure (for <object><embed>, using your
    FlashVars parameter).

    I think embedding the url within the SWF is better, eliminates confusion for
    those who will ultimately publish the ad, especially if you might not have a
    lot of contact with those parties.

    liquidleaf Guest

  4. #3

    Default Re: Do banner ads need to be clickable

    That's great, thanks. So glad I found out before sending the ad!
    bilbo--baggins Guest

  5. #4

    Default Re: Do banner ads need to be clickable

    Actually, I'd never even heard of ActionScript before your suggestion. I've
    spent this afternoon trying to work out what is required, and after finding a
    tutorial have come up with the following:

    import flash.events.IEventDispatcher;
    linkbutton.addEventListener("MouseEvent.MOUSE_DOWN ",gotoIM);
    function gotoIM(e:MouseEvent):void {
    navigateToURL(new URLRequest("http://www.imaginemontenegro.com/"));
    }

    Unfortunately, the banner ad doesn't respond when it is clicked on, and I have
    no idea where to go from here.

    One thing I have noticed is that in the ActionScript window it says Scene 1:
    Actions: Frame 1.

    From the timeline it appears the action covers the whole duration of the ad,
    but I don't understand why it says Frame 1, or whether this is involved with it
    not working.

    Hope someone understands this stuff!

    bilbo--baggins Guest

  6. #5

    Default Re: Do banner ads need to be clickable

    Double check with the hosting site. Most of the big sites require a clickTag
    these days instead of your average getURL but it's entirely up to the hosting
    site.

    Disregard that tutorial you found. See if this helps:
    [url]http://blog.doubleplusgooddesign.com/[/url]

    aniebel Guest

  7. #6

    Default Re: Do banner ads need to be clickable

    Thanks for this info. Does that mean that you don't include the link within
    the Flash document, just the clickTag which the site host then uses to link to
    your site?

    How can I test that the link or tag is working? How should I test the flash
    movie? I've tried 'test movie' within Flash as well as openingn the file from
    witihin Safar and Firefox and nothing happens when I click on it (not referring
    to the clickTag). I'm suspecting I'm going wrong somewhere, and I'm concerned
    that the same will happen with clickTag and that will be harder for me to test.
    I'm totally unfamiliar with ActionScript - I've barely worked out the basics
    of Flash.

    bilbo--baggins Guest

  8. #7

    Default Re: Do banner ads need to be clickable

    liquidleaf was correct by suggesting the use of getURL if you are in control of
    the page where the banner sits. Not all sites require the clickTag but of those
    who do, they handle the forwarding URL for you. It's out of your hands at that
    point. They just need to know what the URL is to plug into their code on their
    end.

    If you want to test whether it works or not using the regular getURL code,
    make yourself an invisible button by putting a rectangle the same size as your
    stage in the HIT frame ONLY. This means you put a keyframe on that frame,
    select that frame then draw your rectangle. It will appear as a teal colored
    box on stage but don't worry. That will not show up when you play/test your
    Flash file.

    Place that button on stage and position it, then give it an instance name in
    the Property Inspector of something like "inv_btn".

    Now, in frame 1 of your main timeline, in a layer called "AS" (for
    actionscript) place the following code:


    inv_btn.onRelease = function(){
    //replace [url]www.mysite.com[/url] with the correct URL
    getURL("http://www.mysite.com", "_blank");")
    };

    aniebel Guest

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139