MovieClip button

I am a bit of a newbie here but can anyone give me some
advice on how to create the leanest movie clip check box button
Basically I have created a movie clip that has
up/over/down/checked/checkedover/checkeddown states. When the user
clicks on the button a cross appears on the button and sets a
variable to 1 depending on selection. When they click it again the
cross dissapears and the variable is 0.
Any helpers?
Cheers

you can write following code for each button or you could do
with the help of "for" loop.
your_mc.onRelease = function() {
customerFunction() // your function name
and its better to search rather than posting same threads.
:-)

Similar Messages

  • MovieClip buttons inside a MovieClip button inside another MovieClip button

    I am trying to make a Portfolio of my study abroad experience and can get something right about the movie clip buttons inside each other. I have a button to click on titled "travel" and a window shows up with more movieclip buttons to organize different locations of pictures. I can click on the button to have to slide of pictures but nothing happens. I have the "turnOffAllButtons"  coding and  also have the coding for stay clicked, but I can't get the 3rd set to show up. what am i not doing?
    I don't have any errors or output comments showing up

    I have it working now. what I did, I make a slideshow setup (gotoAndStop(1);) in a specific frame and the code I put in for the next, didnt work.
    this is was I have now, without the "turnOffAllButtons" coding:
    Main Button (actions Layer):
    stop();
    travelButton_mc.buttonMode=true;
    travelButton_mc.addEventListener(MouseEvent.ROLL_OVER, colorizetravelButton);
    function colorizetravelButton(givenEvent:MouseEvent){
      if (givenEvent.currentTarget.currentFrame != 50)
      travelButton_mc.gotoAndPlay(2);
    travelButton_mc.addEventListener(MouseEvent.ROLL_OUT, decolorizetravelButton);
    function decolorizetravelButton(givenEvent:MouseEvent){
      if (givenEvent.currentTarget.currentFrame != 50)
      travelButton_mc.gotoAndPlay(21);
    travelButton_mc.addEventListener(MouseEvent.CLICK, loadtravelLocations);
    function loadtravelLocations(givenEvent:MouseEvent){
      travelButton_mc.gotoAndStop(50);
      travelLocations_mc.gotoAndPlay(1);
    Inside the travelLocations_mc I have currently one button to show a slide of pictures, this is the second layer of buttoncode:
    stop();
    scotlandButton_mc.buttonMode=true;
    scotlandButton_mc.addEventListener(MouseEvent.ROLL_OVER, colorizescotlandButton);
    function colorizescotlandButton(givenEvent:MouseEvent){
      if (givenEvent.currentTarget.currentFrame != 50)
      scotlandButton_mc.gotoAndPlay(2);
    scotlandButton_mc.addEventListener(MouseEvent.ROLL_OUT, decolorizescotlandButton);
    function decolorizescotlandButton(givenEvent:MouseEvent){
      if (givenEvent.currentTarget.currentFrame != 50)
      scotlandButton_mc.gotoAndPlay(21);
    scotlandButton_mc.addEventListener(MouseEvent.CLICK, loadscotlandInfoPage);
    function loadscotlandInfoPage(givenEvent:MouseEvent){
      scotlandButton_mc.gotoAndStop(50);
      scotlandInfoPage_mc.gotoAndPlay(1);
    I turned the alpha up so you can see the mc that loads
    I currently have a keyframe at 60 with a code of stop(); so the travelLocations_mc will still
    does this make sense?

  • Movieclip button AS 2.0 help

    I have a movieclip button with up-over and out states
    plays fine but in the over state I need to have two more buttons
    1 button for each icon
    I need to make the hit state in one area with room for two I would guess invisible hit state only buttonds on top of the icons?
    how do I get two separate working buttons in there?
    any help?

    OK, after looking around I see what I need to do is have Nested Movieclips in a drop down menu.
    The drop down menu I made is here
    http://www.mediafire.com/?lynnkzjhkjt
    I think I may have been unclear in what I need to do but when you open the fla you see that the movieclip in the over state needs to have two separate buttons (or movieclips) acting as buttons so I can go to another frame. the mc/buttons shpuld have the hit states or target the two icons.
    I have tried everything as I did see some things for AS 3.0 but not for 2.0
    anybody?

  • Changing stage timeline from inside a movieclip button

    I create a movieclip button, and I want to change main timeline from it. what should I do ?
    Is it useful to use MovieClip(root).gotoAndPlay(...) ; ?
    Is there any other way to change main timeline?

    Example:
    Add something to trigger the event in the child:
    dispatchEvent(new Event("eventTriggered"));
    In your parent swf, listen for the event using a listener for the child with a corresponding event handler...
    childName.addEventListener("eventTriggered", eventHandler).
    function eventHandler(event:Event):void {
        trace("child dispatched an event");
         // gotoAndPlay(etc);

  • Linking a MovieClip button to a URL?

    Hello all,
    I have recently followed a Adobe Flash tutorial, which has helped me make MovieClip buttons which extend to the left when hovered over.
    This tutorial can be found here:
    http://www.schoolofflash.com/2008/05/flash-cs3-tutorial-movie-clip-buttons/
    An example and download link for the project is at the bottom of that page.
    Everything on the tutorial went fine, but now I am trying to work out how to make these MovieClip buttons link to another URL.
    What code do I need to do this, and where do I need to put it?
    Any help is appriciated, I am using Flash version CS5.5
    Thanks,
    Vanilla

    Below is the Code to load an url
    btn_mc.addEventListener(MouseEvent.CLICK,onButtonClick);
    function onButtonClick(e:MouseEvent):void{
        var request:URLRequest = new URLRequest("http://www.foundation-flash.com/");
        navigateToURL(request);

  • Converting AS3 to AS2. Some movieclip buttons not working.

    25 movieclip buttons in frame 126 maintimeline. Buttons are on top layer above all other content.
    Buttons 1_1, 2_1, 3_1, 4_1, and 5_1 work. All buttons have correct instance name. The buttons are in a 5x5 grid. Hence the naming convention of column_row. So all row 1 buttons are working. Do not get hand cursor over any of the other buttons. This is totally baffling. I am using Flash CS4. The file is saved as CS3 and the publish settings are AS2, Flash player 8.
    Here is the AS for frame 126.
    stop();
    trace("tScore = "+tScore);
    trace("i = "+i);
    if (i == 0) {
        i++;
    this.podium.signin.unloadMovie();
    videoBtn1_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_1.play();
    videoBtn2_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_1.play();
    videoBtn3_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_1.play();
    videoBtn4_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_1.play();
    videoBtn5_1.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_1.play();
    this.videoBtn1_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_2.play();
    videoBtn2_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_2.play();
    videoBtn3_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_2.play();
    videoBtn4_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_2.play();
    videoBtn5_2.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_2.play();
    videoBtn1_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_3.play();
    videoBtn2_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_3.play();
    videoBtn3_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_3.play();
    videoBtn4_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_3.play();
    videoBtn5_3.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_3.play();
    videoBtn1_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_4.play();
    videoBtn2_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_4.play();
    videoBtn3_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_4.play();
    videoBtn4_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_4.play();
    videoBtn5_4.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_4.play();
    videoBtn1_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn1_5.play();
    videoBtn2_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn2_5.play();
    videoBtn3_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn3_5.play();
    videoBtn4_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn4_5.play();
    videoBtn5_5.onRelease = function() {
        gotoAndStop(127);
        videoBtn5_5.play();

    You can probably reduce all that interaction code to a loop...
    for(i=1; i<6; i++){
       for(k=1; k<6; k++){
          this["videoBtn"+i+"_"+k].onRelease = function() {
              gotoAndStop(127);
              this.play();
    As for why movng the buttons to another layer fixed anything, it will not have mattered.  Whatever fixed the problem will remain a mystery.  It could have been an issue with instance names/frames since you are at frame 126 for some reason.  If you transition the buttons into place, that might be related to what the problem was.

  • Movieclip Button RollOver/RollOut

    I have a movieclip button name "about". In the about movieclip button when you rollover it will play a looping movieclip. When you rollout it will play another animation or movieclip.
    The problem I am trying to solve is how do I code it so that when you rollout, the movieclip of rollover stops playing and will not finish the full movieclip. As of right now the way it is when you rollout, movieclip of rollover will play to full length before it stops.
    The effect i'm trying to achieve can be seen in this template.
    h**p://www.templatemonster.com/flash-templates/7981.html
    If someone can point me to a tutorial or sample code of the effect please. Thanks

    Well, I am not a professional but like I said I posted a question similar to this and I was told to add and remove listeners like such:
    about_mc.buttonMode = true;
    about_mc.addEventListener(MouseEvent.ROLL_OVER, buttonOver);
    about_mc.addEventListener(MouseEvent.ROLL_OUT, buttonOut);
    function buttonOver(e:MouseEvent):void
        about_mc.removeEventListener(MouseEvent.ROLL_OVER, buttonOver);
        e.currentTarget.gotoAndPlay("over");
        about_mc.addEventListener(MouseEvent.ROLL_OUT , buttonOut);
    function buttonOut(e:MouseEvent):void
        about_mc.removeEventListener(MouseEvent.ROLL_OUT, buttonOut);
        e.currentTarget.gotoAndPlay("out");
        about_mc.addEventListener(MouseEvent.ROLL_OVER , buttonOver);

  • MovieClip buttons using e.target method "Under" transparent hit states?

    Hello guys, this is kind of the finale to a line of questions I have been pestering with for about a week. I have multiple buttons that scale up / scale down on rollover (mc btns actually). So, after a lot of help from all of you, I have everything functioning really well.
    My remaining hang up, is how to apply e.target (to abridge my code somewhat) when the movieclip button is now actually below the transparent hit states. (hit states are on the main timeline, buttons under them). Below is some sample code for two of these buttons, and like i said – they work fine, but now that I am trying to use external hit states to get rid of my bugginess, i notice the e.target functions are not being read, since I assume the button is under the hit states.
    the //berenson// below is the code that is speakin to the hit state and the //amylin// still has the previous coding applied to it (when the hit states were not being used quite yet.
    function rollover (e:Event){
        e.currentTarget.gotoAndPlay ("btnOver");
    function rollout (e:Event){
        e.currentTarget.gotoAndPlay ("btnOut");
    function select (e:Event){
        e.currentTarget.gotoAndPlay ("btnClick");
    //amylin//
    btn_amyCase.buttonMode = true
    btn_amyCase.addEventListener (MouseEvent.MOUSE_OVER, rollover);
    btn_amyCase.addEventListener (MouseEvent.MOUSE_OUT, rollout);
    btn_amyCase.addEventListener (MouseEvent.CLICK, select);
    //berenson//
    btn_berHit.buttonMode = true
    btn_berHit.addEventListener (MouseEvent.MOUSE_OVER, rollover);
    btn_berHit.addEventListener (MouseEvent.MOUSE_OUT, rollout);
    btn_berHit.addEventListener (MouseEvent.CLICK, select);
    thanks!

    yup, i was hoping that. However, my buttons were working flawlessly, then i applied the hit state layer, and i am losing the communication.
    But you are saying, that if the buttons work on their own, hit states with the same code applied to them (that was on the buttons) with some tweaks of course, should still function using target?
    so, to sum up: i have mc buttons, and am trying to access "their" timelines. I added the hit state layer (on the main timeline) and made their mouseEvents = the button effects, but my functionality went away.

  • MovieClip Buttons

    Well, for my site i have a movieClip called mMainMenu. Inside
    that movieClip are seven other movieclips, each on their own layer.
    These seven movieclips are being used as buttons to navigate the
    site. The problem comes in with the AS3 code for my MOUSE_OVER
    event. I get an error that i do not understand. Please please
    please help me.here is my code.
    note: the main movieclip on the root timeline is called
    mMainMenu. the button inside has the instance name of bLinks
    bLinks.addEventListener(
    MouseEvent.MOUSE_OVER,
    function(evt:MouseEvent):void {
    bLinks.gotoAndPlay("over");
    trace("I've been Rolled Over!");
    i have also tried:
    mMainMenu.bLinks.addEventListener(
    MouseEvent.MOUSE_OVER,
    function(evt:MouseEvent):void {
    mMainMenu.bLinks.gotoAndPlay("over");
    trace("I've been Rolled Over!");
    the error i'm receiving is:
    1120: Access of undefined property bLinks.

    is bLinks an instance name for a button? based on what you
    said, you need to define the default class for an individual button
    (I assume each is identical and made from a single symbol in the
    library). This is done from properties for that library item. Then
    you call that class with the new operator. After that, you can
    define the event listeners to make rollovers and such work.

  • Movieclip - Button - Location on stage

    Fellow Gurus!
    I am using Flash 8.
    I rendered some boxes on the stage. One is for a menu and
    another is for graphics. The idea is to have a picture pop-up in
    the graphic box whenever one passes a mouse over a button in the
    menu (which is in the menu box).
    I have added movie clips to each button’s mouse-over.
    The movie clips contain a picture (at least for now). Thus when you
    pass a mouse over the button, a picture pops up. That is the easy
    part.
    Now, I could simply reposition the movie clip until it
    appears within the graphic box. My problem is – I have a
    bunch of buttons and they may or may not be placed in the menu in
    exact positions. If I were to change a button’s position, the
    movie clip’s position is relative to the button and not the
    stage thus it would have to be repositioned as well.
    Therefore, the pop-up pictures within the movie clips which
    are within the buttons must all pop-up in the graphic box
    regardless of where I place or reposition the buttons.
    Let’s say I have the graphic box located at x=500 and y
    = 120.
    Let’s say the button’s name is First_btn.
    Let’s say the movie clip’s name is OneTest_mc.
    And, I can bring it on stage in order to add an instance name
    of perhaps TestOne.
    Now, I have looked at localToGlobal and globalToLocal. I am
    not sure which one work for my situation.
    I am assuming that I can add AS2 to the movie clip’s
    (OneTest_mc) timeline – if that is not where it goes - let me
    know.
    I have looked at the various scripts on the Internet and all
    they do is confuse me, namely because they are rotating graphics,
    etc. In another words, they complicate the examples. What I need is
    a script to add to each button/movie clip to make them all place
    the pop-up graphic in the box regardless of where the button is
    located.
    However, I do not just want a piece of script. I would
    appreciate some explanation of the code so I can learn from it
    – not just giving me a fish but teaching me how to fish.
    Thanks in advance,
    Bill

    I am not sure if I get this.
    First of all, I am no sure if it is globalToLocal or
    localToGlobal that I need to use – or maybe you are
    discussing something else entirely.
    You said: “… the sum of your button's _x property
    and the _x property of your graphic relative to your button) is the
    _x property you want to assign your movieclip if you want it to
    appear on the same timeline as your button and overlap your graphic
    (assuming your reg points are comparable). likewise for the _y
    property.”
    I read and reread the above answer. However, I do not have
    enough of a handle on Action Script to see the logic.
    “I am illuminated with darkness,” as Tennyson
    might have said. I am assuming that I should figure out how to get
    the button’s x & y no matter where it is placed –
    and not by reading them as numbers. I guess I need a hint –
    how do I capture the button’s x & y coordinates if they
    are changeable?
    I think this captures the x & y for the button –
    have I got it right?
    Var point = new Object ();
    point.x = First_btn.x; // First_btn is the name of the button
    point.y = First_btn.y; // First_btn is the name of the button
    OneTest_mc.globalToLocal (point); // OneTest_mc is the name
    of the movie clip
    If the above script is valid, and it most likely is not since
    I haven’t a clue what I am doing, then the movie clip would
    end up located where the button is located on the stage.
    Thanks for your help past and future as well as anyone
    else’s help.

  • When user enters and exits one movieclip, button changes color

    Hello,
    I currently have a slideshow-style navigation site.  There are five buttons on the bottom and when the user clicks each button, it triggers a nested movieclip to play.  I would like the button to be highlighted when the corresponding movieclip is playing, but when they click another button and another movieclip plays, I want the button to go back to its original color.
    The problem is that the movieclips that are playing are nested two levels down and the buttons have to be on the main timeline.  I think I might need an event listener to see if a certain nested movieclip is playing, to know to change the button color.  It seems to easy but I can't figure it out, thanks for any help!

    Hi again!  Sorry, I keep changing my mind on whether I've figured this out or not.  Now I need the buttons to become disabled when they are highlighted and active.  I tried putting a:  btns[i].enabled = false;  in the else part of the for-else statement and it didn't work.  Where would I put that kind of code?  Thanks!
    stop();
    //attach sounds
    Sound1 = new Sound();
    Sound1.attachSound("Sound1");
    Sound2 = new Sound();
    Sound2.attachSound("Sound2");
    Sound3 = new Sound();
    Sound3.attachSound("Sound3");
    //buttons
    //nav buttons
    b1.onRelease = function() {
        gotoAndStop(1);
        stopAllSounds()
        activeBtn(b1);
    b2.onRelease = function() {
        gotoAndStop(2);
        stopAllSounds();
        activeBtn(b2);
    b3.onRelease = function() {
        gotoAndStop(3);
        stopAllSounds();
        activeBtn(b3);
    //array for highlighted button state
    var btns:Array = [b1, b2, b3];
    function activeBtn(mc:MovieClip):Void{
       for(var i:Number=0; i<btns.length; i++){
          if(btns[i]!=mc){
             btns[i].gotoAndStop("inactive");
          }else{
             btns[i].gotoAndStop("active");

  • Movieclip buttons actionscript errors

    Hi,
    I have tried using this type of button for the first time and
    also ActionScript.
    I have made a movie clip with _up and _over states and it
    works.
    But the onRelease is doing two strange things.
    Firstly, If I click on a button it will go to the page, say
    "Home" but when I click on it again it will make the movieclip for
    the page disapper.
    I then have to click again to get it back.
    Secondly, I am trying to make the buttons work with the
    rollOver when another button is clicked, a button other than the
    one used to show the current page.
    I have it kind of working but its not now I want it.

    For this line of code:
    if (_root.mcHome != "_on")
    You appear to be trying to use what is a frame label as a
    value compare to the movieclip instance... they will never equate.
    One is an object and the other is...??? a label.
    You probably need to set a boolean variable to true/false as
    needed and compare that...
    So when you do whatever makes mcHome goto the _on location,
    at that location you would set the variable to be true...
    mcHomeOn = true;
    Then you could test that value...
    if(mcHomeOn)...

  • Movieclip button keeps disappearing for some reason.

    I created our website using Actionscript 2.0 and on several of our pages there is a drop-down text box that has a "close" button on it, which is just a movieclip located inside the text box movieclip.  For some reason, if you stay on a page for a few minutes the close button disappears.  The hand still shows up when you hover over where it was at and you can still click on it, but it just turns invisible.  I'm not sure what's causing this.  Any suggestions?
    The website is:  www.klaesimage.com
    Thanks,
    Shaun

    Rothrock wrote:
    My guess is that you have some kind of loop that adjusts the _alpha to brighten it up that is like this:
    myButton.onRollover=function(){
    this.onEnterFrame=function(){
    this._alpha+=10;
    And you don't have a conditional to say, "when alpha reaches 100 stop adding more."
    So what happes is that the alpha value goes about 100 and when it gets to something like 2^15 it wraps around and becomes an incredibly low negative number. If you wait another few minutes it should eventually get back to positive values!
    Of course the best bet would be to put in some conditionals to control that it doesn't go above/below 100/0.
    After watching it for a while longer I saw that it does cycle.  I'm not sure why because its alpha should just stay at 100 once it's on that frame, the dissolve up is from a motion tween where the entire contents of the text box go from 0 alpha to 100 alpha over 10 or so frames, but once there on the frame where it stops there shouldn't be any changes to the alpha.

  • Scrollpane containing movieclip buttons don't work

    I am having 2 problems with my scrollpane working.
    1. My dynamic text within the attached movieclip is not
    showing up. The text shows up if it is static but not dynamic.
    2. I am using an .as file for my buttons because the links
    need to be updated by people who don't know how to use flash and
    these buttons are not working. The buttons work fine it is hard
    coded on the button in the movieclip but not from the .as file.
    Please help.

    I am having 2 problems with my scrollpane working.
    1. My dynamic text within the attached movieclip is not
    showing up. The text shows up if it is static but not dynamic.
    2. I am using an .as file for my buttons because the links
    need to be updated by people who don't know how to use flash and
    these buttons are not working. The buttons work fine it is hard
    coded on the button in the movieclip but not from the .as file.
    Please help.

  • How do I create a rollover movieclip button?

    I'm very new to Flash and would like to know firstly how I create a movieclip, and then how to make the movieclip into a rollover button (having the animation play when the cursor is over the button, and it pausing/restarting when taken off). Preferably in a step by step guide, thanks for any help!

    click insert>new symbol>movieclip.
    on the timeline create your movieclip animation.
    add a layer to frame 1 and add the following code:
    stop();
    open your library and drag your movieclip from the library to the main timeline/stage.  in the properties panel assign an instance name, eg mc
    open the actions panel and add:
    mc.addEventListener(MouseEvent.MOUSE_OVER,overF);
    mc.addEventListener(MouseEvent.MOUSE_OUT,outF);
    function overF(e:MouseEvent):void{
    MovieClip(e.currentTarget).play();
    function outF(e:MouseEvent):void{
    MovieClip(e.currentTarget).gotoAndStop(1);

  • [HELP] MovieClip Button Stucks after the first use!

    Hello Everyone... i am new on this forum and i need your help!!!
    so i'm working on a map on flash profesional cs6 ActionScript 3
    that map has some button that i've made them symbols from images and now is movieclips!
    so when you are pressing a button you are going to a new frame with a pop- up that have informations about this place...
    anyway... i have 22 frames...
    and on first frame i've put the scripts [gotoAndStop()] that when you're pressing the button to go to an another frame...
    so i have 22 buttons... if i will click a button and going to another frame and then want to press imediately an another button to go to another frame... it works... but is not happening to 3 buttons... is strange...
    so if i am on the first frame... pressing a button... and after pressing the button that doesn't works... maybe will work... but if i will press again the first button and again back to the second button... it will not working!!!!
    that is happening with 3-4 buttons...
    and the strange is that when the button stucks and doesn't work... i don't have any compile or output error...
    i'm used the command trace(); to check if the button is pressed when is not going to the frame... and it doesn't work!!!
    so my commands is this...
    import flash.system.fscommand;
    import flash.display.*;
    import flash.events.*;
    stop();
    fscommand("fullscreen", "true");
    stage.scaleMode = StageScaleMode.SHOW_ALL;
    stage.addEventListener(MouseEvent.RIGHT_CLICK, function(e:Event){});
    Texnopolh.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_3);
    function fl_ClickToGoToAndStopAtFrame_3(event:MouseEvent):void
              gotoAndStop(2);
    Omonoia.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_4);
    function fl_ClickToGoToAndStopAtFrame_4(event:MouseEvent):void
              gotoAndStop(3);
    Syntagma.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_5);
    function fl_ClickToGoToAndStopAtFrame_5(event:MouseEvent):void
              gotoAndStop(4);
    Kotzia.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_6);
    function fl_ClickToGoToAndStopAtFrame_6(event:MouseEvent):void
              gotoAndStop(5);
    Boukourestiou.addEventListener(MouseEvent.MOUSE_UP, fl_ClickToGoToAndStopAtFrame_7);
    function fl_ClickToGoToAndStopAtFrame_7(event:MouseEvent):void
              gotoAndStop(6);
    Pathsia.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_8);
    function fl_ClickToGoToAndStopAtFrame_8(event:MouseEvent):void
              gotoAndStop(7);
    Athinas.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_9);
    function fl_ClickToGoToAndStopAtFrame_9(event:MouseEvent):void
              gotoAndStop(8);
    Akropolh.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_10);
    function fl_ClickToGoToAndStopAtFrame_10(event:MouseEvent):void
              gotoAndStop(9);
    Panepistimio.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_11);
    function fl_ClickToGoToAndStopAtFrame_11(event:MouseEvent):void
              gotoAndStop(10);
    AgiosPaulos.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_12);
    function fl_ClickToGoToAndStopAtFrame_12(event:MouseEvent):void
              gotoAndStop(11);
    Kupselh.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_13);
    function fl_ClickToGoToAndStopAtFrame_13(event:MouseEvent):void
              gotoAndStop(12);
    Dhmarxeio.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_14);
    function fl_ClickToGoToAndStopAtFrame_14(event:MouseEvent):void
              gotoAndStop(13);
    Euaggelismos.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_15);
    function fl_ClickToGoToAndStopAtFrame_15(event:MouseEvent):void
              gotoAndStop(14);
    Polutexnio.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_16);
    function fl_ClickToGoToAndStopAtFrame_16(event:MouseEvent):void
              gotoAndStop(15);
    Zonars.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_17);
    function fl_ClickToGoToAndStopAtFrame_17(event:MouseEvent):void
              gotoAndStop(16);
    KOPER.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_18);
    function fl_ClickToGoToAndStopAtFrame_18(event:MouseEvent):void
              gotoAndStop(17);
    EBGA.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_19);
    function fl_ClickToGoToAndStopAtFrame_19(event:MouseEvent):void
              gotoAndStop(18);
    OSRAM.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_20);
    function fl_ClickToGoToAndStopAtFrame_20(event:MouseEvent):void
              gotoAndStop(19);
    Credits.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_25);
    function fl_ClickToGoToAndStopAtFrame_25(event:MouseEvent):void
              gotoAndStop(20);
    Falhro.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_21);
    function fl_ClickToGoToAndStopAtFrame_21(event:MouseEvent):void
              gotoAndStop(21);
    Xilton.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_23);
    function fl_ClickToGoToAndStopAtFrame_23(event:MouseEvent):void
              gotoAndStop(22);
    Background.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_27);
    function fl_ClickToGoToAndStopAtFrame_27(event:MouseEvent):void
              gotoAndStop(1);
    Please if you can, help me!!! is important... i am new on flash and don'tt know too much...
    and sorry for my bad english!!!

    Actually i don't pasted the code to all frames... only on first frame... but the other buttons are working perfectly!!!!
    When i've tryed to put the code on all frames... it was saying that i have error on another code... not for this button!!! crazy? i think so!!!
    i was have that problem only to 1 frame... for example the button with the problem is "Boukourestiou" and on Boukourestiou's frame i was have an other code... the code for "Falhro"
    and when i was going to press that button... it was saying that i have problem on that code: Falhro.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_21);

Maybe you are looking for

  • How to populate budget in creation of Fund?

    Hi Gurus, Can anybody give me a clue on how to populate the 'budget'or 'Expired' in the process of creating a fund  in CRM? I could not fill out because the fields are grey . Thanks

  • My Ipod wont turn on! PLEASE HELP!!!!

    It is completely unresponsive! Ive read almost all of the apple articles about this and nothing works! This is the second time this has happened. The first time all I had to do was get a new charger! It worked for a couple of days then when I let it

  • How to get a Monthly Depreciation Simulation for next fiscal year?

    I need a report that give me the depreciation simulation for next fiscal year, but I need it monthly wise. I run report S_ALR_87012936 with report date 31.12.2011 and evaluation period = month. The report gives the error message AA669 Fiscal year 201

  • Package is invalid state when called in Trigger

    Hi All, We have a trigger in which we are calling procedure(which is created in some package). Every time the trigger is called it returned an error 'Package is in INVALID State".We tried to clean the app pool and that error went away but now it star

  • Lion OS X 10.7.3 and printing

    I have a new MacBook Pro 2.2 GHz Intel Core i7, (2 weeks) and when I first got it, I was able to print on two of our printers, but after I upgraded to 10.7.3, I can no longer print. It just sits there and acts like it is spooling to the printer, but