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