RE: [Flashcoders] loadMovie question

2007-02-02 Thread Alain Rousseau
You should try masking your movieclip through code, as you are loading into it with code : movieclip_a.masked.setMask(movieclip_a.mask); then your masked movieClip should remain masked even if you load a jpeg inside it. I say should, but I've not tested this precise setup ... HTH Alain

Re: [Flashcoders] loadMovie question

2007-02-02 Thread Helmut Granda
It sounds like you are not loading the JPG to the right target. Make sure your loadmovie is loading correctly. On 2/2/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: Hi Alain, I would think that would work too, but i tried that as well...not sure what's happening... in fact all of my

RE: [Flashcoders] loadMovie question

2007-02-02 Thread Alain Rousseau
] On Behalf Of Helmut Granda Sent: 2 février 2007 12:25 To: Flashcoders mailing list Subject: Re: [Flashcoders] loadMovie question It sounds like you are not loading the JPG to the right target. Make sure your loadmovie is loading correctly. On 2/2/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: Hi

Re: [Flashcoders] loadMovie question

2007-02-02 Thread eric dolecki
it sounds like you might be targeting the main clip and not the nested clip beneath the mask. mc mc.mask, mc.holder_mc (empty) - beneath the mask on a layer mc.holder_mc.loadMovie(foo.jpg); - should be affected by the mask layer inside of the mc movieclip On 2/2/07, [p e r c e p t i c o n]

RE: [Flashcoders] loadMovie question

2007-02-02 Thread Alain Rousseau
and what are you tracing exactly ? that's only the result. But at first glance Target looks like a file path and not a clip path to me ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [p e r c e p t i c o n] Sent: 2 février 2007 12:49 To: flashcoders

Re: [Flashcoders] loadMovie question -- better explaination

2007-02-02 Thread Helmut Granda
Hey Buddy, You dont have to start a new thread, you can just continue with the original post :) On 2/2/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: ok so i noticed that where i have the clip that i'm loading into matters... so here's how my movieclip is set up. there are about 20

Re: [Flashcoders] loadMovie question

2007-02-02 Thread Wagner Amaral
Had that problem once, that was because I had a number in the instance name, which flash wasn't handling well... How are you assigning the '1' to 'card1' ? read this: http://chattyfig.figleaf.com/pipermail/flashcoders/2006-December/177045.html On 2/2/07, [p e r c e p t i c o n] [EMAIL

Re: [Flashcoders] loadMovie question

2005-12-11 Thread Flash guru
try attachMovie(), its well documented in the help files ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] loadMovie question

2005-12-11 Thread Michael Bedar
Just to expand on that, loadMovie loads an external SWF or JPG (and more in Flash 8) into a MovieClip. attachMovie loads a named MovieClip from your flash library into a MovieClip. On Dec 11, 2005, at 11:08 PM, Flash guru wrote: try attachMovie(), its well documented in the help files

Re: [Flashcoders] loadMovie question

2005-12-11 Thread Simon Lord
Thanks, finally got it working. Just to expand on that, loadMovie loads an external SWF or JPG (and more in Flash 8) into a MovieClip. attachMovie loads a named MovieClip from your flash library into a MovieClip. On Dec 11, 2005, at 11:08 PM, Flash guru wrote: try attachMovie(),