Re: [Flashcoders] how to create rss/data changes on server, how to process in AS3

2009-11-10 Thread Henrik Andersson
Andrew Sinning wrote: The data changes very quickly over time. Either move on to a Socket or a FMS connection, those allows for pushed content and not just pulled content. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] how to create rss/data changes on server, how to process in AS3

2009-11-10 Thread Andrew Sinning
I'm working in Flash, not Flex. I have a php script that takes an incoming query from AS3 and returns the resulting data. The data changes very quickly over time. Currently the script returns _all_ of the available data. I then read in all of the refreshed data into AS3, compare each item

Re: [Flashcoders] how to create rss/data changes on server, how to process in AS3

2009-11-10 Thread Glen Pike
If you are allowed to run PHP scripts which stay running, you can use a PHP socket server that handles the communications... If you google PHP socket server there are loads of examples around. Once you have the PHP script running, you can run your PHP commands and talk to MySQL db's. You

Re: [Flashcoders] how to create rss/data changes on server, how to process in AS3

2009-11-10 Thread Andrew Sinning
Hey Glen, I've used that very approach in the past, but we had some issues with firewalls using the allowed ports for the xml socket object. Using NetConnection and a SharedObject object with Red5 allows us to use http-tunneling as a fall-back. Hmm. Maybe I could get php running on the