I've got a legacy project which I'm trying to get up and compiling here. Unfortunately, in the process of compiling, it's failing with errors like:
Error: Definition flashx.textLayout.elements:TextFlow could not be found.
I had thought that FTE was included in the SDK by default. Here's my script by which I'm attempting to compile the application:
FLEX_VERSION=3.6.0
FLEX_HOME=/opt/adobe/flex/$FLEX_HOME/
$FLEX_HOME/bin/mxmlc -compiler.source-path+=src \
-compiler.library-path+=libs \
-target-player 10.2.0 \
-output bin-release/output.swf \
src/Application.mxml
Pretty straightforward, right? Is there anything I need to do to include the FTE libraries in my project?