-
1. Re: AIR 4 SDK and asdoc
DanelKirch May 31, 2014 5:27 AM (in response to DanelKirch)So, i found a solution which does work for now, still there should be instructions available officially from Adobe, instead of letting developers to spend hours, days or what ever on finding solutions...
I guess there can be better solution but i did what i could from my little experience with flash builder and executables...
in the asdoc file i commented out the scripthome, and added static variable instead, changes are underlined:
SCRIPT_HOME="/Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/bin/"
if [ "x${FALCON_HOME}" = "x" ]
then
#SCRIPT_HOME=`dirname $0`
FALCON_HOME=${SCRIPT_HOME}/..
else
echo Using Falcon codebase: $FALCON_HOME
fi
if [ "x${FLEX_HOME}" = "x" ]
then
#SCRIPT_HOME=`dirname $0`
FLEX_HOME=${SCRIPT_HOME}/..
else
echo Using Flex SDK: $FLEX_HOME
fi
That solved the flex-config.xml issue.
Then when i ran the external tool again, i got error on not finding locale sv_SE,
so in AIRSDK/frameworks/locale i had no sv_SE, solution that worked was to make a copy of en_US folder and rename it to sv_SE.
And since im trying to asdoc AIR, the ext tool should of cource have external libs added as well in arguments field:
-external-library-path="/Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/frameworks/libs/air/airg lobal.swc"
Hope this helps others in someway.
