Re: [Flashcoders] getURL not working

2006-03-08 Thread Ron Wheeler
Beware that one of the methods (GET or POST) has a server dependent limit on the size of message that can be sent. It is very small usually. (2000 character range) Flash supports both methods except when you are testing. Then it only supports the wrong one. Read getURL docs for more

[Flashcoders] getURL not working

2006-03-07 Thread hidayath q
Hi all, I have doubt in getURL method.Im using a XML in a file which is more than 500 nodes. i will be creating new nodes dynamically in XML and i want to write it to a text file using PHP. im using the getURL method inside press of a button component to transfer the data from flash to PHP.but i

Re: [Flashcoders] getURL not working

2006-03-07 Thread Bob Leisle
getURL() is the wrong way to go for sending data. The Flash XML object has methods specifically for sending and receiving data. Read up on the XML.load(), XML.send() and XML.sendAndLoad() methods. They'll do you right. hth hidayath q wrote: Hi all, I have doubt in getURL method.Im using a

Re: [Flashcoders] getURL not working

2006-03-07 Thread Mick G
seems obvious, but you are adding a GET or POST to the getURL? On 3/8/06, Bob Leisle [EMAIL PROTECTED] wrote: getURL() is the wrong way to go for sending data. The Flash XML object has methods specifically for sending and receiving data. Read up on the XML.load(), XML.send() and