|
-
frame label navigation...
how do i stop animation at the end of a labeled frame, and leave available buttons active/executable?
i have my labeled frames in their own layer......if that helps...
and these lines of code dont seem to be working on my navigation buttons
-----------------
on (release) {
gotoAndPlay(expand);
}
------------------
-
FK'n_dog
to stop any frame add - stop();
frame labels are "strings", without "quotes" Flash seeks a variable
on (release) {
gotoAndPlay("expand");
}
-
silly mistake on my part...thanx..the missing quotes just helped alot! :P
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|