Trouble with clickTAG coding

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

  1. #1

    Default Trouble with clickTAG coding

    I'm trying to get a flash ad to work properly as a clickTAG enabled file, but
    I'm not having in luck through the ad tracking system we're using. I've looked
    at everything on this
    [url]http://www.adobe.com/resources/richmedia/tracking/designers_guide/[/url], and believe
    that I have it organized correctly, but am apparently missing a step. Any
    obvious reasons this might not be working? Any help would be greatly
    appreciated. Thanks!

    Been Deleted Guest

  2. Similar Questions and Discussions

    1. clickTAG not working
      I have a banner ad that works fine if I use getURL and hard-code a link but doesn't do anything if I use clickTAG so that the clicks can be tracked....
    2. ClickTAG -How to use
      Hello, I need to track clicks for some banners I am making that will be hosted on affiliate websites. What do I need to do? I know it involves...
    3. clickTAG test
      I need a way to make sure that the clickTAG in flash banners are working properly. I'm assuming the best way is to create an HTML page with the...
    4. 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 :...
    5. ClickTag
      Hi! Trying to load a page (www.clarin.com) and after reading the index, the page loads, say: http://www.clarin.com/diario/2004/08/31/clickTag...
  3. #2

    Default Re: Trouble with clickTAG coding

    Can we see the code you're using? Make sure that the clicktag variable matches the one on the hosting site exactly because it is case sensitive.
    aniebel Guest

  4. #3

    Default Re: Trouble with clickTAG coding

    Here is the code that I have applied to the button:
    Do I need more adjustments than this?

    on (release) {
    if (clickTAG.substr(0,5) == "http:") {
    getURL(clickTAG);
    }
    }
    Been Deleted Guest

  5. #4

    Default Re: Trouble with clickTAG coding

    I've actually figured out the issue. I was missing a keyframe. Thanks for the response.
    Been Deleted Guest

  6. #5

    Default Re: Trouble with clickTAG coding

    Glad to hear it. Thanks for posting your solution!
    aniebel 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