On 2/16/2014 11:23 PM, Alex Harui wrote:
<echo>FLEX_HOME is ${FLEX_HOME}</echo>
Aha! Put that in, and I got a value for FLEX_HOME that had non-printing
characters in it. Turns out I needed to double the backslashes.
So now my output is:
=======================================================================
Buildfile: C:\dn\inprogress\GHen\flex\GHen\build.xml
[echo] FLEX_HOME is C:\barry\bin\flex\sdks\4.6.0
init:
[delete] Deleting directory C:\dn\inprogress\GHen\flex\GHen\bin-debug
[mkdir] Created dir: C:\dn\inprogress\GHen\flex\GHen\bin-debug
compile:
[mxmlc] Loading configuration file
C:\barry\bin\flex\sdks\4.6.0\frameworks\flex-config.xml
[mxmlc] C:\dn\inprogress\GHen\flex\GHen\src\GHen.mxml: Error:
Unable to locate specified base class
'spark.components.WindowedApplication' for component class 'GHen'.
[mxmlc]
BUILD FAILED
C:\dn\inprogress\GHen\flex\GHen\build.xml:24: mxmlc task failed
Total time: 2 seconds
=======================================================================
Here's the start of my top-level mxml file, GHen.mxml:
=======================================================================
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:loc="location.*"
xmlns:ch="choices.*"
xmlns:step="script_step.*"
pageTitle="Gasper Heights"
height="600"
weight="800"
backgroundColor="#FFFFFF">
=======================================================================