Re: [flexcoders] Randomizing Array (from actionscript cookbook3 and other places)

2007-03-27 Thread Patrick Lemiuex
(randomSort); trace(numbers); } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of {reduxdj} Sent: Saturday, March 24, 2007 11:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Randomizing Array (from actionscript cookbook3 and other places) I am getti

RE: [flexcoders] Randomizing Array (from actionscript cookbook3 and other places)

2007-03-26 Thread Alex Harui
coders] Randomizing Array (from actionscript cookbook3 and other places) I am getting an error with the following code TypeError: Error #1006: value is not a function. at com.me.data::PictureProviderXML/::handleComplete() function randomSort(a, b) { return Math.random()>.5 ? -1 : 1; } var numb

RE: [flexcoders] Randomizing Array (from actionscript cookbook3 and other places)

2007-03-25 Thread Gordon Smith
[mailto:[EMAIL PROTECTED] On Behalf Of {reduxdj} Sent: Saturday, March 24, 2007 11:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Randomizing Array (from actionscript cookbook3 and other places) I am getting an error with the following code TypeError: Error #1006: value is not

[flexcoders] Randomizing Array (from actionscript cookbook3 and other places)

2007-03-24 Thread {reduxdj}
I am getting an error with the following code TypeError: Error #1006: value is not a function. at com.me.data::PictureProviderXML/::handleComplete() function randomSort(a, b) { return Math.random()>.5 ? -1 : 1; } var numbers:Array = new Array();