Created
July 17, 2012 18:27
-
-
Save newtriks/3131123 to your computer and use it in GitHub Desktop.
SublimeText2 MXMLC compile and run buildfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cmd": ["/Users/newtriks/Library/Plugins/sdks/flex_sdk_4.6.0.23201B/bin/mxmlc", | |
"$file", | |
"-static-link-runtime-shared-libraries=true"], | |
"file_regex": "(.*)[(](\\d+)[)]:(?: col: (?:\\d+))? *Error: (.*)", | |
"selector": "source.actionscript", | |
"variants": [ | |
{ "cmd": ["open ${file_path}/${file_base_name}.swf"], | |
"shell": true, | |
"name": "Run" | |
}] | |
} |
Hello Newtriks,
Is there a way to make the compiled SWF go to a folder within the parent folder?
My .as files are in "src" and I would like to published SWF to go to a "bin" folder in the same level.
Also, I got an error while trying to run the SWF by pressing cmd+shift+B - but it worked if I remove "${file_path}/".
Thanks,
Antonio
Hi Antonio,
Try adding "-load-config+=${file_path}/../config.xml"
to the cmd:
array. Then add a config.xml file to your project stipulating an output target: <output>/Users/newtriks/Projects/foo/app/assets/flash/player.swf</output>
. For example:
<?xml version="1.0"?>
<flex-config>
<target-player>11.1</target-player>
<swf-version>14</swf-version>
<compiler>
<accessible>true</accessible>
<source-path>
<path-element>lib/services/</path-element>
<path-element>lib/utils/</path-element>
</source-path>
<show-actionscript-warnings>true</show-actionscript-warnings>
<debug>false</debug>
<library-path>
<path-element>lib</path-element>
</library-path>
<optimize>true</optimize>
</compiler>
<output>/Users/newtriks/Projects/foo/app/assets/flash/player.swf</output>
</flex-config>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Wanted this to work but no dice :(