hi
i am loading a button with _visible command i.e
on(release){
btn1_mc._visible = 1;
}
can i load btn1 with _visible and have it appear from alpha 0 to 100 ?
right now it just pops up
p.d. i cannot make my btn1 a movie clip
thanks
hi
i am loading a button with _visible command i.e
on(release){
btn1_mc._visible = 1;
}
can i load btn1 with _visible and have it appear from alpha 0 to 100 ?
right now it just pops up
p.d. i cannot make my btn1 a movie clip
thanks
A couple of questions:
btn1_mc.onRelease = function() {
this._alpha = 0;
this.onEnterFrame = function() {
this._alpha++;
trace(this._alpha);
if (this._alpha >= 100) {
delete this.onEnterFrame;
}
};
};
:: Copyright KIRUPA 2024 //--