Adding clickTAG code to flipbook

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

  1. #1

    Default Adding clickTAG code to flipbook

    Hi,

    The same [url]http://www.page-flip.com/demos.htm[/url] I refer to in my previous post is
    also going to need clickTAG code as my boss wants to be able to track the
    number of clicks on each page and if possible the clicks on each button.

    Is it possible to do this?

    adobegirl Guest

  2. Similar Questions and Discussions

    1. Adding buttons to a flipbook
      Hello, I am building a Flash flipbook: http://www.northbay.com/Advertising/GiftGuide2008/index.html This is one .swf file that I created from...
    2. Adding API code to Actionscript
      Hello, I am working on an online poker game for a client. I am in charge of the design phase and somebody else is involved with the back end. He...
    3. Adding to code hints
      I want to add things to the "Tag libraries" I guess? You know when you are in ASP VBScript or something and you hit CTRL+SPACE it shows the code...
    4. Adding user accounts from code
      All, I am building a ASP.Net app that will act as a online data store. It needs the ability to add windows user accounts from the interface. I...
    5. adding a new record with code
      Access 97 ,win98SE. I have a form (myform) with a subform(mysf). myform has a combo box which looks up a client and then displays that client...
  3. #2

    Default Re: Adding clickTAG code to flipbook

    The clickTag method for tracking now bit changed in AS3,
    The code look like this

    var getclickTag:String;
    function loaderComplete(myEvent:Event)
    {
    var myQueryStrings=this.loaderInfo.parameters;
    getclickTag=myQueryStrings.clickTag;
    }
    this.loaderInfo.addEventListener(Event.COMPLETE, loaderComplete);

    I think this one helps you

    webqaflash 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