I've got the follwoing code:

tellTarget (_root.frontPage)
{
gotoAndStop ("lastFrame");
loadMovie ("test.swf", "dummyMovie");
}

Now... I've tried replacing this with:

_root.frontPage.gotoAndStop("lastFrame");
_root.frontPage.loadMovie("test.swf", "dummyMovie");

I thought this 'should' have the same effect as that of the first bit of code... but apparently not?
What I want to do is load a movie over a dummy movie (existing in a movie on the main timeline). Now, it just so happens that my dummy movie only exists on a specific frame - hence, I have to instruct it to go to the frame before I load it.

I've also tried:

_root.frontPage.gotoAndStop("lastFrame").loadMovie ("test.swf", "dummyMovie");

That doesn't work either.
[OK... so I was in Java mode!] : )

Does all that make sense?
If anyone can figure out what I'm saying... and can give the equivalent code... I'd really appreciate it.

Thanks.


Jam