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

  1. #1

    Default Ad Tracking

    This is my first time working with Ad Tracking in Flash and I want to make sure
    I'm going about it correctly.. I can't test it on my side, so I want to know
    it's right when I pass it on to the client.

    I've gone through the tutorials on Adobe and here's what I'm working with:
    Rather than attaching the clickTAG function to a specific object, I've added
    it to the code (on click function) in the 1st frame of the document as such:

    function doClick():Void {
    getURL("clientsurlishere", "_blank");
    if (clickTAG.substr(0,5) == "http:") {
    getURL(clickTAG);
    }
    }

    ..since I don't have a way to test it (or do I?), is this going to work? Or
    does it actually have to be attached to the object? It's set up so that a few
    movies and images within the document are clickable (which is why it was
    better, and easier to update in the future, to set up the code in the 1st frame
    rather than on each object).

    coldpopper Guest

  2. Similar Questions and Discussions

    1. InDesign tracking vs. Quark tracking?
      Hi Anne Marie, I would describe letter, word, and glyph scaling parameters as things the paragraph composer can fuzzy-logic work with. Fuzzy logic...
    2. Tracking IP
      Ok, I have website hosting on a server. Is there a way for me to write a program that will track what IP addresses are hitting me site and write them...
    3. Tracking
      Is there a way to track what a user does on the CD and what is a way the information can be sent to say a website to keep stats of what options have...
    4. tracking a pid
      hi i got an error message that say genunix: WARNING: Sorry, no swap space to grow stack for pid 19651 (Cgistub) Any ways to track down this...
    5. Tracking changes for web app
      I am working with a web app that allows users to update/insert values. I would like to track changes via triggers, but I can't figure out how to...
  3. #2

    Default Re: Ad Tracking

    Can I ask why you have two getURL in the function? one for clientsurlhere and one for clicTAG?
    flashParadigm Guest

  4. #3

    Default Re: Ad Tracking

    I'd suggest using the following if you're hard coding the url in the ad.
    "clickBtn" is the btn instance name.

    clickBtn.onRelease = function(){
    getURL(clickTAG + "http:%252f%252fwww.someURL.com", "_blank");
    };

    If you're going to pass in the click urls via FlashVars in the html wrapper
    then you can use this way.

    clickBtn.onRelease = function(){
    getURL(clickTAG, "_blank");
    };

    The clickTAG is just a variable that's accepted to use for ads for
    consistency. I'm not sure of the ad system that you'll be using or the redirect
    that will be attached to the clickTAG variable but here's a way you can test
    it. Use the last example above w/o the hard coded click url and in the
    FlashVars in the html wrapper code create a new one called
    FlashVars="clickTAG=http://www.someURL.com". If you test it and it goes through
    to the site then it will work once the adsystem ads it's redirect or flash
    wrapper code to the swf.

    Also as stated in the previous post having the two getURLs will open up a new
    window plus replace the existing one as you have it.

    Hope this helps you out.

    jeepguy 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