Archive for the ‘mxmlc - flex sdk’ Category

setting breakpoints, debug swf via console / terminal /prompt with fdb

Thursday, August 13th, 2009

Finally found a nice article that explains how flex sdk's fdb command line debug tool works :) Reminder for myself: http://installingcats.com/2007/12/07/how-to-use-command-line-debugger-fdb-to-debug-flex-flash-on-mac-os-x/ Got into it for a moment ----> this will be a messy post :) found some extra info / commands within fdb now: New to fdb? Do 'tutorial' for basic info. List of fdb commands: bt ...

flex sdk compile time variables, switches and resources Hacks

Tuesday, December 9th, 2008

Super nice article on how to create a compiletime conditional switch for for ex. calling an alternate version of the same function or adding compiletime var-values at  with the flex sdk command line http://code.awenmedia.com/node/34 Code examples from his site: ADDING COMPILETIME VARS: mxmlc MyConfigClass.as -define+=CONFIG::someSetting,true or ...-define+=CONFIG::myString,"'Hello!'" -define+=CONFIG::myNumber,"7" for someSetting the AS3 class would be: package { public class ...