Flash function help
Flash function help
Out of context: Reply #1
- Started
- Last post
- 10 Responses
- Boz0
onClipEvent() when used on a movie clip has a local timeline inside the movieclip not on the current one you're on.
Meaning, if you have an MC movieMC1 on a _root and you put onClipEvent on movieMC1 it will behave as you are calling a function from inside movieMC1.
All you have to do is put
onClipEvent(load){_parent.mymotion(0.0.25);
}
Putting _parent will access objects and functions on the actual timeline you are on where you're putting onClipEvent.