I am doing an alpha transition (alpha 0% - 100%)in Flash 8… Here’s my code:
onClipEvent(load){
this._alpha = 0;
}
onClipEvent(enterFrame){
this._alpha += 5;
if(this._alpha >=100){
this._alpha.stop;
}
}
When I run the movie, it works but after a few seconds or minutes, the object on stage disappeared… And that’s my problem… Even I used stop command, the problem is still the same… The object still disappearing… Is there anything wrong with my script?? Im juz a beginner… Plz help guyz… tnx in advance :h::h: