Forum Moderators: open
onClipEvent (load) {
movies = ["final-1-purple.swf", "final-1-green.swf","final-1-orange.swf"];
i=1
t=0
movieTime = 75
movieFrames = movieTime*40
admovies = ["EPASS_POSTER.swf"];
adi=1
ad=0
admovieTime = 75
admovieFrames = admovieTime*40
_root.placeHolder.loadMovie (movies[0]);
}
onClipEvent (enterFrame) {
t++
if (ad==0) {
if (t==movieFrames*i) {
if (i!= movies.length) {
_root.placeHolder.loadMovie (movies[i]);
i++
}
else if (i== movies.length){
_root.placeHolder.loadMovie (admovies[0]);
ad=1
}
}
}
else if (ad==1)
{
if (t==movieFrames*i+admovieFrames*adi) {
if (adi!= admovies.length) {
_root.placeHolder.loadMovie (admovies[adi]);
adi++
}
else if (adi == admovies.length){
_root.placeHolder.loadMovie (movies[0]);
ad=0
i=1
t=0
}
}
}
}
Two ideas..
1) give the movie to somebody who knows what they are doing with actionscript, if you dont know you may break something somewhere else.
2) replace EPASS_POSTER.swf with a blank movie of the same dimensions and with the same name see what happens, you may get away without having to alter code.
The first is probably the better idea.