
September 19th, 2003, 11:05 AM
|
|
Junior Member
|
|
Join Date: Sep 2003
Posts: 7
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Externally loaded SWFs
I'm trying to load swf1 in swf2, which works, using a scrollpane and this little bit of actionscript:
_root.main1.loadScrollContent("../test/swf_main/swf1.swf");
But, swf1 contains a dynamic text box in a movie which should load an external txt file, using this code:
loadVariables("welcome.txt", this);
Now, when I open swf1, it displays the text from welcome.txt, but when I open swf2, welcome.txt isn't displayed.
Is this even possible? Or what am I doing wrong?
|