PDA

View Full Version : pc projector


designlevel2
09-02-2004, 07:47 AM
Is there a problem with loadmovie from a flash projector. Is there anyone who is familiar with flash cd roms and how to work around this. The mac projector works fine as long as the swfs are in the same folder.

Any info/help is much appreciated.

Thanks in advance.

you want code?

ok.

unloadMovieNum(10);
//trace(_root.neXSection);
if (_level100.neXSection == "1") {
loadMovie("campaign.swf", 10);
} else if (_level100.neXSection == "2") {
loadMovie("tv.swf", 10);
} else if (_level100.neXSection == "3") {
loadMovie("oct.swf", 10);
} else if (_level100.neXSection == "4") {
loadMovie("web.swf", 10);
} else if (_level100.neXSection == "5") {
loadMovie("print.swf", 10);
} else if (_level100.neXSection == "6") {
loadMovie("media.swf", 10);
} else if (_level100.neXSection == "7") {
loadMovie("pr.swf", 10);
} else if (_level100.neXSection == "8") {
loadMovie("con2.swf", 10);
} else if (_level100.neXSection == "9") {
loadMovie("summary.swf", 10);
} else if (_level100.neXSection == "10") {
loadMovie("appendix.swf", 10);
}
_level100.gotoAndStop("logos");
gotoAndStop(1);

CyanBlue
09-02-2004, 01:37 PM
Howdy... :)

I think you are confused with loadMovie() and loadMovieNum() functions...

designlevel2
09-02-2004, 01:53 PM
What do you mean?

CyanBlue
09-02-2004, 02:06 PM
loadMovie("url",level/target[, variables])
loadMovieNum("url",level[, variables])

See the difference???
If you were to load the external file into the level, you need to use loadMovieNum() function... That's what I meant... :)