RE: [flexcoders] Unresolved symbol, 'NameSymbol', required by __Packages.com.myComponent

2005-11-17 Thread Roger Gonzalez
Keep in mind that classes and symbols occupy the same "namespace" in AS2, so you may need to rename your class to be different than the symbol you are embedding. Where is SimpleSquare coming from? Is it a Flash asset? It almost looks like you're trying to embed a component, which isn't correct.

RE: [flexcoders] Unresolved symbol, 'NameSymbol', required by __Packages.com.myComponent

2005-11-17 Thread Oscar . Cortes
I am afraid I am not quite following your idea. SimpleSquare.as is a programmatic skin file. Something like class SimpleSquare extends UIObject { static var symbolName:String = "SimpleSquare"; .. ... .. it is nothing fancy. I compiled it and got a SimpleSquare.swc, which is sit

RE: [flexcoders] Unresolved symbol, 'NameSymbol', required by __Packages.com.myComponent

2005-11-17 Thread Roger Gonzalez
ahoogroups.com > Subject: RE: [flexcoders] Unresolved symbol, 'NameSymbol', > required by __Packages.com.myComponent > > > I am afraid I am not quite following your idea. SimpleSquare.as is a > programmatic skin file. Something like > > > class Simpl