clickTAG testing problem within Flash

Ask a Question related to Macromedia Flash Ad Development, Design and Development.

  1. #1

    Default clickTAG testing problem within Flash

    Hello! I am by no means a Flash pro, but I know the basics... I did a search
    and couldn't find what I was looking for on this, and I'm new to the forum, so
    apologies if I miss some etiquette step.

    So, I've got a simple linear animation banner ad with a topmost layer as a
    clear button and the clickTAG info from the hosting site/agency.

    The code they have provided should be attached below...

    Should I be able to test this within Flash? If I swap out the code for regular
    ol' Flash links it works and tests fine. Anyone with similar issues, or a
    solution to shis? TIA!


    clickTAG.on (release) {
    if (clickTAG.substr(0,5) == "http://www.rebit.com") {
    getURL(clickTAG, "_blank");
    }
    }

    rcbmoose Guest

  2. Similar Questions and Discussions

    1. Steps to insert a clickTag in a Flash Banner with FlashMX 6 & Adobe CS3 Version
      Hi Folks I am very new to this forum + having a basic level of understanding with Flash Software (like Flash MX & Adobe CS3). By profession i am...
    2. clickTag not working in Flash 8
      I am setting up a banner for a client, and need to add the clickTag function to it, which I did like this: on (release) { if...
    3. Testing for flash player 8
      I just built a new site and it is in flash8. I thought I built the tester right, but just had someone in Nicaragua look at it and see nothing. He...
    4. Flash clickTAG destination URL
      When using clickTAG to add a destination clickthrough URL to an ad, is there a limit to the length of the URL string or limits on characters? ...
    5. Pb ClickTAG
      Bonjour, Je dois créer un anim qui pointe vers une url après un clic dessus en passant par un module de stats. Voici la procédure :...
  3. #2

    Default Re: clickTAG testing problem within Flash

    So this is odd... I tried tracing the code and Flash is not even seeing the
    initial button click (trace code below). I am truly confused.

    And yet, if I use non-clickTAG straight link code it works just fine. Buh?

    on (release) {
    if (clickTAG.substr(0,5) == "http://www.rebit.com") {
    //getURL(clickTAG, "_blank");
    trace("here's a button click");
    }
    }

    rcbmoose Guest

Posting Permissions

  • You may not post new threads
  • You may 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