onClipEvent (load){
this._x = 10;
}
onClipEvent (enterFrame) {
}
Using enterFrame does exactly what I described above: it checks the functions inside the onClipEvent each time the movie cycles over a new frame, or the same frame repeatedly.
From Adrien-Luc Sanders, former About.com Guide
onClipEvent (load){
this._x = 10;
}
onClipEvent (enterFrame) {
}
Using enterFrame does exactly what I described above: it checks the functions inside the onClipEvent each time the movie cycles over a new frame, or the same frame repeatedly.