Ask a Question related to Macromedia Flash, Design and Development.
-
Jaco #1
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
-
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.... -
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... -
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 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... -
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... -
timberfish #2
Re: Pb ClickTAG
On 2005-03-23 05:49:36 -0800, "Jaco" <ride2kill@yahoo.fr> said:
suivante> Bonjour,
>
> passant par un module de stats.
> [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]If you can translate that into English, I can help you.>
> 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
--
The Grass Apple - { [url]www.grassapple.com[/url] } news?
timberfish Guest
-
Jaco #3
Re: Pb ClickTAG
OK :
Hi,
throught a statistic module :
[url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]
on (release) {That is works in flash MX ?> > getURL(clickTAG,"_blank");
> > }
Like this it doesn't works
on (release) {To verify the beginning of the url : "http:" Why ?> > if (clickTAG.substr(0,5) == "http:") {
> > getURL(clickTAG);
> > }
> > }
Someone can help me please ?
"timberfish" <nobody@nowhere.com> a écrit dans le message de
news:2005032309503216807%nobody@nowherecom...[url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]> On 2005-03-23 05:49:36 -0800, "Jaco" <ride2kill@yahoo.fr> said:
>> > Bonjour,
> >
> > passant par un module de stats.
> >> 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
-
timberfish #4
Re: Pb ClickTAG
On 2005-03-24 02:50:48 -0800, "Jaco" <ride2kill@yahoo.fr> said:
on> OK :
> Hi,
> throught a statistic module :
> [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]suivante>
> on (release) {> That is works in flash MX ?>>> getURL(clickTAG,"_blank");
>>> }
> Like this it doesn't works
> on (release) {> To verify the beginning of the url : "http:" Why ?>>> if (clickTAG.substr(0,5) == "http:") {
>>> getURL(clickTAG);
>>> }
>>> }
> Someone can help me please ?
> news:2005032309503216807%nobody@nowherecom...> [url]http://www.macromedia.com/resources/richmedia/tracking/designers_guide/index.html[/url]>> On 2005-03-23 05:49:36 -0800, "Jaco" <ride2kill@yahoo.fr> said:
>>>>> Bonjour,
>>>
>>> passant par un module de stats.
>>>
suivanteWell "clickTAG" is normally a variable that is passed into Flash using>>> 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?
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



Reply With Quote

