loadMovie problem

OKay,
Here it goes:

I got a bunch of Mc’s , each named tnholder1, tnholder2… etc…
Same goes for their instance names. on tnholder1 I got the following code

onClipEvent (load){
_root.tnholder1.loadMovie(“a1.jpg”);
}

but it just loads … nothing… the mc (which is a black square, dissapears completle…!

Can i see FLA

sures :slight_smile:

my bad with frist anwser but this works/tested:

Use this actionscript in the timeline of the swf
_root.tnholder1.loadMovie(“a1.jpg”)

and a1.jpg is in the same location as the swf

worked, thanks I am so dumb
I cant beleive I forgot to try it that way!
THANKS!

one more ?
I gave tnholder one another script:

on (release){
loadMovie(“b1.jpg”, “holder”);
}

So it would load an image… any Idea why this dosent work?

on (release){
_root.holder.loadMovie(“b1.jpg”);
}

Am I dumb or what…?
Thanks man!