help with flash as2 hyperlink button

Hi, this should be very easy to do, but I can't do with my current file. I can link the as1 or as3, but for some reason, this as2 won't let me link. Help, please! It's too complicated to explain in the text the problem here then please download my flash file and see what I'm trying to do. don't worry, no viruses!

It is created on a mac and compressed. view my file flash here: http://www.nafline.com/prototype/dev/header_white3.fla.zip [about 13 MB, sorry, don't know why it is so great, even though I deleted unnecessary things everything]

in my file, you will see there are 2 buttons, 1 has a link using (liberation). I want to be able to connect. If you try to test the swf movie, the link does not work. I tried on (click) and mouseEvent and no work. =((

Thanks for the help!

Thank you so much Ned. I didn't add the link and the identifier causes the ACE does not have to work. stupid of me.

I thought that the linkage identifier / were required in order to call the ACE but I guess that is not. I removed the button property and added the ACE in the layer actions on the mainMovie and it works great! It is online at nafline.com.

Thanks Ned!

Tags: Adobe Animate

Similar Questions

  • Need help with Flash - really basic!

    Hi, I really need help with Flash and quick. I have to create an auto-run cd, but before I can create that, I have to make everything works! I took a class in College Flash, which up to 1 1/2 ago so im kind of knowledge missing!

    My first problem is as follows:
    I have the homepage, and it contains a button English and french.
    When you click on buttons, it brings you to the next page, either resourcesFr or resourcesEn.
    I tried to use the loadMovie script but and it works but the new page loads on the home page you can still see the English/french under buttons. How can I fix? I know its simple but I am short on time... Should I still use the loadMovie script?

    My other problem is that im trying to have another button to link to a folder. Use the script for getURL for this as well?

    Help!

    I was able to solve my problem... it was only the forward slash that were in the wrong way... so the correct code is:

    on (release) {}
    DRV = _url.substr (8.1);
    getURL (drv + ": / English/brochures");
    }

    Only took me 5 days... I think I need to buy a script book action! Laughing out loud

  • Check the values of variables in Captivate with Flash AS2 animation

    I created a couple of simple buttons Pause/Resume Flash AS2 to manipulate playback from Captivate using the following script:

    on (release) {}
    _parent._parent.rdcmndResume = 1;
    }

    on (release) {}
    _parent._parent.rdcmndPause = 1;
    }

    The buttons work as expected if their ' display for: "values are set to"Rest of project"."  The buttons seem to have no effect on the reading of Captivate so "show:" is set to anything else.

    The problem is that I was hoping to only display buttons when I want the user to suspend or resume the chronology of Captivate.  However, for some reason that I don't understand, they do not work when their ' display for: "value"point in time ".

    No idea why the buttons to behave the way they do or ideas on how to make them do what I wish they would do?

    Hi Luc Pra.

    When ' show:' is selected as the rest of the project / duration of the animation, swf loader will be placed on the chronology of the Captivate SWF.

    When ' show:' is selected as the precise moment / slide rest, swf loader will be placed inside the slide (slide is placed on the Captivate swf timeline).

    So try it when ' show:' is specific time / rest of slide:

    on (release) {}
    _parent._parent._parent.rdcmndResume = 1;
    }

    on (release) {}
    _parent._parent._parent.rdcmndPause = 1;

    }

    I hope this helps.

    Delighted Kishore.

  • Basic Help with Flash v10 (creating a simple calculator)

    I have Adobe CS4 Pro with Flash v10.  I am trying to create a minimal and simple calculator that adds 2 numbers.  I followed the tutorial at http://layersmagazine.com/flash-design-calculator.html.  Initially, I was unable to name the variables to all objects, but got this cleared up by selecting ActionScript 2.0 (was set to 3.0).  At this point, the calculator accepts two numbers, but when I select the button 'Add' the associated code, as shown in the tutorial, nothing happens.  Does anyone have a suggestion as to what I might hurt?  Thank you.

    Remove all the variables in the textfield of the properties panel.  If you have also done the same for the total textfield instance name there, use:

    {We (Release)}

    total.set_Text = Number (firstnumber.text) + Number (secondnumber.text);

    }

  • need help with flash player

    I have upgraded to windows 10 and you do not have adobe flash on my computer. I tried to download it, but I get a message that says that adobe flash player is built into windows 10 and does not need to be downloaded. How can I fix it?

    @ !

    Hi Donna,.

    Please see the link below, it should help:

    Flash Player issues. Windows 10 | Microsoft edge

    Let us know if that helps.

    Kind regards

    Bani

  • Need help with AS3 on Radio button Quiz

    I am trying to set up a quiz question multiple choice of radio button, but I have problems with some of the ACE and hoped that some of you could help me. I'm fairly new to ActionScript, but I'm trying to pick up quickly. The code is listed below. The lines of errors have been increased in size.

    Import fl.controls.RadioButtonGroup;


    var radioGroup1:RadioButtonGroup = new RadioButtonGroup ("QuestionC1");

    var totalScore:int = 0;

    var totalCorrect:int = 0;

    var totalWrong:int = 0;


    cpr1a.label = "" Complete a resuscitation ";"

    cpr1b.label = "" cardio a resuscitation ";"

    cpr1c.label = "" cardio a Revival ";"

    cpr1d.label = "" Complete a Revival ";"


    cpr1a. Group = radioGroup1;

    cpr1b. Group = radioGroup1;

    cpr1c. Group = radioGroup1;

    cpr1d. Group = radioGroup1;


    submit_btn.addEventListener (MouseEvent.CLICK, submitClick);


    function submitClick (MouseEvent): void {}

    If (radioGroup1.selection == null) { }

    return;

    }

    If (radioGroup1.selection.label == "Cardio a resuscitation") { }

    status_txt.text is radioGroup1.selection.label + "is correct!";

    totalCorrect ++;

    score_txt.text = "Correct number:" + String (totalCorrect) + "\n"; "."

    score_txt.appendText ("wrong number:" + String (totalWrong));

    }else{

    status_txt.text is radioGroup1.selection.label + "is incorrect. I'm sorry. » ;

    totalWrong ++;

    score_txt.text = "Correct number:" + String (totalCorrect) + "\n"; "."

    score_txt.appendText ("wrong number:" + String (totalWrong));

    }

    }

    I don't see where this error could occur except perhaps for a case where a radio AS2 is used because it seems that they do not have a group property, but an AS3 radio button.  Make sure that your publication of Flash settings are set to use AS3.  AS3 errors normally have error numbers that also made the mistake that you mentioned ring of a scenario of AS2.

    Here is a link to the file that I made based on your code that works very well and does not display the errors you mention.  It is a CS3 file.

    http://www.nedwebs.com/Flash/AS3_Radios.fla

  • Need help with Flash Builder

    I use a flash 4.5 adobe generator,

    Recently, I created a login page in flashbuilder... On my page, there is a button link [say registry]

    I created a form of Regisistration.

    Now how to bind this registration form with a link button [register] to my login page...

    Can someone help me!

    Hello

    The following link will help you. Please go through it.

    http://help.Adobe.com/en_US/Flex/using/WS2db454920e96a9e51e63e3d11c0bf63611-7ff2.html

    Thank you and best regards,

    ------------------------------------------------------------------------------------------ --

    Vibhuti Gosavi . [email protected] | www.infocepts.com

    ------------------------------------------------------------------------------------------ --

  • Help with layer of Action & buttons

    I have a flash banner which contains "clickTAG" instructions in the actions layer (above). Also on this layer, I put the invisible button that the user clicks on to invoke the "clickTAG". My question is, can I have a button on the layer actions? Should be on a separate layer? The button will work if it is?

    Thanks in advance,

    Beginner in Flash

    you assign your button a unique instance in the properties panel name, for example btn1.   in your code, you reference btn1:

    AS2:

    {btn1.onRelease = Function ()}

    No matter what

    }

    AS3:

    Btn1.addEventListener (MouseEvent.Click, f);

    function f(e:MouseEvent):void {}

    No matter what

    }

    Is the name of the instance (in this example btn1) which allows flash to tie one on stage clash with the code.  It's not ' matter which layer is the button in and it doesn't matter which layer the code is in.

  • Need some help with FLASH

    Hello world

    I'm a very new to using flash 8 and I need som help.

    I know what it mifgt be a simple for some of you, but for me it's a chlange...

    I need to create a page with 6 buttons

    I can create a button without a problem and I can scrupt uncertain and it will open url

    However, if I have 4-5 buttons every thing work towards the top, down etc but the script does not work then link do not OUP page...

    I'm sure it's a simple soluton to this question

    Help, please

    I would like to join .fla file to show what I was doing, but it seems that it's not possible...

    Anyway please help if you can

    Sincerely

    L.

    Your instance names must match those that you use in the code.  The name of the instance provides the means for code assignment and control objects.  If you have btn1 as instance name, the code for this button should use this name...

    Btn1.onRelease = function() {}
    getURL ("http://www.google.com");
    }

    Think of it in terms of talking to the touch... you gave this button name "btn1", so your code needs to say "Hey, btn1, this.

    In addition, in order to keep things clean for yourself, you must create a layer for actionscript, where you take all the code you are currently distributed through the layers of each button and move to that layer.  I often create some to separate the different types of actionscript, variables, functions, actions, but you can do what suits you best.  But having it on separate layers makes it easier to find and manage.

  • Help with basic tutorial - creation button

    Following the basic tutorial in Director 11 (pages 9-10) to create a new button, the tool button does not react as described in steps 4 and 5. The button tool creates a 'flash' and does not have the 'type' available button. If all right, I'm missing something basic, but it does not resemble the key "" which was included in the cast member tutorial. Not sure if there is a problem with the button tool or something that prevents me from creating a similar button with the given distribution. Thanks for any help.

    Hi Rick,

    I suggest you select "classic" on the toolbar and try again. Flash components are a PITA. Do not use until you really know how to use ;-)

    HTH,

    Udo

  • Help with Flash 8 SharedObject

    I am brand new to programming in flash and have encountered a problem. Oddly enough, I got this script working properly and decided to add a dynamic text and broke somehow. Since I completely Redid the SWF from end to end but still can not put the sharedobject to hold/retrieve the information properly.

    What I'm trying to do, is have a mute on my movie button when you press writes data to the shared object and then when the web visitor changes pages, the SWF with sound. The Swf file is in my head and loads with all pages, I also want to make sure the SWF goes to end framework after the initial play, so he plays any whenever someone clicks on a new page in my web site.

    Here is the current page, I'm working on that
    http://www.plakainc.com/Joomla/CMS

    Here is my code that I currently use:
    First layer is ACTION:
    var Cookie: SharedObject = SharedObject.getLocal ("CliftonData", "/");
    If (Cookie.data.user == undefined) {}
    Cookie.Data.User = new Boolean();
    Cookie.Data.User = false ();
    }
    If (Cookie.data.user = true ()) {}
    CSM.setVolume (0);
    Cookie.Flush ();
    } ElseIf (Cookie.data.user = false ()) {}
    CSM.setVolume (85);
    CSM.start ();
    Cookie.Flush ();
    }
    Cookie.Flush ();

    2nd layer is SOUND: (benhur is an MP3 in my library with link)

    var CSM:Sound = new Sound();
    CSM.attachSound ("Benhur");
    CSM.start ();

    3rd layer is BUTTONS:
    ITS BUTTON->

    on (release) {}
    CSM.setVolume (85);
    Cookie.Data.User = false ();
    Cookie.Flush ();
    Play a sound behavior
    CSM.start ();
    End play a sound behavior
    }

    MUTE BUTTON->

    on (release) {}
    CSM.setVolume (0);
    Cookie.Data.User = true ();
    Cookie.Flush ();
    }


    The rest of the layers include text and the clip itself.

    I tried several approaches, to assign the cookie.data.user to another variable, add the sound directly to the timeline, etc. I rewrote this code about 30 times or more and still get results.
    I checked my local folder and yes the data is stored there, what exactly am I doing wrong?

    Help, please

    Kirk
    www.Plakainc.com

    Your a *' Genius!
    After more review what you have added to my code, I made a few changes and viola it now seems to work fine.
    Thank you so much, I literally spent 2 days screwing with this.

    Thank you
    Kirk

  • Need help with Flash banners with the Player Version 10.1 for Google adwords

    Hello world

    I've created a banner animated in Flash Pro CC and its going to be used for Google Adwords. But they need banners to be with version 10.1 only according to the features of Google.

    Is there anyway keep version 10.1. Will be the banner animations remain intact?

    Please help me because I'm stuck in the present and campaign to live here tomorrow.

    Thanks and greetings

    Vikas Sharma



    Download flash cs6 and use to post your ad or expand flash se publishing capabilites.  If you have a cc flash subscription, you can download and use flash cs6 time connected in your cc account.

    Here's how to develop capabilities flash cc edition: http://forums.adobe.com/message/5511080#5511080#5511080

  • Help with Flash 10.3 settings

    I have a pretty silly question.  Third-party flash cookie settings can be managed anywhere in the native version control panel 10.3.183.7?  I've never used this front panel, I've always used this one.  Now I'm told that the one I've always used is an 'old' version and I shouldn't use.  Is this true?  If so, how can I manage my third party flash cookies in this "new"version?.  I am running Windows XP with Firefox 5.0.1.


    Any help would be appreciated - thanks!

    Certainly, you can continue to use the online version you used.  It won't go away anytime soon.

    Chris

  • Help with flash game

    I recently created a game where a ton of smileys go through the screen and you have to shoot them. I tried to add add a system of notation to so every time you click and destroy a smiley face to the partition and if you miss less, but my code doesn't seem to work;  not to mention that I'm not very good at coding lol. I also want to if you miss enough faces you lose the game. How would I go to do?  Here is my code so far:

    onClipEvent (load) {}
    startDrag (this, true);
    Mouse.Hide ();
    this.swapDepths (9999);

    }
    onClipEvent (mouseDown)
    {
    Might = new Sound (this);
    playsounds.attachSound ("shot");
    PlaySounds.Start (0, 1);
    for (i = 1; i < = 5; i ++)
    {
    If (this.) HitTest(_root["face"+i]) & & _root ["face" + i] .dead == 0)
    {
    _root ["face" + i] .gotoAndPlay (2);
    _root.score += 10;
    }
    }
    }

    It was made into a superior version of CS4 and I used AS2. Please and thanks in advance, I hope to get help.

    The line of route of return I had you replace by code textfield, but both leave the code of textfield.  If the output always shows the value of score change correctly, then you did something wrong with the implementation of the TextField.

  • NEED HELP WITH FLASH GAME!

    Hi all

    I am brand new to the forums here and I need help!  I'm on a very tight schedule for a flash game project, and can't seem to understand my problem.

    In my game of people shoot 4 different moving images and get points. Simple right? Although images is a question mark that can shoot people and when they do, I need flash to stop the timer game, a new popup window, the multiple choice question appear in the window and wait for the user to respond.

    NOTE: I would also like to be able to customize the size and location of the pop-up window!  Also, the question must be random.  I have a list of questions in a word doc.

    Then, if the answer to the question properly close window award 10 points and continue the game.  If you incorrectly answer the question, saying bad and then display the results of end game.

    Right now I have it to where it opens a pop up in a web browser and askes the question there.  The question is chosen at random from a file called random.html.  But I don't want the game to work this way. I want the game to open the pop in flash.  Can anyone help?  Time is a few hours, SORRY for THE SHORT NOTICE!

    Kapelski

    Everything to do with the movieclip is possible.  You can make sure the questions are changed dynamically whenever he appears... but it is a matter of design to be.  This has nothing to do with the popups... This is a clip that you can control the visibility of and what it contains.  In the Flash file will probably be easier to manage than a popup window outside, as far as the aspect programming and scoring goes.

    Create a movieclip that has a textfield for the question, and all what he needs in the way of user interaction.  Unfortunately, I didn't take the time to give a detailed approach to design.  If you manage to create a shooting game, creating a movieclip which works as you describe should be a fairly simple task for you.

Maybe you are looking for

  • After restoring from Time Machine MacBook Pro displays all my pictures, Documents etc. as 'other '.

    I recently installed a new HD in my mid-2010, MacBook Pro that the original was defective, I then restored from a time Machine up which was recorded on an external drive. My MacBook is now going great but I noticed the problem with how my saved items

  • Screen of Windows 7 on Xbox 360 (as in the trade) sharing

    I've seen on the commercial, you can share the screen with a wireless network using windows 7 with your xbox 360. I have wireless for my xbox and my computer and both are running through the same wireless router, I listened to music from my laptop to

  • OfficeJet6700: Print only two color cartridges

    My Officejet 6700 is only an impression with 2 cartridges 3 colours.  Print cartridges Magenta and yellow, but isn't the Cyan.  I ran tests, cleaned and aligned the printer but when I print my tests I see the blocks where the results of the Cyan cart

  • Wireless driver for WANT dv6 7200

    I changed my DESIRE dv6 7200 Windows 8 for Windows 7 and now I can't receive the signal from my router. I guess I need a driver to get the wireless working. What I need, where do I understand, how do I get it and how to use it?

  • TouchSmart HP Envy 14 - laptop occasionally starts with black screen

    Hello and thank you for taking the time to look at my problem. My laptop is a HP Envy Touchsmart 14 8.1 Windows running. The product name is HP ENVY 14 Sleekbook TS and the number is E0M45UA # ABL My problem is that my computer occasionally starts wi