simongregory / actionscript3-tmbundle

ActionScript 3 TextMate Bundle
http://blog.simongregory.com
MIT License
118 stars 46 forks source link

trace not working in textmate 2.0 (9307) #35

Closed abeazam closed 11 years ago

abeazam commented 11 years ago

I have added the flex sdk to TM_FLEX_PATH and use the native ActionScript 3 bundle that comes with textmate.

i added the mm.cfg and the flash log file is created.

The traces do not appear in the log file. The time stamp does seem to change though. so it indicates that the mm.cfg did work.

it looks like the mxmlc option does not have the debug=true parameter

simongregory commented 11 years ago

Try a compiler config file with the same name as your main class but with -config.xml suffixed (mxmlc will pick it by default), it'll need the following contents:

<flex-config>
  <compiler>
    <debug>true</debug>
 </compiler>
</flex-config>
abeazam commented 11 years ago

Resolved....worked a treat

thx