[Flashcoders] Re: TLF: Questions... My situation... Your thoughts?

2011-04-15 Thread Micky Hulse
Oh, one last question: 4. What exactly is that SWZ file? I have read that it speeds up the loading of your SWF via caching this file... It appears to be related to TLF text. I dunno... I think I would avoid TLF for most of my projects if I had to lug around an additional SWZ file. Then again, m

[Flashcoders] TLF: Questions... My situation... Your thoughts?

2011-04-15 Thread Micky Hulse
Hello, About a year ago, for my work, I built a simple SWF app that loads two other SWFs. Today, a client sent us two AS3/FP10 SWF files that would not load into my app. I think I have narrowed the problem down to the TLF text. I mostly use CS3 (not by choice) so TLF text is new to me... I do h

Re: [Flashcoders] Archives?

2011-04-15 Thread Micky Hulse
I was sent the archived message off-list. Thanks Paul! Have a great day all. Happy coding. Cheers, Micky ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Archives?

2011-04-15 Thread Micky Hulse
On Fri, Apr 15, 2011 at 11:32 AM, Paul Andrews wrote: > What was the thread about? > Call method by name: A few questions... > How to utilize this code: public static const: Need    help understanding... Hi Paul! Thanks so much for the help! The thread was about how to test if loaded asset is a

Re: [Flashcoders] Archives?

2011-04-15 Thread Paul Andrews
On 15/04/2011 19:06, Micky Hulse wrote: Hello, Sorry to bug the list with this... When I go to visit the list archives, it looks like the most recent archive is from 2007. Maybe I am missing something? Anyone know where I can go to search through more recent archives? I would like to find a t

[Flashcoders] Archives?

2011-04-15 Thread Micky Hulse
Hello, Sorry to bug the list with this... When I go to visit the list archives, it looks like the most recent archive is from 2007. Maybe I am missing something? Anyone know where I can go to search through more recent archives? I would like to find a thread I started from about a year ago... I

[Flashcoders] Re: [SOLVED] facebook actionscript graph api - post to "/feed"

2011-04-15 Thread allandt bik-elliott (thefieldcomic.com)
okay i got it it should be the following: Facebook.ui("apprequests", { message:"select some friends" }, handleAppRequest, "iframe"); private function handleAppRequest(result:Object):void { for (var i:int = 0; i < result.request_ids.length; i++) { var requestID:String =

[Flashcoders] Re: [SOLVED] facebook actionscript graph api - post to "/feed"

2011-04-15 Thread allandt bik-elliott (thefieldcomic.com)
the documentation seems to say that it can: http://developers.facebook.com/docs/reference/dialogs/requests/ "The content of a request object looks like this and should be accessed using the signed app secret:" but it doesn't actual

[Flashcoders] Re: [SOLVED] facebook actionscript graph api - post to "/feed"

2011-04-15 Thread allandt bik-elliott (thefieldcomic.com)
Hey Do you know if it's possible to retrieve user ids from the request_ids array returned by the Facebook.ui("apprequests", ) dialogue? I've tried the following: Facebook.ui("apprequests", { message:"select some friends" }, handleAppRequest, "iframe"); which allows the selection of frie

[Flashcoders] [SOLVED] facebook actionscript graph api - post to "/feed"

2011-04-15 Thread allandt bik-elliott (thefieldcomic.com)
hey guys found the problem(s) - i hadn't added the access_token to the params and it didn't like the actions{} object (although Facebook.ui was quite happy to accept it) wierd but true thanks for the help patrick best a On 14 April 2011 22:27, Patrick Matte wrote: > I can only suggest you ju