Hi,
You have a couple of options. One is to increase the frame rate of your movie and extend the keyframes in the animation to achieve the speed you want. The other is to turn the images into a movieclip and manipulate the movieclips _x position with actionscript.
Simple motion example...
Code:
_root.mcName.onLoad=function(){
speed=10;
}
_root.mcName.onEnterFrame=function(){
this._x+=speed;
}
A mind once stretched by a new idea never regains its original dimensions.
- Oliver Wendell Holmes
Bookmarks