
December 21st, 2007, 03:18 AM
|
|
Registered User
|
|
Join Date: Dec 2007
Posts: 2
Time spent in forums: 17 m 52 sec
Reputation Power: 0
|
|
I have a problem with loadmovie
I have a problem with loadmovie. I have 3 files called load_mc.swf, display_mc.swf and slide1.swf. Both display_mc.swf and slide1.swf in the path "E:/course/folder/". Whereas load_mc.swf is in the path "E:/course/". The load_mc loads display_mc.swf whereas display_mc.swf loads slide1.swf. I have given the below code in display_mc.swf.
loadMovie("folder/slide1.swf", display_mc);
and the below code is in load_mc
loadMovie("folder/display_mc.swf", load_mc);
This is working fine.
But in display_mc.swf file, if i give the path without the folder name like this --> loadMovie("slide1.swf", display_mc);
is not working.
Is there any way without giving folder name in display_mc.swf to display the slide1 file.
|