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

  1. #1

    Default 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 :
    [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
    Je créer donc dans mon anim un bouton et je fait un lien dessus de la façon
    suivante :
    on (release) {
    getURL(clickTAG,"_blank");
    }
    Je n'est pas de case "expression" à cocher sous Flash MX. Est-ce reconnu
    directement ds MX ?
    De plus, si j'écris le code :
    on (release) {
    if (clickTAG.substr(0,5) == "http:") {
    getURL(clickTAG);
    }
    }
    (En ajoutant donc la ligne {if (clickTAG.substr(0,5) == "http:")})
    Le lien n'est plus actif. Alors que cette ligne ne sert qu'à vérifier que
    l'url envoyée commence bien par "http:"

    Quelqu'un peut-il m'aider ?
    Merci.
    Jacomino


    Jaco 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 -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...
    4. 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...
    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: Pb ClickTAG

    On 2005-03-23 05:49:36 -0800, "Jaco" <ride2kill@yahoo.fr> said:
    > Bonjour,
    >
    > passant par un module de stats.
    > [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
    suivante
    >
    > suivante :
    > on (release) {
    > getURL(clickTAG,"_blank");
    > }
    > directement ds MX ?
    > on (release) {
    > if (clickTAG.substr(0,5) == "http:") {
    > getURL(clickTAG);
    > }
    > }
    > (En ajoutant donc la ligne {if (clickTAG.substr(0,5) == "http:")})
    >
    > Quelqu'un peut-il m'aider ?
    > Merci.
    > Jacomino
    If you can translate that into English, I can help you.
    --
    The Grass Apple - { [url]www.grassapple.com[/url] } news?

    timberfish Guest

  4. #3

    Default Re: Pb ClickTAG

    OK :
    Hi,
    throught a statistic module :
    [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
    on (release) {
    > > getURL(clickTAG,"_blank");
    > > }
    That is works in flash MX ?
    Like this it doesn't works
    on (release) {
    > > if (clickTAG.substr(0,5) == "http:") {
    > > getURL(clickTAG);
    > > }
    > > }
    To verify the beginning of the url : "http:" Why ?
    Someone can help me please ?
    "timberfish" <nobody@nowhere.com> a écrit dans le message de
    news:2005032309503216807%nobody@nowherecom...
    > On 2005-03-23 05:49:36 -0800, "Jaco" <ride2kill@yahoo.fr> said:
    >
    > > Bonjour,
    > >
    > > passant par un module de stats.
    > >
    [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
    > suivante
    > >
    > > suivante :
    > > on (release) {
    > > getURL(clickTAG,"_blank");
    > > }
    > > directement ds MX ?
    > > on (release) {
    > > if (clickTAG.substr(0,5) == "http:") {
    > > getURL(clickTAG);
    > > }
    > > }
    > > (En ajoutant donc la ligne {if (clickTAG.substr(0,5) == "http:")})
    > >
    > > Quelqu'un peut-il m'aider ?
    > > Merci.
    > > Jacomino
    >
    > If you can translate that into English, I can help you.
    > --
    > The Grass Apple - { [url]www.grassapple.com[/url] } news?
    >

    Jaco Guest

  5. #4

    Default Re: Pb ClickTAG

    On 2005-03-24 02:50:48 -0800, "Jaco" <ride2kill@yahoo.fr> said:
    > OK :
    > Hi,
    > throught a statistic module :
    > [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
    on
    >
    > on (release) {
    >>> getURL(clickTAG,"_blank");
    >>> }
    > That is works in flash MX ?
    > Like this it doesn't works
    > on (release) {
    >>> if (clickTAG.substr(0,5) == "http:") {
    >>> getURL(clickTAG);
    >>> }
    >>> }
    > To verify the beginning of the url : "http:" Why ?
    > Someone can help me please ?
    > news:2005032309503216807%nobody@nowherecom...
    >> On 2005-03-23 05:49:36 -0800, "Jaco" <ride2kill@yahoo.fr> said:
    >>
    >>> Bonjour,
    >>>
    >>> passant par un module de stats.
    >>>
    > [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
    suivante

    suivante
    >
    >> suivante
    >>>
    >>> suivante :
    >>> on (release) {
    >>> getURL(clickTAG,"_blank");
    >>> }
    >>> directement ds MX ?
    >>> on (release) {
    >>> if (clickTAG.substr(0,5) == "http:") {
    >>> getURL(clickTAG);
    >>> }
    >>> }
    >>> (En ajoutant donc la ligne {if (clickTAG.substr(0,5) == "http:")})
    >>>
    >>> Quelqu'un peut-il m'aider ?
    >>> Merci.
    >>> Jacomino
    >>
    >> If you can translate that into English, I can help you.
    >> --
    >> The Grass Apple - { [url]www.grassapple.com[/url] } news?
    Well "clickTAG" is normally a variable that is passed into Flash using
    FlasVars or the query string method
    mymovie.swf?clickTAG=http://mydomain.com

    This value is passed in depending on the advertiser. You may want to
    check the value of clickTAG to make sure it's defined and has a value
    rather than checking for the http: at the beginning.
    --
    The Grass Apple - { [url]www.grassapple.com[/url] } news?

    timberfish 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