I have a movie clip symbol( it’s just a square). I want to change the rotational axis in the actionscript. How can I do this??
Thanks
I have a movie clip symbol( it’s just a square). I want to change the rotational axis in the actionscript. How can I do this??
Thanks
I don’t think you can change the axis using actionscript. I think it’d havta be done manually…:-\
What do you mean by ‘rotational axis’? Are you talking about the z? 3D stuff?
If you want to just rotate the square, you can using _rotation like:
onClipEvent(load){
rot=5;
}
onClipEvent(enterFrame){
this._rotation = rot;
}
Yeah?
Yes, I know how to use the _rotation property. But I want to periodically change the rotational axis and then rotate about that new axis… then change the rotational axis again, rotate some more, ect… get me?
Thanks
:: Copyright KIRUPA 2024 //--