actionscript problem
- Started
- Last post
- 5 Responses
- trobutta
working on this movie..
http://www.louisville.edu/~tahar…
the problem: click on the who button (allow it to open) then click on the what button. The "what" button doesn't allow "who" to close before it floats up.
the question: is there a way to pause the execution of the "what" button opening while the "who" button closes.
here's my code
http://www.louisville.edu/~tahar…thanks for your help
- phirschybar0
oh.. what a fun problem...
Make all of the buttons that control the animations be invisible (no UP or OVER or DOWN state) inside one MC and on one frame. Then, when you click a button, have it move that MC to the next frame so the buttons are not even there (disabled). Then, at the end of your animations, include some code to tell the MC to go back to the frame where the buttons are enabled.
- trobutta0
I see what you are saying.. thanks.. I'm gonna try that and one other thing.. stay tuned
- jpolk0
instancename.enabled=false;
- phirschybar0
hey polk, is that an MX2004 solution? I dont remember that from MX?
- trobutta0
http://www.louisville.edu/~tahar…
I'm using setInterval to make each button wait it's turn.. I still have to disable the buttons while another is doing animation though.. I'll use clip_btn.enabled = false I guess. thanks for the help!