Re: [Flashcoders] addChild and Array problem

2009-11-25 Thread nelson ramirez
It's probably something w/ your loop. Please post all your code On Tue, Nov 24, 2009 at 7:32 AM, Greg Ligierko gre...@l-d5.com wrote: I have no answer to the problem, but maybe recreating the shuffled array manually could help. I mean creating a new array and filling its items with a for loop

Re: [Flashcoders] addChild and Array problem

2009-11-24 Thread Greg Ligierko
I have no answer to the problem, but maybe recreating the shuffled array manually could help. I mean creating a new array and filling its items with a for loop + one extra item. This is not directly related but I experienced onece wrong sorting when using sortOn() method. I do not trust

[Flashcoders] addChild and Array problem

2009-11-23 Thread Sajid Saiyed
Hi, Not sure if this is what is causing my problem. I have an array called __viewsArray Then I created 3 new movieclips which I added to the Array. Like this: __viewsArray = new Array(); __view1MC = new MovieClip(); __view2MC = new MovieClip(); __view3MC = new MovieClip(); addChild(__view1MC);