How do I go about loading a movie from another location within a flash document? I read the tutorial on making a full flash site but I’m a complete newbie to flash so it didn’t really help!
Cheers, J
How do I go about loading a movie from another location within a flash document? I read the tutorial on making a full flash site but I’m a complete newbie to flash so it didn’t really help!
Cheers, J
How would I take the following code :
but.onPress = function () {
_root.createEmptyMovieClip(“container”, 1);
loadMovie(“loaded.swf”, “container”);
container._x = 150 ;
container._y = 20 ;
}
Except to unload the movie? Also is there anyway of making a pause button?
if you want to unload a movie with a button, do this:
button.onRelease = function () {
container.unloadMovie();
};
pause buttons could be done something like this:
button.onRelease = function () {
container.stop();
};
then just start it again with play();
thanx
No probs
ok just tried to actually use that code… how do I know what the name is of each level?
doesnt matter got it working
this has been what i have been looking for aswwell how to load like a whole bunch of movies externally into containers on the stage, that are spaced around the site as sections :)))
thanks
by the way what did you do with the levels problem rockstar???
I just told it to unload “container” Worked a treat
When did you edit your post and change it from level to container SF? I just noticed it there now it was pickleing my little head all day lol…
I don’t remember. probably just after I posted it. I’ve got lots of things on my mind
lol it confuuuuuuuuuused my little heeeead
hehe
:: Copyright KIRUPA 2024 //--