[flexcoders] Does Flex 4 SDK require Flash Player 10.1?

2010-05-08 Thread dorkie dork from dorktown
I'm using Flash Player 10,0,45,2 and the project is not loading completely. Does Flex 4 SDK require FP 10.1? It loads fine if I use that version. JP

Re: [flexcoders] Cast Object into a custom class

2010-05-08 Thread Brendan Meutzner
I don't believe it's possible. However, if your objects "match", then perform a for .. in loop... you don't need to copy them individually. Eg. Person.as package { [Bindable] public class Person { public function Person() { } public var personName:String; public var personAddress:St

[flexcoders] Re: using TextArea as ItemRenderer for DataGridColumn

2010-05-08 Thread mitek17
I got the the message, we have to move to Flex4 & Spark. Still, what about Flex 3 & Halo? If it is an abandoned project, just announce it and we will move on. --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > I think I'd try the Spark DataGrid example from my blog. You might be able

[flexcoders] Re: Matrix Transform does not update Container's properties

2010-05-08 Thread mitek17
How do we know what is supported and what is not? I am very excited that Flex 4 performance is improved, what about the functionality? I just gave a quick run for rotation in Flex 4 - it is still buggy, after a couple of rotations it goes off the screen. Is it supported there? --- In fle

[flexcoders] Cast Object into a custom class

2010-05-08 Thread anagnost68
I have a class defined called Person that has a name and address. If I have an Object with a name property and address property. var object:Object = new Object(); object.name = "name"; object.address = "address"; I'd like to be able to do this: Person person = object as Person; But, it gen

[flexcoders] Force CSS compilation (SDK 4 release "feature").

2010-05-08 Thread Oleg Sivokon
Hi, we were compiling against SDK 4 beta 2, and now are trying to move to the release SDK build. The problem is that in beta CSS styles would compile even though they aren't used, now the compiler tries to be smart, when it's less needed, and it doesn't compile the stiles... * sigh * I'm getting wa

[flexcoders] Re: Data paging error: Item requested is not available. A request for the item.....

2010-05-08 Thread azona26
Thanks. I ended up using AsyncListView to handle the pending data. However, I have run into something odd. If I loop thru the array collection that the AsyncListView is wrapping, it traces out the length to be the full length (number of records) on the server, rather than what it has actually f

[flexcoders] Re: DataGrid in a Spark Window Bug

2010-05-08 Thread Jeff
Alex, Did some research and this type of issue has come a lot. I addressed by putting in the -keep-all-type-sectors = true compiler argument and now all is well. Jeff --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > So this is an AIR app? Are you using mx:Window or s:Window? Or ha

[flexcoders] Re: flex/coldfusion paypal example

2010-05-08 Thread ZIONIST
Anyone out there with a solution of integrating flex and paypal? please help. thanks

Re: [flexcoders] remote class alias

2010-05-08 Thread Oleg Sivokon
Hello. Class alias isn't connected to server, it tells the Flash Player or Air runtime which class it should create when deserializing the chunk of data possibly serialized using AMF format. Essentially [RemoteClass] is a convenience feature. Using it you don't need to remember to add or remove th

[flexcoders] remote class alias

2010-05-08 Thread hworke
Hi in Flex one can easily define the remote class alias like the following: package samples.portfolio { [RemoteClass(alias="flex.samples.marketdata.Stock")] [Bindable] public class Stock { public var symbol:String; public

[flexcoders] BlazeDS conversion/transmission of numerics -- value-based rather than type-based?

2010-05-08 Thread William Mitchell
The chapter on Data Serialization in the BlazeDS Developer Guide has tables that show, for example, an AS Number deserializes to java.lang.Double, and a Java double passed to AS is converted to a Number, but that seems to be wrong. In fact the conversions seem to be based on the values, n