Thanks. For a minute I felt hopeless. Nice work Nicola. Respect.
Nikos Kastellanos a écrit : > I have a project and I am considering using HAXE but I still have some > question about what I can do , and what I cant do with haxe. > > I would be thankful if somebody could help me. > > > -Does HAXE, allow code injection? > > We already have the UI in a fla. Id like to use flashdevelop and haxe > projects doesnt seems to allow injection. If not, is there any workaround? haXe supports code injection just like MTASC. Don't forget to use -swf-lib (SWF Library selection in haxeFD plugin) to select your ui.swf > -What the debug option is for? > > SWFs compiled with the debug option are bigger, but they dont seem to > do anything when I drop them on the debug version of flash player. > > Those SWF dont even have the AllowDebug tag. Whatever this options > does, is it flash9 only? I assume that for flash8, it should create an > SWD, unless I have completely misunderstood its purpose. In Flash9, it will include debug informations so you will get file+line numbers when an exception occur. In Flash8 it will maintain a stack array that can be accessed through haxe.Stack.callStack() and haxe.Stack.exceptionStack(). It will also display uncaught exceptions when they occur (using default trace() output). If you want to use the debugger, it's possible with a Flash9 project by compiling with -D fdb . There is no debugger support for Flash8- (= no SWD output). Hope that helps, Nicolas /listinfo/osflash_osflash.org _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
