[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread djepyon
Registering the VO with flash.net.registerClassAlias should be all you need to do. import flash.net.registerClassAlias import com.myproject.vo.myVO registerClassAlias(com.myproject.vo.myVO,myVO); --- In flexcoders@yahoogroups.com, thelordsince1984 lore...@... wrote: hi everybody, i've

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, djepyon i...@... wrote: Registering the VO with flash.net.registerClassAlias should be all you need to do. import flash.net.registerClassAlias import com.myproject.vo.myVO registerClassAlias(com.myproject.vo.myVO,myVO); --- In

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread djepyon
Just make sure you register it before you make any LocalConnection calls. It could be on application init or if you have a bridge class housing the LocalConnection functionality register them in its constructor. --- In flexcoders@yahoogroups.com, thelordsince1984 lore...@... wrote: --- In

[flexcoders] Re: Shared Object - Value Object - How use RegisterClassAlias?

2009-02-10 Thread thelordsince1984
--- In flexcoders@yahoogroups.com, djepyon i...@... wrote: Just make sure you register it before you make any LocalConnection calls. It could be on application init or if you have a bridge class housing the LocalConnection functionality register them in its constructor. --- In