RE: [Flashcoders] rotate along a path using sine curve

2011-05-26 Thread allandt bik-elliott (thefieldcomic.com)
Hey Cor What else would you need? On May 26, 2011 9:20 PM, "Cor" wrote: > Allandt, > > Can you send me the necessary source so I can look into it? > > Regards, > Cor van Dooren > > > -Original Message- > From: flashcoders-boun...@chattyfig.figleaf.com > [mailto:flashcoders-boun...@chattyf

Re: [Flashcoders] trying to get data from list component

2011-05-26 Thread Karl DeSaulniers
Try this... On May 26, 2011, at 3:27 PM, DONALD TALCOTT wrote: function submitHandler(e:MouseEvent) { var myArr:Array = topskillsfield.selectedIndices; var selectedTopSkills:String = ""; for(var i:int = 0; i < myArr.length; i++) {

[Flashcoders] Touch Events

2011-05-26 Thread Paul Andrews
I've been using Flash CS5.5 targeting the IOS platform. I have been writing a small application that relies on things being dragged around - can't really say much more right now. I need to know when dragging starts, so on the thing that's being dragged I add a listener for TouchEvent.TOUCH_BE

Re: [Flashcoders] trying to get data from list component

2011-05-26 Thread DONALD TALCOTT
function submitHandler(e:MouseEvent) { var myArr:Array = topskillsfield.selectedIndices; var selectedTopSkills:String = ""; for(var i:int = 0; i < myArr.length; i++) { var j:int = myArr[i]; if(selectedTopSkills

RE: [Flashcoders] trying to get data from list component

2011-05-26 Thread Creighton, Gerry
Check out this page to get a handle... http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/URLVariables.html -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of DONALD TALCOTT Sent: T

Re: [Flashcoders] trying to get data from list component

2011-05-26 Thread Karl DeSaulniers
.selectedIndex ?? On May 26, 2011, at 2:36 PM, DONALD TALCOTT wrote: .selectedIndices Karl DeSaulniers Design Drumm http://designdrumm.com ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinf

[Flashcoders] trying to get data from list component

2011-05-26 Thread DONALD TALCOTT
I have a list component (multiple selection) on the stage. I am trying to send the selections from the list to sql database via php. I'm using the script below to convert the data selected from the list to a string. The trace works as designed. What do I send in my variables to php script? "tops

[Flashcoders] rotate along a path using sine curve

2011-05-26 Thread allandt bik-elliott (thefieldcomic.com)
hey folks i'm trying to get some objects to move along a sine curve on the z axis but i'm having a bit of trouble with the rotationY - i'd like the objects to align along the path so they're always facing 90 degress to the direction they're travelling but they seem to want to keep rotating in circ

Re: [Flashcoders] Re: Flushing Socket data when TCP-connection suspends and then resumes

2011-05-26 Thread Alexander Farber
I'm using a poll() in my server (in Perl, but it could be C, and it could be select() instead of poll() - doesn't matter). When poll() reported there is incoming data by POLLIN event, I was calling my subroutine to read incoming data. But I don't want to read 2 bytes and then later (on next poll(