[Flashcoders] overwriting a class

2007-01-16 Thread BlackMail
Hi, I am looking for advice about swapping classes of the same name but using different methods. Let's consider three classes: class SomeClass { public function meth() { trace(meth of skin SomeClass VERSION 0); } } // class SomeClass { public

Re: [Flashcoders] overwriting a class

2007-01-16 Thread Thomas Fowler
Yes, but it's actually, overRIDING ;) - Original Message - From: Merrill, Jason [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Tuesday, January 16, 2007 12:32 PM Subject: RE: [Flashcoders] overwriting a class Flash allows deleting classes

Re: [Flashcoders] overwriting a class

2007-01-16 Thread slangeberg
Effectiveness -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of BlackMail Sent: Tuesday, January 16, 2007 1:05 PM To: flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] overwriting a class Hi, I am looking for advice about swapping classes of the same name

Re: [Flashcoders] overwriting a class

2007-01-16 Thread Hans Wichman
Hi, because in some large systems you have to load a ton of swfs, classes get updated in ways you did not forsee, and thus you have different versions of the same class hanging around, if you did not think about preventing this upfront. That is different from an architecture in which you wish to

RE: [Flashcoders] overwriting a class

2007-01-16 Thread Merrill, Jason
because in some large systems you have to load a ton of swfs, classes get updated in ways you did not forsee, and thus you have different versions of the same class hanging around, That's why I don't have tons of swfs in my projects, at least not ones that all use the same class. Why would you