Hi,
I have a sequence of pictures (object made in 3dmax) that I put in a MC now I want that this “Object” can be drag/spin on _X if the user drag him and if not the object is “floating” like in this tutorial (kirupa.com - Triangular Hourglass and SpaceShip) I want the same thing like in the ship tutorial, any ideas how to achieve this? (coz I don’t need to DRAW the object), someone can post a tutorial or attach a file (plz show me the path).
Thank you for any help!
Lobo :hr:
ps: I wrote this post in other forum but Im sure this is the right one (sorry :ne: )
I search something like this in the forum but Ican’t find nothing that can be usefull exept:
http://www.parallelgraphics.com
====================================================================
myClip.onEnterFrame = function() {
speed = 18;
// 360 must be divisible by speed
//positive rotates CW, negative CCW
(360%speed == 0) ? speed : speed=null;
if (angle>=360 || angle<=-360) {
this.onEnterFrame = null;
} else {
angle += speed;
this._rotation = angle;
}
};
[SIZE=3][COLOR=Red]But Im not sure that this can by apply to my problem?[/COLOR][/SIZE]