Strike Force Heroes 2
The explosive sequel to the hit game Strike Force Heroes!
3.93 / 5.00 7,996 ViewsObsolescence
Defeat the enormous mechanical beasts--and become one of them.
4.01 / 5.00 40,892 ViewsDoes anyone know how to make a symbol get random angle every time you click on it?
Using AS2 (yeah I know I should be using AS3 but I like more the AS2).
At 12/13/12 05:31 PM, PhilDenger wrote: Does anyone know how to make a symbol get random angle every time you click on it?
Using AS2 (yeah I know I should be using AS3 but I like more the AS2).
Put this code on any movieclip or button:
on(release){
this._rotation=random(360)+1;
}
Put this code on any movieclip or button:
on(release){
this._rotation=random(360)+1;
}
Thanks, it was really useful.