hi!
in a movieclip on the first frame i have a button with the code:
that's fine, it jumps to the specific frame where i have this code:
but it doesn't load the movie? the screen is just black (well thats my background). the movie i want to load is about 50 MB big, could it be related with that? but i also tried it with a small one and it still doesn't show it.
as i want to load about 6 different movies into my main swf file (all are about that big) is it possible to load them already at the start of the application so when you actually get to the point where you can see them they are already loaded?
i don't know what i am doing wrong so it would be great if someone could help!?
thanks!
in a movieclip on the first frame i have a button with the code:
Code:
on(keypress "<Enter>"){
gotoAndStop("Sommerhaus");
}
that's fine, it jumps to the specific frame where i have this code:
Code:
onEnterFrame = function(){
function loadSWF(){
loadMovieNum("test.swf", 1);
}
}
stop();
but it doesn't load the movie? the screen is just black (well thats my background). the movie i want to load is about 50 MB big, could it be related with that? but i also tried it with a small one and it still doesn't show it.
as i want to load about 6 different movies into my main swf file (all are about that big) is it possible to load them already at the start of the application so when you actually get to the point where you can see them they are already loaded?
i don't know what i am doing wrong so it would be great if someone could help!?
thanks!