PDA

View Full Version : [f4] loading timeline in parts


daniel
11-08-2002, 11:05 AM
i want to load a movie in parts: first the navigation, then seperate movies.
on frame 1 i have this action:

stop ();
ifFrameLoaded (2) {
gotoAndPlay (2);
}

when i test it, it loads the whole page, meaning frames 1 thru 7, containing heavy movies with pics.

any idead how to stop loading the rest?

somewhere in the movie "navigation" i have a button with the action

on (release) {
tellTarget ("_root/") {
gotoAndStop (3);
}
}

on frame 3, action:

stop ();
ifFrameLoaded (4) {
gotoAndPlay (4);
}

sorry for elaborating :p

dunno if that works coz the movie loads completely at opening anyway..

Billy T
11-08-2002, 11:12 PM
you need to be continually checking the ifFrameLoaded

try

ifFrameLoaded (3) {
gotoAndPlay (3);
}

in frame 1 and

gotoAndPlay(1);

in frame 2

cheers

daniel
11-11-2002, 02:15 PM
that's it! on the spot!
thanxalot!