vote up 0 vote down star

Any existing Flash SWF compilers that can understand directives like #IF #ENDIF, etc?

Some SWF Compilers: (Hopefuls)

flag

2 Answers

vote up 2 vote down check

I've used mtasc, and it does not support this kind of conditional compilation. However, it looks like Flex 3's mxmlc has support for this via the -define command line option. Also, haXe does exactly what you want.

link|flag
Excellent! for the haXe directives docs! – Jeremy Rudd Jan 11 at 6:18
vote up 1 vote down

The MXMLC compiler also supports conditional compilation, though it is pretty primitive and strangely-implemented.

They didn't implement 'ifdef'. Instead we just get the value after the comma from the assignment. While this works fine for string insertion, it's pretty confusing for booleans.

The following example would only compile the 'release' implementation of the method:

-define=CONFIG::debugging,false -define=CONFIG::release,true

Then in your source code:

CONFIG::debugging
private function configure():void {
	// set up for debugging
}

CONFIG::release
private function configure():void {
	// set up for release
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.