flash question
flash question
Out of context: Reply #6
- Started
- Last post
- 11 Responses
- shant0
even easier, give the clip the button is in a unique instance name for each section. then just use the _name property, to jump to the corresponding label.
so if you have a section with a frame label that is "blah" then give the clip the instance name blah and then:
on(release){
gotoAndStop(_name);
}that should do it.