Ask a Question related to Macromedia Flash Ad Development, Design and Development.
-
HaoleBoy #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. I
have looked all over the internet and checked my code dozens of times and can't
figure out what is wrong. I am outputting as Flash 8 AS2.
I know the invisible button layer is right since the hard link approach with
it works.
Here is the swf code for the symbol:
[Q]on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL(clickTAG, "_blank");
}
}[/Q]
And here is my html code in the page:
[Q]<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>SlowTwitchBanner1</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase',
'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0
,0,0',
'width', '720',
'height', '90',
'src', 'SlowTwitchBanner1',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'SlowTwitchBanner1',
'bgcolor', '#ffffff',
'name', 'SlowTwitchBanner1',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'SlowTwitchBanner1',
'salign', ''
); //end AC code
}
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=8,0,0,0" width="720" height="90" id="SlowTwitchBanner1" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie"
value="SlowTwitchBanner1.swf?clickTAG=http://www.tribiketransport.com/registrati
on.html" /><param name="quality" value="high" /><param name="bgcolor"
value="#ffffff" /> <embed
src="SlowTwitchBanner1.swf?clickTAG=http://www.tribiketransport.com/registration
..html" quality="high" bgcolor="#ffffff" width="720" height="90"
name="SlowTwitchBanner1" align="middle" allowScriptAccess="sameDomain"
allowFullScreen="false" type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</body>
</html>
[/Q]
And here is the banner on the server:
[url]http://www.tribiketransport2.com/flashtest/SlowTwitchBanner1.html[/url]
If anyone sees what I am doing wrong, please let me know.
Thanks very much.
HaoleBoy Guest
-
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... -
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 :... -
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... -
aniebel #2
Re: clickTAG not working
Hello, I noticed you had not put a tracking URL in your embed script on the
page. Is this banner being tracked and if so, by whom?
If this banner is sitting on a page that you (or your client) serve and you do
not intend to track the clickthrus, there's no reason why you can't just
hard-code the landing URL in yourself and forget about the clickTag.
aniebel Guest
-
HaoleBoy #3
Re: clickTAG not working
This is just a test post of the banner. It will be tracked when put on the
production site. Shouldn't the straight link also work as a test of the
clickTAG? It is just a simple GET, so it should work with any valid url string.
HaoleBoy Guest
-
HaoleBoy #4
Re: clickTAG not working
Well, it works on the production site with their embedded code so I obviously
am not doing something right in the HTML embedding on my test. There seems to
be a significant gap in my understanding of this process.
HaoleBoy Guest
-
Kjup #5
Re: clickTAG not working
Your issue is that you don't reference the url in your script call which draws
the swf file into the page. You've set it up properly on the noscript side it
seems based on the source code that I looked at, but you need to add that same
function to your movie param setting in the script reference e.g. 'movie',
'SlowTwitchBanner1?clickTAG=http://www.tribiketransport.com/registration.html',
I've setup a test for you to confirm that this does indeed work here:
[url]http://www.govector.com/_slowtwitch/[/url]
Good luck with your campaign.
Best,
Kjup
Kjup Guest
-
HaoleBoy #6
Re: clickTAG not working
Thanks for the answer and explanation. It all seems OK now.
HaoleBoy Guest
-
Kjup #7
Re: clickTAG not working
Great...I just gave you and update of the codebase as well. Good luck with it!
-Kjup
Kjup Guest



Reply With Quote

