ClickTAG -How to use

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

  1. #1

    Default 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 clickTAG, but am not sure exactly
    what code to use where and if the host page needs to put in some javascript or
    additional HTML to their page.
    Can anyone help?

    BannerMonkey 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 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. 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: ClickTAG -How to use

    I am working on the same issue, I m?ght have the answer, but please, what company are you fron?
    southman Guest

  4. #3

    Default Re: ClickTAG -How to use

    I am working on the same issue, I m?ght have the answer, but please, what company are you fron?
    southman Guest

  5. #4

    Default Re: ClickTAG -How to use

    [url]http://www.mfaa.org/[/url]
    [url]http://www.macromedia.com/resources/richmedia/tracking/[/url]

    The simple method is to put this ActionScript onto your click button.

    on(release){
    geturl(_root.clickTAG);
    }

    !lurk Guest

  6. #5

    Default Re: ClickTAG -How to use

    YOu need to add a button to your banner and assign it the following action:

    on(release) {
    getURL(_level0.clickTag, "_blank");
    }
    willabelle Guest

  7. #6

    Default Re: ClickTAG -How to use

    This usually works for me:

    on(release){
    getURL(clickTAG, "_blank");
    }
    AquaBoogie Guest

  8. #7

    Default Re: ClickTAG -How to use

    Hello. i work every day with clickTag and we ran in to a problem when the
    clickTag was inside a movie clip.
    The best solution we found for a general clikTag call was:

    on(release){
    getURL(_root.clickTag, "_blank");
    }

    The usage of the root, prevneted the clicktag be dependent of the level
    attribute.

    Samuhka 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