actionscript-1

How can you create an HTTP POST request in ActionScript 1?

I have a text field that I'd like to support an arbitrary amount of text in. Right now the text is sent through an XML object request using GET. I'd like to use POST to send the data back to the server. Are there any good options in ActionScript 1? ...

Struggling with flashlite 1.0 Strings

I'm using eval to simulate arrays. Setting values works fine for integers, but seems to completely fail for strings. eval("array" add i-1) = arrayVal; // fails for string values Getting values seems to work perfectly fine either way. arrayVal = eval("array" add i-1); // works fine for strings and ints Is there any way around this?...