Re: [Flashcoders] Load/export Symbol in ActionScript

2005-11-30 Thread Ian Thomas
I couldn't remember - but having had a trawl it seems it was Peter Hall (see http://www.peterjoel.com/blog) - but I've been unable to find the original article. Basically as each class is loaded it gets assigned a symbol name __Packages.class path. Ian On 11/30/05, de-hack SWF [EMAIL PROTECTED]

Re: [Flashcoders] Load/export Symbol in ActionScript

2005-11-29 Thread de-hack SWF
Creating a fake named linkage'd run-time symbol is done another way. But I don't remember it by hearth. Maybe someone else can feed on this one. Yes. Thanks. You identify my problem. This is the point that I want to know. Anyone any ideas? :-) Juguang

Re: [Flashcoders] Load/export Symbol in ActionScript

2005-11-29 Thread Ian Thomas
Hi Juguang, I posted the following about a week ago - I think it's what you're after: -- Can't remember where I got this solution - definitely not mine - but here's how to create a MovieClip-derived class that doesn't need an associated library symbol:

Re: [Flashcoders] Load/export Symbol in ActionScript

2005-11-29 Thread de-hack SWF
Hi Ian, thanks! But I have read such code many times and in many forum. However, my this piece of stupid code just does now work for me. (But it runs well, if I manually add a symbol 'RMC', in Flash) Can someone test on your side and tell me if it is working in your environment? Big thanks!! -

Re: [Flashcoders] Load/export Symbol in ActionScript

2005-11-29 Thread Ian Thomas
Hi Juguang, Try replacing the line: public static var symbolName:String=RMC; with: public static var symbolName:String=__Packages.RMC; HTH, Ian On 11/29/05, de-hack SWF [EMAIL PROTECTED] wrote: Hi Ian, thanks! But I have read such code many times and in many forum. However, my this

Re: [Flashcoders] Load/export Symbol in ActionScript

2005-11-29 Thread de-hack SWF
On 11/30/05, Ian Thomas [EMAIL PROTECTED] wrote: Hi Juguang, Try replacing the line: public static var symbolName:String=RMC; with: public static var symbolName:String=__Packages.RMC; HTH, YTH! (Yes, that helps) My week-lasting exhaust is breezed away. Many thanks. :-) By the way,

[Flashcoders] Load/export Symbol in ActionScript

2005-11-28 Thread de-hack SWF
Dear all, I am new to flash programming, so my question may be silly. In the first frame of new flash document, I have the code like this. trace(hello); var rmc = _root.attachMovie(RMCSymbol, rmc_1, 2); trace(rmc); RMC(rmc).init(100, 200); Where RMC is a subclass of MovieClip. I created an

RE: [Flashcoders] Load/export Symbol in ActionScript

2005-11-28 Thread Frédéric v . Bochmann
: [Flashcoders] Load/export Symbol in ActionScript Dear all, I am new to flash programming, so my question may be silly. In the first frame of new flash document, I have the code like this. trace(hello); var rmc = _root.attachMovie(RMCSymbol, rmc_1, 2); trace(rmc); RMC(rmc).init(100, 200); Where