Discussions
Categories
Search
Sign In
LiveSearch
All Discussions
conversations
creations
advice
not for work
Feeds
RSS2
ATOM
Powered by vanilla & lovin' it!
advice
flash import thingy
Bottom of Page
1 to 7 of 7
CommentAuthor
karmadrome
CommentTime
Jan 31st 2007
help...
ive created a flash movie with 3 different scenes... on scene 3 i have imported/load movie using this on frame 1:
loadMovieNum("quiz.swf", 1);
this works fine until i navigate to scene 1 & 2 - the imported one still shows above the other scenes (top layer)
how can i do this so it dissapears when going to the other pages?
my head hurts!
CommentAuthor
chris
CommentTime
Jan 31st 2007
unload
of course, you'd then need to reload it when going back to it... there is probably a better way, like moving it off the stage or something.
CommentAuthor
karmadrome
CommentTime
Feb 1st 2007
thought it would be something like that... opted for:
on (press) {
gotoAndPlay("SCENE 02", 1);
unloadMovieNum(2);
}
thanks
CommentAuthor
CPU
CommentTime
Feb 1st 2007
instead of unloading it you could also hide/show it
CommentAuthor
karmadrome
CommentTime
Feb 5th 2007
what would be the code for that?
CommentAuthor
CPU
CommentTime
Feb 6th 2007
onClipEvent (enterFrame) {
theclipyouwanttohide._alpha = 0;
}
or something like this iirc
CommentAuthor
karmadrome
CommentTime
Feb 6th 2007
cheers! will give it a go :]
1 to 7 of 7