Re: [Flashcoders] ::dk:: getColumnNames not returning all column names

2006-09-18 Thread aaron smith
im guessing your just having issues with how the data is mapped in the result vars. Are you using NetConnection debugger to look at the results, so you know exaclty how the return object is mapped to the data.. IE( recordset.getItemAt(0) );.. see what i mean? On 9/18/06, dnk [EMAIL PROTECTED]

Re: [Flashcoders] Find item in array

2006-09-18 Thread JOR
Steven Sacks | BLITZ wrote: It's the fastest because: Pre-decrementation (--i) is faster than post-decrementation (i--) I don't see why that would be. Both var i=1;i--; and var i=1;--i; compile down to the exact same 8 lines of p-code: _constantPool i _push i 1 _var _push i i

Re: [Flashcoders] ::dk:: getColumnNames not returning all column names

2006-09-18 Thread aaron smith
You can also use commands in PHP to send data to the NetConnection debugger. ?php NetDebug::trace( somedata or some $var ); ? you can use that anywhere in a service method and it will send it to the netconnection debugger. just use those to debug it.. hope that helps.. smith On

RE: [Flashcoders] Find item in array

2006-09-18 Thread Bjorn Schultheiss
Go James! Thanks for doing the due-diligence on this one. I read the thread and it was somethin I had not heard of before. Thanks for clearing it up. Regards, Bjorn Schultheiss -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of JOR Sent: Tuesday, 19

RE: [Flashcoders] Find item in array

2006-09-18 Thread Steven Sacks | BLITZ
There has been extensive testing on this (search the archives) and it's been proven to my satisfaction that pre-decrementated loops are consistently faster than post-decremented loops, and specifically that while (--i -(-1)) is faster than while (i--), less p-code or not. To the point that it's

Re: [Flashcoders] ExternalInterface error

2006-09-18 Thread John VanHorn
read this tech note: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4b687833 if thats not your problem, then try try calling the alert with a setTimeout. i had a problem a little while back with alert, and calling it with setTimeout solved it. also, in your example, you really dont

Re: [Flashcoders] ExternalInterface error

2006-09-18 Thread John VanHorn
i forgot one param above: ExternalInterface.call(setTimeout, alert('some message');, 50); On 9/19/06, John VanHorn [EMAIL PROTECTED] wrote: ExternalInterface.call(setTimeout, alert('some message');); ___ Flashcoders@chattyfig.figleaf.com To

[Flashcoders] Displaying video of user selected from Peoplelist component

2006-09-18 Thread Saloni Shah
Hi, i am developing an application in flash in which i have one avpresence,one peoplelist and one simpleconnect component. Now i want to display the video of the user which will be selected from the peoplelist. that is, the video of user who is selected from the peoplelist should be displayed.

<    1   2