[Flashcoders] createEmptyMovieClip path

2006-04-07 Thread hbruyere
Hi, I don't understand what I get when running this: for (var i = 0; i < NumPages_v; i ++) { var NewMC_mc:MovieClip = ContentContainer_mc.createEmptyMovieC

Re: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread Boon Chew
At a glance, I caught at least one problem, not sure if they are others that could cause your problem. var NewMC_mc:MovieClip = ContentContainer_mc.createEmptyMovieClip("container"+i, getNextHighestDepth()); You need to call getNextHighestDepth() on your ContentContainer_mc, like so: var NewMC

Re: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread Boon Chew
At a glance, I caught at least one problem, not sure if they are others that could cause your problem. var NewMC_mc:MovieClip = ContentContainer_mc.createEmptyMovieClip("container"+i, getNextHighestDepth()); You need to call getNextHighestDepth() on your ContentContainer_mc, like so: var NewMC

RE: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread hbruyere
No didn't solve my problem. But thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boon Chew Sent: Friday, April 07, 2006 11:38 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] createEmptyMovieClip path At a glance, I caught at leas

RE: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread Boon Chew
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boon Chew Sent: Friday, April 07, 2006 11:38 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] createEmptyMovieClip path At a glance, I caught at least one problem, not sure if they are others that could

RE: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread hbruyere
ent: Saturday, April 08, 2006 12:17 AM To: Flashcoders mailing list Subject: RE: [Flashcoders] createEmptyMovieClip path Did a quick test, works fine. Maybe compare the solution and figure out where your problem is? (I have an empty movieclip instance on stage called mcEmpty, did you name you

RE: [Flashcoders] createEmptyMovieClip path

2006-04-07 Thread Boon Chew
I'm going to solve this. I will let you know. Thanks again, in the meantime if you any other idea... Hugues. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Boon Chew Sent: Saturday, April 08, 2006 12:17 AM To: Flashcoders mailing list Subject: RE

Re: [Flashcoders] createEmptyMovieClip path

2006-04-08 Thread Weldon MacDonald
t; > Hugues. > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Boon Chew > Sent: Saturday, April 08, 2006 12:17 AM > To: Flashcoders mailing list > Subject: RE: [Flashcoders] createEmptyMovieClip path > > Did a quick test