Assuming you mean Christian's library for ss3, I've looked at removing AIR dependencies and found a couple of issues: The main thing is that the library uses a File object which will need to be changed to a FileReference. It uses File because is provides uploading via S3's RESTful API, and which flash player doesn't support PUT. S3 does provide an alternate method using POST. So the AS3 library would need to be altered to use POST with FileReference instead.
And of course to keep the private key secure, you'll probably need a backend to generate yours authentications. Both of which are are thinks I'd like to get to at some stage, but couldn't say when. Hope this helps, Ian --- In [email protected], "artur_desig2dev" <[EMAIL PROTECTED]> wrote: > > greetings..oh wise list. > my 1st post. > > im trying to find a way ( a class/library ) to > BATCH upload from FLEX using fileReference() to Amazon S3. > > is there some code/samples one is kind enough to share that will > automatically via Keys - generate and attach 64-based policies, > signatures, etc. > > and would this be easier to do in PHP? > if so, why? and how? > > any advice, direction, and code sharing would be immense. > > > thanks! > > artur >

