RE: [Flashcoders] about depth

2007-04-02 Thread Merrill, Jason
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Sunday, April 01, 2007 7:42 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] about depth Thanks to all people, so far the matter stay unresolved so I prefer to create a movieClip on the bottom layer and use

Re: [Flashcoders] about depth

2007-04-01 Thread Gustavo Duenas
Thanks to all people, so far the matter stay unresolved so I prefer to create a movieClip on the bottom layer and use this.myMC.createEmptyMovieClip(NewBack1, 0); then I've write the code to load the movie inside the child Movie Clip Created(NewBack) so it works this way...Thanks for all

[Flashcoders] about depth

2007-03-30 Thread Gustavo Duenas
Hi My idea is to set a dinamyc background in the layer 1 of my flash (so far it has 10 layers) the code is as: _root.createEmptyMovieClip(myClip, 0); myclip.loadMovie(back1.jpg); but when It loads the jpg, the jpg is above all the other layers, when I really needed this underneath.

RE: [Flashcoders] about depth

2007-03-30 Thread Merrill, Jason
Duenas Sent: Friday, March 30, 2007 3:58 PM To: Flashcoders mailing list Subject: [Flashcoders] about depth Hi My idea is to set a dinamyc background in the layer 1 of my flash (so far it has 10 layers) the code is as: _root.createEmptyMovieClip(myClip, 0); myclip.loadMovie(back1.jpg); but when

Re: [Flashcoders] about depth

2007-03-30 Thread Carl Welch
I've been having the same exact troubles. I always assumed that if you load an image into a createEmptyMovieClip that the clip will stay at the level you told it to - but that doesn't appear to be the case. On 3/30/07, Gustavo Duenas [EMAIL PROTECTED] wrote: Hi My idea is to set a dinamyc

Re: [Flashcoders] about depth

2007-03-30 Thread Gustavo Duenas
] On Behalf Of Gustavo Duenas Sent: Friday, March 30, 2007 3:58 PM To: Flashcoders mailing list Subject: [Flashcoders] about depth Hi My idea is to set a dinamyc background in the layer 1 of my flash (so far it has 10 layers) the code is as: _root.createEmptyMovieClip(myClip, 0); myclip.loadMovie

RE: [Flashcoders] about depth

2007-03-30 Thread Merrill, Jason
Leadership Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl Welch Sent: Friday, March 30, 2007 4:14 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] about depth I've been having the same

Re: [Flashcoders] about depth

2007-03-30 Thread Pedro Taranto
Development eTools Multimedia Team -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Duenas Sent: Friday, March 30, 2007 3:58 PM To: Flashcoders mailing list Subject: [Flashcoders] about depth Hi My idea is to set a dinamyc background in the layer

Re: [Flashcoders] about depth

2007-03-30 Thread Glen Pike
Sent: Friday, March 30, 2007 3:58 PM To: Flashcoders mailing list Subject: [Flashcoders] about depth Hi My idea is to set a dinamyc background in the layer 1 of my flash (so far it has 10 layers) the code is as: _root.createEmptyMovieClip(myClip, 0); myclip.loadMovie(back1.jpg); but when

RE: [Flashcoders] about depth

2007-03-30 Thread Merrill, Jason
this.empty.swapDepths(this.empty); You're telling a movie clip to swap depths with iteself. So that does nothing. When you say, Above the other layers then yeah, like I said, object manually put on the stage, like things in layers are negative depths. You have to swap THOSE objects above others