Quote:
|
Originally Posted by mastamindz
Im trying to do an actionscript using an alpha fade. ie the image fades in on loading of the movie. Anyone know how to get this working?
This is what I have... but Im sure its wrong ;)
clip_mc.onEnterFrame = function() {
_root.mc.onEnterFrame=function(){
if(this._alpha<100){
this._alpha+=5;
}else{
this.onEnterFrame=null;
}
}
}
|
clip_mc.onEnterFrame = function() {
_root.mc.onEnterFrame=function(){
if(this._alpha<100)this._alpha+=5;}
}else{
this.onEnterFrame=null;
}
}
}
ps, i totally made this up