Flash assistance
Flash assistance
Out of context: Reply #1
- Started
- Last post
- 1 Response
- mightyj0
this is what I have so far but wondering if it is the cleanest and most efficient way of doing it:
onClipEvent (enterFrame) {
this._x = this._x+2;
if (this._x>=1030) {
this._x = -50;
this._y = random(200);
this._alpha = random(60);
this._yscale = random(100);
this._xscale = this._yscale;
}
}