RE: [Flashcoders] Exclude classes

2008-06-18 Thread Sunil Jolly
To: Flash Coders List Subject: Re: [Flashcoders] Exclude classes In AS3, there is no exclude.xml. Whether this was an oversight or, for some reason, not possible, you cannot do this in AS3. You can, however, use the Bridge pattern. http://www.stevensacks.net/2008/01/23/update-gaia-bridge

Re: [Flashcoders] Exclude classes

2008-06-17 Thread Sidney de Koning
Is this what your after? http://www.bit-101.com/blog/?p=941 http://www.martijndevisser.com/blog/2004/enable-disable-_excludexml-files/ Also try this: http://www.google.com/search?source=ighl=enrlz==q=excluding+classes+as3btnG=Google+Search Sid On Jun 17, 2008, at 1:01 PM, Viktor Hesselbom

Re: [Flashcoders] Exclude classes

2008-06-17 Thread Ian Thomas
If you aren't using a class, and don't reference it anywhere in your code, it won't be compiled in. Most 'built-in' classes (i.e. classes beginning with flash.*) are actually implemented within the Flash Player itself, so won't be compiled into your .swf anyway. I'd imagine that's true of

Re: [Flashcoders] Exclude classes

2008-06-17 Thread allandt bik-elliott (thefieldcomic.com)
could you get rid of the main classpath and use a subset of the classes in a separate classpath would take time to sift through them all if it's possible On Tue, Jun 17, 2008 at 12:01 PM, Viktor Hesselbom [EMAIL PROTECTED] wrote: Hi, Does anyone know if there's a way to exclude certain

Re: [Flashcoders] Exclude classes

2008-06-17 Thread Steven Sacks
In AS3, there is no exclude.xml. Whether this was an oversight or, for some reason, not possible, you cannot do this in AS3. You can, however, use the Bridge pattern. http://www.stevensacks.net/2008/01/23/update-gaia-bridge-pattern-api/ In a nutshell, you: 1. Make an Interface for the