Re: [flexcoders] BrokenImageSkin

2011-08-18 Thread jitendra jain
Well, I don't want to extend it now as I have moved so far. If i do so, then i have to change the same thing at many places.. I understand what you want to say.. I had done this easily with Spark component but the issue is with the Halo component.. Thanks, with Regards, Jitendra Jain

Re: [flexcoders] SQLite Insert Statements in a transaction

2011-08-18 Thread Johannes Nel
probably, but the environment is still single threaded. We tend to open our connections synchronously and then manage the number of inserts we do in a given time. On Wed, Aug 17, 2011 at 9:28 AM, Tac Tacelosky tac...@gmail.com wrote: ** I should have clarified that my database has been

RE: [flexcoders] SQLite Insert Statements in a transaction

2011-08-18 Thread Bill Franklin
You're not the only one that has had problem with Async transactions. They should be possible, but the statement doesn't get released until the execution is completewhich is problematic. Your best bet for this is to use a synchronous connection. Yes, that sucks for user experience if you

Re: [flexcoders] Updating mobile profiles

2011-08-18 Thread Csomák Gábor
go to edit profiles, you add your screen resolution, size and platform (android), and it will be on the list On Wed, Aug 17, 2011 at 7:22 PM, Amy amyblankens...@bellsouth.net wrote: Hi, all; I have an HTC Inspire, and it is not on my list of mobile profiles. I assume that new mobile

[flexcoders] Re: Updating mobile profiles

2011-08-18 Thread Amy
Do they not have any sort of central repository, so EVERY developer doesn't have to do this? It's not like there are that many phones in the world that are capable of running AIR. --- In flexcoders@yahoogroups.com, Csomák Gábor csomakk@... wrote: go to edit profiles, you add your screen

[flexcoders] BitmapData Argument: Error #1063: Arg count mismatch on object util.copy

2011-08-18 Thread method_air
I'm creating a deep copy of an object which has a BitmapData property using ObjectUtil.copy and 'registerClassAlias', eg: registerClassAlias(flash.display.BitmapData, BitmapData); ...but I'm getting the error: ArgumentError: Error #1063: Argument count mismatch on flash.display::BitmapData().

Re: [flexcoders] BitmapData Argument: Error #1063: Arg count mismatch on object util.copy

2011-08-18 Thread Alex Harui
You can implement IExternalizable on the object that references the bitmapdata On 8/18/11 11:57 AM, method_air loudj...@hotmail.com wrote: I'm creating a deep copy of an object which has a BitmapData property using ObjectUtil.copy and 'registerClassAlias', eg:

RE: [flexcoders] BitmapData Argument: Error #1063: Arg count mismatch on object util.copy

2011-08-18 Thread Philip Smith
How would I go about implementing that? eg: public class PageVO implements IExternalizable { public function get bitmapData():BitmapData { return _bitmapData; } public function set bitmapData(value:BitmapData):void { _bitmapData =

Re: [flexcoders] BitmapData Argument: Error #1063: Arg count mismatch on object util.copy

2011-08-18 Thread Alex Harui
Probably something like: public function writeExternal(output:IDataOutput):void { output.writeInt(_bitmapData.width); output.writeInt(_bitmapData.height); output.writeBytes(_bitmapData.getPixels(new Rectangle(0, 0, _bitmapData.width,

Re: [flexcoders] Re: Updating mobile profiles

2011-08-18 Thread Csomák Gábor
*your screen res is 480x800 which is the same, as HTC desire's, what is in that list, so you don't have to do anything, just select that.* yes, in fact, there are many devices. there are 57 certified Android devices (http://www.adobe.com/flashplatform/certified_devices/), and a lot more that

[flexcoders] Flex 4 CSS

2011-08-18 Thread Davidson, Jerry
Alex, you might be Flex harUI in the other forum. But I'm going to ask the question here as no one there seems to know the answer. I'm trying to convert a Flex 3 application to Flex 4. I find CSS isn't working under Flex 4 as it did before. What I want to do is set a back ground image on a

[flexcoders] Client IP Address and Client Computer Name

2011-08-18 Thread K.C Baruri
Dear All, I have published a Flex project in IIS  which is wcf service oriented. Now,   I am facing a problem to catch IP address from Flex(Action Script) .  From wcf can retrieve easily , but I want to take it from Flex. Can you please help me regarding this? Thanks Kumaresh