A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Play next scene button not working

  1. #1
    Junior Member
    Join Date
    Aug 2010
    Posts
    7

    Play next scene button not working

    I have a play button on one layer and an actions button on another layer. Im using Actionscript 3.0. im trying to make it so when you click the button it takes you to the next scene but when i test it it just flashes the button and goes straight to the next scene. :/

    Here is the code i last tried but i have tried about 20 different things so far:

    stop();
    base_btn.onRelease = function() {
    gotoAndPlay("Scene 2");
    }


    I want to upload the .fla but i dont know how to get the file size small enough. I read the post were it said to just delete the images from the library but it didn't replace anything with red shapes so if someone can help me with that i can upload my flash file.

    Thanks

  2. #2
    Lunatic
    Join Date
    Nov 2002
    Location
    AS3 Forum
    Posts
    342
    The code you have there is action script 2.0.

    stop();

    base_btn.addEventListener(MouseEvent.CLICK, onClick);

    function onClick(e:MouseEvent):void
    {
    //do something
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center