[flexcoders] Re: Namespaces/packages problem

2009-04-17 Thread Tim Hoff
Hi, Usually you would import the class: import com.someframework.ITestClass; and then implement like: public class TestClass implements ITestClass HTH -TH --- In flexcoders@yahoogroups.com, DannyT danmo...@... wrote: I'm trying to create a cairngorm version of my application, as such I've

Re: [flexcoders] Re: Namespaces/packages problem

2009-04-17 Thread DannyT
Thanks tim but unfortunately that doesnt help in this instance 2009/4/18 Tim Hoff timh...@aol.com Hi, Usually you would import the class: * import * com.someframework.ITestClass; and then implement like: * public * *class* TestClass *implements* ITestClass HTH -TH --- In

Re: [flexcoders] Re: Namespaces/packages problem

2009-04-17 Thread DannyT
Actually Tim, that approach did make a difference in my main.mxml so this works: import com.someframework.ITestClass; import com.myproject.someframework.TestClass; var test:ITestClass = new TestClass(); whereas this doesn't: var test:com.someframework.ITestClass = new