Flash cs3 newbie help - setting up a clicktag

I am just about to pull my hair out - please help as I don't have that much hair to pull out.
I created a flash file in Flash CS3 and was told I need to add a click tag for an agency who want to keep track of the click throughs for the ad.
I have created the invisible button layer and set up the 'hit' and tried and tried and tried to select the button and add some action script to it.
(which I have seen three different codes to use)
Each time I export it or publish it I get the error message: mouse events are permitted only for button insances on release. I have read and understand I need to assign the code to the button and not the frame but for the life of me, I cannot figure out how to do that.
I select the button (which I have converted to a 'button') and F9 or left click to get the Actions panel and once I am there and try to use the '+' to add code, it automatically shows 'Current Select/Frame 1 in the left side of the Actions panel. I get that it is adding the code to the frame but how do I get it to add the code to the button???
So my question is 1) how do I add the code to the button and not the frame and 2) what code should I use?
Any and all help is GREATLY appreaciated!
oops...forgot to add I am using AS2. Thanks!

Kglad - thanks so much for all your help.
I spoke to a friend who corrected what I was doing.
Here's an explanation for those who may find the thread...
Click on the invisible button you created and press F9 (opens Actions)
(Ensure it says 'Actions: button' at top)
Put this code in:
on(release)
var clickTAG="http://www.yourwebsite.com";
if (clickTAG.substr(0,5)=="http:")
getURL(clickTAG, "_blank");
Seems it's always a simple answer for a baffling question.
Thanks again.

Similar Messages

  • Color management issues with Flash CS3, please help?

    Hello everyone.
    I am having issues with color from a Jpeg image produced in Photoshop CS4
    after importing onto the stage in Flash CS3. The color in Flash changes the image to a lighter less saturated state. Yuk.
    Here is a link to a screen capture to show you what's happening (for a bigger view):
    http://www.rudytorres.com/color/weirdcolor.png
    As you can see the front image is the Photoshop image showing the sRGB color profile embedded but Flash (behind) changes that color.
    This client is quite picky and she will notice this difference.
    If any one can help, please.
    - Rudy
    P.S. It's a button somewhere, Right?

    Dougfly,
    Only an hour wasted? Lucky you. Color is an incredibly complex subject. First, forget matching anything to the small LCD on the back of your camera. That's there as a basic guide and is affected by the internal jpg algorithm of your camera.
    2nd, you're not really takeing a color photo with your digital camera, but three separate B&W images in a mosaic pattern, exposed thru separate red, green and blue filters. Actual color doesn't happen until that matrix is demosaiced in either your raw converter, or the in-camera processor (which relies heavily on camera settings, saturation, contrast, mode, etc.)
    Having said the above, you can still get very good, predictable results in your workflow. I have a few color management articles on my website that you might find very helpful. Check out the Introduction to Color Management and Monitor and Printer Profiling. In my opinion, a monitor calibration device is the minimum entry fee if you want decent color.
    http://www.dinagraphics.com/color_management.php
    Lou

  • Flash CS3 Component Help?

    I have a menu component I've created in Flash CS3. I'm
    running into a small problem. Currently, in Flash, I create an
    array in the first frame of the movie and then assign a
    "menu_items" property (an array) on my menu object as that array.
    The array is an array of specialized menu item objects that is
    defined in a separate class. In Flex, I would like to do this:
    <mxml:macMenu>
    <mxml:macMenuItem image="btn1.png" click="{clickHandler}"
    />
    <mxml:macMenuItem image="btn2.png" click="{clickHandler}"
    />
    .....etc
    </mxml:macMenu>
    I'm not quite sure how I can get my object to realize the
    children should be part of the array inside of macMenu called
    "menu_item" and at the same time make sure they are an instance of
    my menu item class.
    I have posted the full AS3/Flash CS3 source of my menu at
    http://www.adambergman.com/as3/macMenu.html
    Any help or ideas are appreciated!!!

    Hi Rajesh,
    I've seen your query all over the internet, so I should warn you I don't believe it's possible to disable a List Item.
    For that you should use Josh Tynjala's open source Advanced List (http://code.google.com/p/flextoolbox/downloads/list).
    Best Regards,
    Filipe.

  • CoolType.dll error when starting Flash CS3, please help!

    Hello,
    I recently downloaded Flash CS3 Trial from Adobe, a huge
    download, after download i tried to install, a really huge
    installation!
    After the installation is complete finally, i started the
    Flash CS3 and it gives me this error:
    Faulting application flash.exe, version 9.0.0.494, faulting
    module cooltype.dll, version 5.4.15.1, fault address 0x000a2a98.
    Then i replaced the file from an older version of
    CoolType(i.e. 5.1.39.1) by replacing it from other Adobe
    installations, then it gives a new error message:
    Faulting application flash.exe, version 9.0.0.494, faulting
    module adobepdfl.dll, version 8.1.0.546, fault address 0x001b60cd.
    I am using Windows XP
    Can anybody help me with this?
    I don't what to do, if there is anything wrong with my fonts,
    should i remove all fonts and check?
    Or do i have to install any Microsoft Windows Patch for this?
    Or any other way?
    I really need to explore CS3!
    Please advice,
    Thanks,
    Aamir

    Not sure if you found a solution to this but I was having
    this similar problem and just found a post on the
    google
    forums that said it was a font that was installed. It doesn't
    look like it's cooltype so it must be a font that's
    installed.

  • Flash CS3 Button HELP

    Ok, so i'm very new to Flash.
    I have a web page & it has 9 buttons. I want the user to
    be able to click on anyone of these buttons & be taken to that
    page.
    I don't know how to do this in CS3?
    I have each button set up on it's own layer & set as a
    symbol. That is it, now what?
    If anyone can give me step-by-step instructions that would be
    great!
    I need this for a class project for tomorrow & I have
    spent a week trying to make it work but nothing!
    I'm very frustrated & confussed!
    Please, help if you can.
    thanks!!

    If you're doing this .fla in AS2.0 there are at least two
    popular ways of doing this. (I'm not sure of the AS3.0 syntax.)
    1) Click on a button, open the Actions panel and have
    ScriptAssist open. In the toolbox on the left you should see a list
    of functions, with headings Global Functions / Movie Clip Control.
    See the word 'on'? The basic functions you want begin with
    'on'...so click it, and you'll get a choice of onPress, onRelease,
    etc. Pick what you want the button to do and you're done. You
    should end up with code that looks something like this
    on (release) {
    gotoAndStop("Scene5", 16);
    (My above example would take you to frame 16 in Scene 5. If
    you have just one scene, leave out the Scene name.)
    You have to do this to each button, individually.
    2) If you'd rather stick all the code in one place, do it
    this way instead. First make sure each button has an instance name.
    In other words, select each button and in the Properties panel give
    it a name like: startButton_btn, stopButton_btn, etc. Open a new
    layer, call it Actions. Click on the first frame, open the Actions
    panel, and enter code like this for each button instance name you
    have:
    startButton_btn.onRelease = function() {
    play();
    If you have nine buttons, you should have nine functions set
    up like the above. Now save and test. If it doesn't work at first,
    you probably just typed something wrong.

  • Text doesn't show, scroll bar does? using Flash CS3 Please help!

    A little background:  I made text box, typed some text, converted it to a movie clip, named etc.  Used a purchased and proven scroller component ... followed directions to the letter, including referencing/linking the files. However, when I tried to test the scroll bar .... the scroll bar appears, scrolls and works perfectly except the text does not appear.  I have tried making a scroll bar with the UIscrollbar same thing happens. I made an other attempt and put pics along with the text in the movie clip ... this time the pics appeared and scrolled, but the text still would not appear.  PLEASE HELP. I am on a deadline and can't get past this scroll bar issue. THANK YOU!

    Hi
    Thanks for the tip. I did embed the text, but still not showing. Currently, I have the text  box set to the following: Dynamic Text, Multiline, Border Around text, Anti-Alias for Animation (but I have tried all choices and embed the text each time).
    Here are the original instructions with the FTscrollbar which I followed exactly.
    1. Drag the component (FTscrollbar) from the components panel to the stage.
    2. Create a new movie clip to be scrolled:
         a. create a textfield on the scene and type in a few lines of text
         b. select the text fields and covert them to a move clip symbol having the registration point top left. (I did top right since my scroll bar is on the right).
         c. give the new movie clip an name in properties panel.
    3.Select the component of the stage and configure its parameters in the parameters panel or component inspector panel.
         a. Instruc the component to scroll the new created movie clip as the targetMovieClip
         b. Set the viewAreaHeight and viewAreaWidth
         c. set snapMode to snapToView value
         d. leave rest of parameters unchanged unless you want to adjust.
    4. Test Movie (contol/test movie)
    On the FTscrollbar, I have the targetMovieClip set to the movieclips name the only other parameters the instructions said to change were veiwAreaHeight=100 veiwAreaWidth=150 which were the defaults.  When I change this numbers the scroll bar goes away and the text still doesn't appear?  The scroll bar is 16 x 140, the text box to be scrolled is 130 x 143 and the entire flash page is 500 x 550. I am not sure what the viewAreaHeight and viewAreaWidth are for ... or if that could be the problem?  I have never had problems with scrollers but I used MX. I just recently purchased the CS3 and I am not sure what I am not selecting or not selecting but if feel it's probably something simple I am overlooking.  So any more ideas are MOST APPRECIATED. If you need more info from me to help solve, please feel free to ask. THANKS!

  • Weird flash cs3 bug help!

    Hi ANybody help me on this?
    All of a sudden I lost a file I had been working onlast
    night, it was still there but when i opened it it was last saved
    some 12 hours before my final save of the day. Thought that was it
    and then i found something else, when flash is not open, I click on
    a file to launch the software and it causes the finder to crash /
    relaunch! But if i open the software and then open it its OK and
    works.. another weird thing is when i look at the icon of the flash
    .fla in the finder it appears as a small volume slider like a .mp3!
    now that really is scary! I tried to reinstall and no changes
    there, all i can expect to try next is a complete system reinstall?
    any ideas.
    thanks JAY

    As long as I'm understanding the issue correctly, this is a long standing "Flashism" (not saying it's right or desirable, but something that has required a workaround for a very long time). See if you can use nesting to get around the issue (the animation will restart when keyframes are encountered), I'll send this issue in for review. It's possible it has something to do with Player, although I can't find any concrete information on this to know for sure.

  • Need help with Different approaches to setting variables in a Flash movie in Adobe Flash CS3 Professional Version

    Hi,
    I'm using Adobe Flash CS3 Professional version of Flash
    software,
    I need help and guidance on
    Different approaches to setting variables in a Flash movie,
    what I should do in the fla file, and in the html file.
    Thanks, Gil

    Hi petro_jemes,
    Just a little claritification, you need to add the value to the variable "[string]$ou", and also change the language in the variable "$emailbody" in the function "Get-ADUserPasswordExpirationDate".
    I hope this helps.

  • Problem Installing Flash CS3 Pro PLEASE HELP!!

    I have downloaded the installer for about the 3rd time i
    extract it all right but when i run the setup.exe its all fine
    until it starts to install but then it says something like " insert
    Adobe Flash CS3 Professional to continue" i keep trying but it
    never works i even converted the folder to a .iso and mounted it
    with the same name it told me but that still doesn't work. I have
    run out of ideas please if anyone knows the problem please can you
    help me out?

    FYI: "Br" is the Bridge application - try launching that to
    see if it fully installed.
    Chris Georgenes
    Adobe Community Expert
    mudbubble.com
    keyframer.com
    http://tinyurl.com/2urlka
    Ms. Clause wrote:
    > My computer is a brand new Vaio laptop loaded and 4 GB
    RAM. I don't think I
    > have a hardware problem. I tried to reinstall,
    redownload and it still will
    > not install the flash software. After I download I
    clicked on the file and it
    > install a folder in my drive, then I clicked on set up,
    it went through a
    > normal set up but for some reason it doesn't load Flash
    CS3, it only load 2
    > components from that I think it Br and something else.
    >

  • PLEASE HELP ASAP! Button in Flash CS3 not working

    I need help desperately. As soon as possible. I only know the
    VERY basic's of flash, so I need it to be simple!! I am using Flash
    CS3, but the only coding I know is from Flash 8.
    1.I simply want to just be able to type out text that will be
    my button. (I clearly know how to do this)
    2.Convert that text to a button. (I know how to do this as
    well)
    3. Apply an action to the button. (I keep getting the error
    "actions cannot be applied to the current selection")
    4. Have that button go to a specific place in the timeline
    that I have named (It has the red flag next so I know where to send
    the button to)
    5. This is the ONLY code I know is even close to what I need
    to have it be at:
    on (release) {
    //Movieclip GotoAndStop Behavior
    this.gotoAndStop("graphic");
    //End Behavior
    Is there a way to upload the flash files? If so I will
    upload, because I know this sounds simple enough, but it wont work.
    Thanks
    Ashlee

    You are trying to use AS1 in your movie, and the movie's
    Publish settings are set to use AS3. You can use your current code
    by opening the Publish Settings, going to the Flash tab and then
    selecting AS1-AS2 in the Actionscript option.
    A better, long term solution, would be to read through the
    tutorials that come with Flash CS3 to learn the proper coding
    techniques to use with AS3.

  • Help Exporting Flash CS3

    Hi guys, I'm new in the forum and I don't know if what I need
    has already been published.
    I'm using Flash CS3, I'm learning how create text effects and
    animations. My problem is that when I export movie and save this as
    .SWF, it save it succesfully but my parters can't see the movie
    even having Flash Player. If they open it with Internet Explorer
    they can see the movie.
    There's a way they can see the flash movie without set up
    Internet Explorer to open it?
    Thanks.

    >I followed directions located in Adobe Captivate 3's help
    menu about
    >exporting
    > to Flash CS3. I have tried both exporting from Captivate
    and Importing
    > from
    > Flash to move my captivate project into flash. About 5
    times, an error
    > saying
    > "Unknown error" had occurred popped up. I closed Flash
    and Captivate a
    > couple
    > times and then it worked. Several new errors popped up
    during the
    > "successful" import---worse yet, the captivate project
    imported terribly!
    > Pieces of the demonstration were all over the stage.
    >
    > Long story short, something is wrong. Is this a Vista
    thing? Does anyone
    > know about any of this?
    >
    Doesn't seem to be specific to Vista.
    I've had similar issues trying to export to Flash. But
    sometimes it seems to
    work beautifully (although always with an error message about
    "unable to
    find Flash.exe" or similar), aside from in issue with the
    backgrounds all
    importing to Flash at the wrong size. This is easily worked
    around, and has
    been discussed here a number of times.
    My first suggestion to you is to try rebooting your machine
    before trying to
    export again.
    Steve
    http://twitter.com/Stevehoward999
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Flash CS3 Help (Shape With Bitmap in Runtime)

    HI,
    I am A Beginner in Adobe Flash CS3
    Now, i make a fla (Flash Document) file.
    say, there is a bitmap (image) in the asset/Library (imported).
    I create a shape with that image. (fill type as bitmap).
    Now. what i want, i want to change that shape bitmap in run time using external image file (jpeg) file. I can load and change images of movie clip. But i don't want that. I want to change the bitmap of a shape (graphic symbol) by loading an external file (image file ex.jpeg)  and also want to keep aspect ratio. (say my shape size is 800X600 px and i want to load 1486x1020px image in that shape. So, it will keep aspect ratio and resize to 800x600.
    could anybody help me out..
    ****Pleaese At least give me a suggestton or Feedback****
    please check this File, May be it will help you guys about my requirement.
    Don't Panic File Size is Only (410 KB) And No Password Or Any Kind of Virus) As the file extension is (.fla And .jpg)
    (http://rapidshare.com/files/316519572/Flash_CS3_1.rar)
    First watch test.jpg file
    i heighlight some point :
    1. The Graphic Symbol (Shape 2)
    2. Shape 2 Fill Type (Bitmap)
    3. The Image In Assest Library
    4. The Shape 2 (with fill type as bitmap)
    Now, The point is what i want. If you already watch the movie (Test.fla). Then, say i have a picture (D:\Pics\Load.jpg). i want to load that jpeg file on runtime in shape 2 (as bitmap fill type) and also keep aspect ratio.  I don't want to add the image to my library (asset).
    Ok, could anyone help me out ....
    Thanks in Advance...

    Not entirely sure what you're looking for, but you use a Loader to load images at runtime. You can size them as you like by setting the width and height.

  • Flash CS3 mouseover effect..HELP

    Hi all, Im new to Flash and was hoping someone could spare a
    few mins to help me out.
    I'd like to create a short flash animation and then bring it
    into dreamweaver. When the webpage loads I'd like the flash
    animation to be paused on frame 1 of the movie, then when the user
    rolls over the flash movie, it will start to play and when the user
    rolls off of the movie, it will revert to the first frame again.
    Does this make sense to anyone? is it possible? If someone could
    let me know a step by step guide that'll be greeeaaatttttt! Im
    using Flash CS3 on a mac. Thanks v much

    mAc Vs WiNdOwS wrote:
    > I haven't done flash in a long time and i'm not sure how
    to search for this
    > answer because I don't know the right keywords. I need
    to create an effect for
    > my text that makes a little light go across it. Such as
    in video games and
    > banners that you see. A little light goes across from
    left to right on the
    > text.
    >
    > How can I create this for my text or image? I would like
    it on images too.
    > Please explain in steps. Thank You.
    >
    This is normally done using Gradient and mask. You will need
    3 layers for it.
    First top layer will be the mask. Type the text you want to
    use and when you happy
    with the size and all, copy it, CTRL C.
    Second layer keep blank for now.
    Go to 3rd, bottom layer, paste the text using paste in place
    CTRL ALT V, so it's
    erectly position in a place where the mask text is.
    Pretty much it when comes to text, the last part is to make
    the shine effect.
    Go to the second layer, draw some gradient. Make the gradient
    out of 3 colors, so
    the colors in the COLOR pallet appear as gray on the left,
    gray in the middle and
    gray on the right. Set the left and the right to Alpha 0%
    while keep the middle
    fully 100% gray. We want the edges of that gradient soft to
    simulate the light.
    Convert that gradient to movie clip or graphic and motion
    tween it from one side
    to another.
    And this is what you end up with:
    http://flashfugitive.com/stuff/shine.swf
    You need to play around with the gradient to find one that
    suits your needs.
    When comes to image, you simply draw shapes on the mask layer
    through which you
    want the shine /gradient to show up.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Adobe Flash CS3 help needed

    I need help very badly....
    Here is the reader's digest version.....
    I purchased a flash website template for my local band to try
    to elimate the pain of creating one from scratch. I never used
    Adobe Flash CS3 before, but figured I could figure out enough
    (through reading & forums) to change what I needed to
    personalize my site. Well, I have spent countless hours learning,
    and changing, and have come up with a pretty sweet website using
    this template. I now have only 2 problems left that I can not
    figure out no matter what I try.
    One of my pages is set up so that fans can listen to and/or
    save any of 3 songs that I have recorded in MP3 format. I have
    basically 3 columns set up: the 1st column has the song name, the
    2nd has speaker icons, and the 3rd column has floppy disk icons. I
    want to be able to click the speaker graphic, and play the MP3
    song, or click the floppy disk graphic and enable any fan to save
    the file. I figure there has to be a fairly simple way to do this,
    but I sure can't figure it out, and I'm starting to pull my hair
    out. Please help....
    Remember, I have just basic Adobe CS3 skills so a description
    of what to do has to be fairly easy to understand....
    Thanks in advance!!!
    CyberFly

    Please help.......

  • Help!! Flash CS3 and CS4 "Test Movie" very slow on OS X

    This is a problem that, having read many forums, affects a
    very large amount of people, though Adobe doesn't care at all. It
    only affects OS X users. I know that it has been addressed many
    times in different forums, but I never actually stumbled across
    anyone having found a solution.
    When I use Flash CS3, and I make any animation, even the
    simplest tween, and I preview it with Test Movie, the result I get
    is an extremely slow playback. Something like half the FPS it
    should be.
    However, when I export the SWF and preview it in the external
    Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the
    Help panel, the problem with Test Movie only happens like 20% of
    the time. In that case, it only gets solved if I restart or Log Out
    at least. I have no idea why the Help panel being open solves the
    problem, this only shows that this is probably a little graphic
    user interface bug, or something similar, that could be solved very
    very easily.
    In Flash CS4, there is no Help panel, so there is no solution
    to the problem.
    It would be nice to be able to press Cmd + Enter to see the
    movie, and not have to do File > Export > bla bla bla, open
    Finder, Find the SWF, double click it, wait for the browser to
    open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs
    faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the
    solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix
    this in CS4...
    So basically if something doesn't work, Adobe's solution is
    "Don't use it."
    I guess they're right!
    Please, tell me if anyone has or does not have this problem
    or knows anything about it!
    Thanks,
    Mate

    This is a problem that, having read many forums, affects a
    very large amount of people, though Adobe doesn't care at all. It
    only affects OS X users. I know that it has been addressed many
    times in different forums, but I never actually stumbled across
    anyone having found a solution.
    When I use Flash CS3, and I make any animation, even the
    simplest tween, and I preview it with Test Movie, the result I get
    is an extremely slow playback. Something like half the FPS it
    should be.
    However, when I export the SWF and preview it in the external
    Flash Player or in a browser, it's just fine and fast.
    Another interesting thing is that in CS3, when I open the
    Help panel, the problem with Test Movie only happens like 20% of
    the time. In that case, it only gets solved if I restart or Log Out
    at least. I have no idea why the Help panel being open solves the
    problem, this only shows that this is probably a little graphic
    user interface bug, or something similar, that could be solved very
    very easily.
    In Flash CS4, there is no Help panel, so there is no solution
    to the problem.
    It would be nice to be able to press Cmd + Enter to see the
    movie, and not have to do File > Export > bla bla bla, open
    Finder, Find the SWF, double click it, wait for the browser to
    open... etc...
    I have a brand new 2.5 GHz MacBook Pro, and Test Movie runs
    faster on my 900MHz Pentium III PC!! Funny...
    Here are some links I found about this problem:
    http://bugs.adobe.com/jira/browse/FP-878
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407896
    http://www.kirupa.com/forum/archive/index.php/t-258991.html
    This is quite ridiculous, and on Adobe's Support page, the
    solution is "Do not use Test Movie."
    And the funny thing is that they didn't even bother to fix
    this in CS4...
    So basically if something doesn't work, Adobe's solution is
    "Don't use it."
    I guess they're right!
    Please, tell me if anyone has or does not have this problem
    or knows anything about it!
    Thanks,
    Mate

Maybe you are looking for