Hi, I'm Trevor Hartman. I build stuff out of code. See my work at http://devth.com
code + design + music + junk + inspiration
To avoid charset issues when pulling from a MySQL database using AMFPHP:
$gateway->setCharsetHandler("mbstring","UTF-8","UTF-8"); This setting worked best for me, but for more in depth info, check out:
http://www.sephiroth.it/tutorials/flashPHP/amfphp_iconv/page003.php
In an attempt to save you hours of painful debugging and Adobe-hating: if you're wanting to use the excellent AS3 bulk-loader lib to load assets from S3, follow these steps. Especially step 2.
var context:LoaderContext = new LoaderContext(true, ApplicationDomain.currentDomain);
var loader:BulkLoader = new BulkLoader("loadmystuffplskthxbye");
loader.add( someS3Url, { context: context } ); // WIN