IDE :: Put The Code Into The HTML File To Complete The ClickTAG Process For A Banner Ad
Apr 1, 2009
how to put the code into the HTML file to complete the clickTAG process for a banner ad.
I have put the following code onto the button (covers whole ad):
on (release) {
clickTAG = "http://" + clickTAG.slice(7);
if(clickTAG.substr(0,4)=="http") getURL(clickTAG,"_blank");
}
but I need to know what to do with the HTML doc....Is this how the ad goes to the intended location like a regular URL link would?
View 10 Replies
Similar Posts:
Oct 26, 2009
Can the clickTAG code in a flash banner be changed if you only have the .swf file and not the .fla file?
View 1 Replies
Sep 14, 2007
I'm having problems with the following code and need to merge the 2 following code together.
on(rollOver) {
getURL("javascript:expandCreative('ContainerDivID' );");
gotoAndStop(2);
} on(rollOut) {
getURL("javascript:collapseCreative('ContainerDivI D');");
gotoAndStop(1);
}
on (release) {
if (clickTag.substr(0,5) == "http:") {
getURL(clickTag, "_blank");
}}
Need the 2 following as above into one working code.
View 2 Replies
Mar 28, 2011
I've been asked to add clickTAG to a banner ad. I used ActionScript 3 and my research shows it only works with ActionScript 2. Is this true?
View 3 Replies
Oct 6, 2009
I am trying to make a banner ad that allows me to tracks stats / click thrus.I thought I could use clickTags, but i don't know if I can since I need to have the MY link embedded in the fla.
View 0 Replies
May 8, 2007
Can someone migrate to AS3 this very very useful code? Especially for Banner makers...
[code]...
View 14 Replies
Apr 14, 2010
I've done a banner ad for my client. The marketing company is kicking it back saying the clickTAG variable is not working. Below is the required code and specs. The attached Zip file has the ad. I'm a newbie to AS2, which is required for the ad.
Click Tags:All Flash banner ads are required to support the clickTAG variable. The clickTAG is the tracking code assigned by the publisher to an individual ad. It allows the publisher to register where the ad was displayed when it was clicked and helps ReachLocal evaluate the effectiveness of the banner creative.
On any click, Flash ads should redirect to the URL specified in the clickTAG argument; there should be no other redirection in between.The variable name must be reflected exactly as follows: clickTAG (upper-case TAG; no space between click and TAG; not click tag, Click Tag, or any other form).The Flash banner ad should contain the following code for the clickTAG parameter:
on (release) { if (clickTAG.substr(0,5) == "http:") { getURL(clickTAG, "_blank"); }
}
The above code should be copied and pasted into the banner ad�s code exactly
* as it appears above.The code should not specify the destination URL for the ad; this is a responsibility of ReachLocal.
*Additional Web Developer Information: Depending on the structure of your Flash ad, it may be necessary to prepend "_root." or "_level0." to the clickTAG above, resulting in "_root.clickTAG" or "_level0.clickTAG".
View 1 Replies
Oct 6, 2009
I am trying to make a banner ad that allows me to tracks stats / click thrus.I thought I could use clickTags, but i don't know if I can since I need to have the MY link embedded in the fla.
View 1 Replies
Nov 23, 2009
Not really resolved, just giving up
View 2 Replies
Aug 19, 2009
So what i did is made a new layer called it Click Tag and put a button on it and made the button invisible, then i added this Action script to it
on (release) { if (clickTAG.substr(0, 5) == "http://www.ozarksfederal.com/") { getURL(clickTAG); }}
Ozarks Federal is the company advertising on the banner i made...and that's there websiteI think this is right but i don't know how to test if it is right?
View 2 Replies
May 23, 2011
I don't have access to the original Flash file [url]...
View 2 Replies
May 4, 2010
Is there a standard way to send variables through a banner ad? A client wants a banner that lets the user enter his mobile number, then receives a code by sms, and then enters the code into the banner. If the code then validates, the user is sent to a page with a login form with the phone number and code filled in. It must be possible to add the phone number and code as parameters to the clickTag somehow? I found that Adform supports using ";cppar=1&" and then variable=value pairs, but is this a standard, or a special feature of Adform?
View 1 Replies
Jan 11, 2009
I working on a flashbanner. It is a dynamic textfield called "regnr" where the user is supposed to add a registration number (of their car) before clicking the send button. This code is on the button:
Code:
on(release){
//getURL("[URL]"+regnr.text);
getURL(_root.clickTag+regnr.text,"_blank");
}}
It works when the domain is hardcoded but doesn't work when I am using the clickTag. Is it possible to add variables like this to a clickTag? How could this be done to actually work?
View 4 Replies
Sep 21, 2008
i am trying to get a 'clickTag' variable to work within a flash banner ad which i didn't make.. i have been assured that within the flash file the variable is being 'expected'.. i am using swfobject to pass in the clickTag variable..
[Code]...
the flash banner displays fine.. but there is 'clicking' element of it is not working.. ie. there is no link on the banner.. can anyone see any problems with the way i am doing this...? or.. is the problem definitely within the swf....??
View 1 Replies
Apr 16, 2011
i have a swf file which i want to load into a fla file and export as a new swf file. I understand this part but my actionscript 3.0 code that i put on frame one of the timeline does not work. I have tried every version i have seen online including in adobe's actionscript 3 classroom in a book.... and other books..... i want the swf to run immediately so i dont think i need any event listeners since i am not clicking a button or anything like that... just running the swf at start.
View 1 Replies
Apr 23, 2010
I'm trying to find out if there is a way of using clickTag and Google Analytics to track outgoing banner clicks. clickTag code:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL(clickTAG);
}
}
Maybe someone can tell me whether the following would work:
on (release) {
if (clickTAG.substr(0,5) == "http:") {
getURL("javascript:pageTracker._trackPageview('/somebannerad');");
getURL(clickTAG);
}
}
like a solution that worked with the standard clickTag code and didn't involve changing any code in the flash file.
View 1 Replies
May 2, 2011
I am working on Flash,Php site.Currently the Flash Developer calles my page called createJPG.php and sends me an image data.I recieve this data and create JPG from the Data.
What i want is, when the Flash developer send me data he can show a loader and when create JPG process is complete he can hide the loader.For this i want to pass him variable with value 1 as soon as the CreateJPG process is complete...
View 2 Replies
Jun 23, 2010
I am trying to make a scrolling banner like the html <marquee> tag that loads text from a .txt file. Here is what I have so far:
Frame1
Code:
var formatObj = new TextFormat();
formatObj.size = 15;
formatObj.color = 0;
formatObj.font = "Comic Sans MS";
[code].....
For some reason it only works by using the stop(); command. The problem is that this causes the animation not to automatically start when placed into an html page. The result I want is for the text to automatically begin to scroll.
View 2 Replies
Mar 1, 2011
how to go about creating a flash banner that when clicked navigates to another location in the timeline
View 1 Replies
Sep 19, 2010
I have trouble passing a variable from HTML to Flash.I use swf-object2.2.how to code the variable in the html-file and how to receive it in the as-file?Its a simple shopId = 110
View 3 Replies
Sep 21, 2009
I am building a website, but am fairly new at it on flash... Am I able to add HTML code to the file? I am trying to add a code which creates a map from mapquest...?[code]
View 1 Replies
Sep 20, 2009
I am building a website, but am fairly new at it on flash... Am I able to add HTML code to the file? I am trying to add a code which creates a map from mapquest?[code]...
View 1 Replies
Sep 1, 2009
I found this code to load a movie but naming the button myRequest or myLoader does not do anything?[code]....
View 21 Replies
Feb 24, 2011
Is there a clean and efficient way to import documents in a flash presentation?I have a big number of doc documents to import in a flash presentation and i'm wondering what's the best way to attach them. I've worked passing them to HTML before, but the doc to HTML conversion is messy, ugly and doesn't output valid HTML code, besides, it's a chore to clean the embed CSS style the conversion leaves inside the code. is there a library that allow to use a more portable format? if not, is there a clean way to convert a doc file to valid html code?
View 1 Replies
Feb 27, 2011
I want to create a flash file containing some text given by HTML code. For example like this:[code]But i don't have such swf file. So how can i make an swf file like that? Is there any program for it? Or is there already an swf file for that?
View 1 Replies
Oct 10, 2006
What I'm looking for is a fairly basic looking MP3 player, with the usual, Play, Stop, Pause and maybe a loadbar, that will only be playing one track. But the catch is, I want to be able to define the MP3 file to be played via the HTML code.My reasons for this is, the player is for a record label's website and they have audio samples for 3-4 artists a month. And it would make my life a lot easier if I could have one standard player for the site and then just change the HTML code, instead of having to make individual .swfs for each MP3, each month. And having to open the player(s) in Flash and define the file in there.
View 1 Replies
Jan 1, 2008
how to be able to create another node which would be a text box just like the caption text seen in the tutorial but could be used to display a url.I tried adding it in but having problems getting it to read the html code that gets loaded from the xml file.heres what the actionscript looks like:
Code:
Key.removeListener(listen);
function loadXML(loaded) {[code]...
View 8 Replies
Jul 21, 2010
I run through the process of making code for a whole scene without compiling periodically I overlook where a child is added to and try to remove it from somewhere else. However, I dont believe this to be the case on this occasion. I have only two funcytion that deal with the addition and removeal of the children of the mc that is throwing me errors. If I add the simple:Code: Select allif (holder.contains(thisChild)) {It stops the error but doesn't fix my actual problem...
Code: Select alloverride public function unLoad():void {
for (var i:int = 0; i < currentDeck.length; i++) {
currentDeck[i].removeEventListener(MouseEvent.CLICK, clicked);
[code].....
View 3 Replies
Mar 18, 2010
i have to embed my flash file in my html using satay code since my html has to be xhtml compliant. my problem is when i try to embed 2 different movies on the same page, the first movie loads in both containers. does anyone know how to fix this or if there is another xhtml compliant way to embedding flash?
View 3 Replies
Jun 7, 2009
i have created an animation and when saved in notepad as an html file everything looks as it should when previewed in any browser, however when i paste the code into my site via dreamweaver the animation dose not appear.
View 22 Replies