quick flash rotate ??
quick flash rotate ??
Out of context: Reply #8
- Started
- Last post
- 10 Responses
- autonoma0
Well then you'll probably have to do it with an onEnterFrame loop if you want it going constantly. Macromedia actually suggests using a three-frame loop instead, but you won't get it too smooth that way.
Just place this on the clip:
onClipEvent (enterFrame) {
this._rotation += 18;
}Change the + to a - if you want it to go in the opposite direction, and change the '18' to alter the speed.
With a number of clips looping like that, you shouldn't have too much else going on in the file or it will bog it down drastically. Also, you may not want to make the "kaleidescope thing" too terribly large, or the same will happen.
Good luck.