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…!
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              4
              
             
            
              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
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              5
              
             
            
              worked, thanks I am so dumb
I cant beleive I forgot to try it that way!
THANKS!
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              6
              
             
            
              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?
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              7
              
             
            
              on (release){
_root.holder.loadMovie(“b1.jpg”);
}
             
            
              
              
              
            
            
           
          
            
              
                system
                
              
              
                  
                  
              8
              
             
            
              Am I dumb or what…?
Thanks man!