/ Published in: ActionScript
_alpha desde codigo -- LG
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
a = 1; flg = 0; cuad.onEnterFrame = function () { this._alpha = a; if (flg == 0) { var velocidad = 2 a += velocidad if (a > 100) { flg = 1; this.onEnterFrame = null } } trace(a) }; // cuad = mc