[flexcoders] compiling error because a namespace (maven + flex mojos)

2009-04-09 Thread Fernando Wermus
I am compiling a mxml which has a namespace (Caingorm one). I got an compiling exception because it couldnt resolve the namespace. How do I solve this using mxmlc? Actually I am using flex mojos plugin (for maven) -- Fernando Wermus. www.linkedin.com/in/fernandowermus http://mientretiempo.blogsp

Re: [flexcoders] compiling error

2007-04-24 Thread Manish Jethani
You have to write a separate class with these methods (onStatus, etc.) declared public. Then you assign an instance of the class to the NetConnection's client property. netConnection.client = new MyNetConnectionClient(); Your MyNetConnectionClient contains the methods that'll be called by the s

[flexcoders] compiling error

2007-04-23 Thread arokyzxc
i wrote these codes following fms example tutorial,but it doesn't get through in compiling time. var client_nc :NetConnection = new NetConnection(); client_nc.onStatus = function(info) { result.text = "Level: " + info.level + " Code: " + i