Re: [flexcoders] Hello world iOS example

2011-11-01 Thread Douglas Knudsen
no, you can debug on the device. Here's a great fully detailed post on how to set your stuff up for iOS http://www.tricedesigns.com/2011/09/15/air-on-devices-ios-workflow/ Douglas Knudsen http://www.cubicleman.com this is my signature, like it? 2011/10/30 Csomák Gábor csom...@gmail.com **

Re: [flexcoders] Hello world iOS example

2011-11-01 Thread Csomák Gábor
oh, sorry for the misled.. i meant: you can't debug on windows.. (is that right?) On Tue, Nov 1, 2011 at 1:38 PM, Douglas Knudsen douglasknud...@gmail.comwrote: no, you can debug on the device. Here's a great fully detailed post on how to set your stuff up for iOS

[flexcoders] Re: Flex HTTP Service Charset

2011-11-01 Thread valdhor
I'm sorry, I couldn't quite understand the error you are getting. Could you copy/paste the exact error you get as well as the XML String that is returned. --- In flexcoders@yahoogroups.com, isa_loyer isa_loyer@... wrote: Dear Flexer, I'm a french user, and I have some problem with

[flexcoders] HTTPService post to return an image?

2011-11-01 Thread method_air
Is it possible to return an image object using HTTPService? The fault method executes when I attempt to do this: var http:HTTPService = new HTTPService(); http.url = myScript.ashx; http.method = POST; http.resultFormat = object; Should URLLoader be used instead? Cheers, Philip

Re: [flexcoders] HTTPService post to return an image?

2011-11-01 Thread claudiu ursica
HTTPService cannot handle binary data and images fall under this category. U have top go URLLoader. C From: method_air loudj...@hotmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, November 1, 2011 7:03 PM Subject: [flexcoders] HTTPService post to return

[flexcoders] Error comparing bitmapData

2011-11-01 Thread method_air
I'm getting this error when comparing (what appears to be) two valid BitmapData objects, any ideas why? Type Coercion failed: cannot convert -3 to flash.display.BitmapData. code: var diff:BitmapData = BitmapData(this._editorBitmapData.compare(this._iceBitmapData));