ActionScript 3.0 :: Make A Banner With ClickTag?

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


Similar Posts:


Professional :: How To Add ClickTag To Banner Ad

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

ActionScript 3.0 :: Banner Making - ClickTag ?

May 8, 2007

Can someone migrate to AS3 this very very useful code? Especially for Banner makers...

[code]...

View 14 Replies

ActionScript 2.0 :: Clicktag Not Working On Banner Ad?

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

ActionScript 2.0 :: Flash Banner With Stats (clickTag)?

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

CS3 AS Fail: Creating A Clickable Ad Banner W/ ClickTag?

Nov 23, 2009

Not really resolved, just giving up

View 2 Replies

ActionScript 1/2 :: Using The ClickTAG Method To Track A Banner?

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

Flash :: Banner Not Loading When ClickTAG Is Included

May 23, 2011

I don't have access to the original Flash file [url]...

View 2 Replies

ActionScript 2.0 :: ClickTag / Expandable Banner Code

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

Banner Ads - ClickTag And Transferring Variables In Query String

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

ActionScript 2.0 :: Flash Banner - Adding Variable To ClickTag

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

IDE :: Swfobject - Get A 'clickTag' Variable To Work Within A Flash Banner Ad

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

Tracking A Flash Banner Advert Using ClickTag And Google Analytics?

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

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

ActionScript 1/2 :: ClickTAG Code In A Flash Banner Be Changed If Only Have The .swf File And Not The .fla File?

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

ActionScript 2.0 :: Make Use Of The ClickTag Function In A Website?

Sep 21, 2009

I`m trying to make use of the clickTag function in a website, but it doesn`t work, I`ve followed some tutorials and they just don`t work. How exactly should I do to make a clickTag function work?

View 1 Replies

How To Use Flash And Make A Banner

Aug 12, 2009

i spend ages getting to know how to use flash, and make a banner and the bits that are animated have black boxes over them when i publish.

[URL]

View 6 Replies

Use Xml And Flash To Make A Banner Like The One That Tv.com?

Dec 9, 2009

i want to use xml and flash to make a banner like the one that tv.com is using so when i want to change the image or the content of the banner, i can do that by changing the url of the image and some text in the xml file. what do i have to do with flash, actionscript, and xml? is there any open source that i can use?

View 1 Replies

Flash :: Make An Animation Banner?

Nov 22, 2011

Is there some tools can help me make the flash banner?

View 1 Replies

Flash :: Make An Expanding Banner?

Aug 27, 2008

I know that people don't generally like expanding flash banners, but my motive is simply to provide additional details for the sponsors of my forum[url]...

As you can see, in the upper right hand corner, I have a very simple rotating flash banner that shows the local companies that keep it going. I'd like to provide an additional service for people that are interested in using them, where each sponsor gets a drop-down menu that has a map, address, directions and contact information IF the user clicks on it, and wants to see the information for that sponsor.

Now I know enough about flash on how to create the actual banner itself, but for the life of me, I simply cannot make it extend over the rest of the page. It always ends up displaying the entire .swf file, no mater whether I make half of it transparent or not.

I've tried using several banners, including the Double-Click Ad Kit and some other expample flashes, but for the life of me, and through very extensive googl searching I can't find any clear cut instructions on how to make it extend OVER the rest of the body. I've found some pages that sorta mention how to do it, but I really have had no luck in duplicating it.

View 2 Replies

ActionScript 3.0 :: Make A Preloader For A Banner

Feb 22, 2009

I made this banner but because of the file size I need to make a preloader for it. [URL]

View 4 Replies

Flash8 :: Make 4 Frame Looping Banner Ad Under 40k?

May 4, 2010

I have to make a banner ad for my company's website that is 4 frames. It needs to play each frame about 3-4 seconds and then loop after 4th frame and continuously do so. It needs to begin this process when the web page is brought up without the user doing anything to it (so no clicking)And I have to keep it under 40k.I've found alot of tutorials for using external swf files and images but everything seems to use a button and I can't seem to get the coding down at all.

View 3 Replies

How To Make Flash Banner With Transition Effects

Aug 6, 2010

I just need to know how to make a flash banner almost exactly like the one in the link. I would make it my own of coarse, but I need my banner to be the same size and same effect when the pictures change. I need to know how to make the photo's change from one to another, and how to make the transition effect as the photo's are changing. Here's the link to the banner I need to know how to make. [URL].

View 2 Replies

Make A Flash Display Banner For Ad Campaign

Jan 12, 2011

I am a full time web designer for a company that specialises in building online booking websites for the travel industry.I am an expert when it comes to Photoshop, but Flash is still quite new to me, I know the basics on how to make a flash display banner for an ad campaign but that's about as far as it goes.Basically I am creating an ad banner for a client, I have decided to use vector graphics for button/lozenges instead of PNGs to save on file size. However, when I create the buttons/lozenges on the stage the text seems perfectly aligned within. However, when I publish the SWF it seems to misalign. Look at the screenshot below for an example of what I mean.

View 2 Replies

Make A Flash Banner Very Similar To The One Shown?

May 3, 2009

I'm looking to make a flash banner very similar to the one shown on here [url]..I'm really stuck on what techniques i need to use.

View 5 Replies

How To Make Trendy Flash News Banner

Oct 4, 2009

Similar to this: [URL]. Where all the latest news are rolling automatically. Is there some special name for that?

View 3 Replies

ActionScript 1/2 :: Make Airplane With Moving Banner Behind It?

Apr 15, 2010

How I make a airplane with with a moving banner behind it?

View 3 Replies

Make A Flash Banner Swf Play Once For Visitor?

Nov 29, 2010

I am new to CS5 and i'm wondering how to make a flash banner play only once for the visitor. My home page has a search engine and every time the search the result will display with the banner playing again. this is the same for navigating through pages. I want the banner to stay on the last frame. its not looping, its just replaying everytime i navigate.

View 1 Replies

Professional :: Make A Portion Of My Banner Stop?

Aug 2, 2011

I am currently making a banner ad. Within this there is a note about an event that happens at a certain date.Is it possible to make this note play until that date, and then stop playing while the rest goes on?

View 3 Replies

ActionScript 3.0 :: Trying To Make Fade In / Out Flash Banner

May 4, 2010

I have found a code on the net for a Flashbanner that scrolls the infoholder (info) horizontal. De info contains data parsed from xml. Now I want to replace the scrolling effect with a fade-in/out. I know there's a way to make a fade-in/out effect with two mc_containers. I tried that but with no result. Then I tried to make a Array where the info is pushed in.

ActionScript Code:
var holderArray:Array = [];
ActionScript Code:
info.name="info"+i;
addChild(info)
holderArray.push(info.name);

Then I tried to transform the holderArray.
ActionScript Code:
function tweenSwitch(i:Number):void {
MovieClip(getChildByName("holderArray"+i))
setChildIndex(holderArray[i], 0);
trace(holderArray[i]);
}

But when I test this I get this error:TypeError: Error #1034: I don't understand this error so I am stuck right now and don't know what to do next.

View 9 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved