[AS]loadMovie problems!

[FONT=Tahoma]Hi,

I have a problem, and i don’t understand why…

I have a main movie, where i load other movie with loadMovie.


btn1.onRelease = function () {
    loadMovie ("fhome.swf", "home");
    unloadMovie ("gute");
    unloadMovie ("stuff");
    unloadMovie ("club");
};
//===================================
btn2.onRelease = function () {
    loadMovie ("fclub.swf", "club");
    unloadMovie ("gute");
    unloadMovie ("stuff");
    unloadMovie ("home");
};

In fhome.swf i just load some text.(this is displayed very well).

But in fclub.swf i have a dataGrid that loads a XML file(with cellRenderer API).

When i’m testing on my computer(hit ctrl+enter in flash,in index.fla) the fclub.swf it is loaded and showen, BUT when i put everything on localhost and i enter the site the fclub.swf it’s not loading!

Can somebody help me with this?

Thanks in advance, Tiberiu.

[/FONT]

make sure you are entering the whole path where the external swf files are residing on your server.

ex.

btn1.onRelease = function(){
_root.containerMC.loadMovie(“swfs/fclub.swf”);
}

If youre running the files locally and they work, make sure they are all put on the server in the same orientation.

if this doesnt make any sense I would say post an fla…

the swf is loading the in container, but not showen…not animating! i didn’t use the _root function! because in the external swf i use the _root function and i don’t want to have problems