Hi,
> Well I was going to poke around it for a few mins. I got the message
> below. Turns out we don't declare TLF_Home in the build file. Should I
> just toss it in there pathing to the same place the flex-sdk is?
Look at the fix I did to the main build.xml last week, basically should have
this in there to get the right directory:
<available file="${FLEX_HOME}/../flex-tlf/textLayout"
type="dir"
property="TLF_HOME"
value="${FLEX_HOME}/../flex-tlf" />
<available file="${FLEX_HOME}/../tlf/textLayout"
type="dir"
property="TLF_HOME"
value="${FLEX_HOME}/../tlf" />
<available file="${env.TLF_HOME}"
type="dir"
property="TLF_HOME"
value="${env.TLF_HOME}"/>
Justin