A preloader Flash --> The Action Script
U can add a preloader by adding the following actions.
on the 1st frame of the movie:-
framesLoad = _root._framesLoaded;
framesTotal = _root._totalFrames;
if (framesLoad < framesTotal) {
percentLoaded = int((framesLoad/framesTotal)*100);
} else {
gotoAndPlay(5);
}
on the 2nd frame, u put actions:-
gotoAndPlay(1);
ur movie starts from frame 5.
The percentLoaded above is the name of the dynamic text field in which u want to display the percent loaded.
u can put ne light animation 2 make it good while the movie loads.
Enjoy
Amit :D:lol: