A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: ActionScript problem

  1. #1
    Member
    Join Date
    Dec 2003
    Posts
    32

    ActionScript problem

    I have on a timeline 2 different areas where I have labels. Say the labels are "Play1" and "Play2". And I have a button and in the script it says when released go to and play "Play1" and then go to and play "Play2". The problem is though when the button is clicked you can only see "Play2" happening and so I want it to start playing "Play1" and when it is finished THEN go to "Play2".

  2. #2
    Senior Member
    Join Date
    Feb 2003
    Location
    Out There...
    Posts
    162
    Don't post your problem over and over again because you didn't get an answer. Sometimes you just have to wait until someone can help you.

  3. #3
    Member
    Join Date
    Dec 2003
    Posts
    32
    No what happened was I didn't get a response that it went through. That is why they are multiple posts. Sorry about that

  4. #4
    Senior Member green_eye's Avatar
    Join Date
    Apr 2004
    Location
    Sarasota, Florida
    Posts
    1,496
    You canot make the playhead play two things at once...

    set mc 1 to play

    on (release) {
    _parent.mc1.play();
    }

    then on last frame of mc1 tell flash to play mc2

    on (release) {
    this._parent.mc2.play();
    }

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