Specifications
CHAPTER 9
194
<taskdef resource="flexTasks.tasks" classpath="${basedir}/lib/flexTasks.jar"/>
<property name="FLEX_HOME" value="C:/flex3/sdk"/>
<property name="APP_ROOT" value="apps"/>
<target name="wrapper">
<html-wrapper
title="Welcome to My Flex App"
file="index.html"
height="300"
width="400"
bgcolor="red"
application="app"
swf="Main"
version-major="9"
version-minor="0"
version-revision="0"
history="true"
template="express-installation"
output="${APP_ROOT}"/>
</target>
<target name="clean">
<delete>
<!-- Deletes playerProductInstall.swf -->
<fileset dir="${APP_ROOT}"
includes="playerProductInstall.swf"
defaultexcludes="false"/>
<!-- Deletes index.html and historyFrame.html -->
<fileset dir="${APP_ROOT}" includes="*.html" defaultexcludes="false"/>
<!-- Deletes history.css -->
<fileset dir="${APP_ROOT}" includes="*.css" defaultexcludes="false"/>
<!-- Deletes history.js and AC_OETags.js -->
<fileset dir="${APP_ROOT}" includes="*.js" defaultexcludes="false"/>
</delete>
</target>
</project>










