Hi,
My Flex application is built using ant. The html wrapper task is as follows:
<target name="wrapper">
<html-wrapper
title="{$title}"
file="login.htm"
height="300"
width="400"
application="app"
swf="Main.swf"
version-major="9"
version-minor="0"
version-revision="0"
history="true"
template="express-installation"
output="${APP_ROOT}"/>
</target>
My purpose is to display a message to the user in case their browser has JavaScript disabled. I modified the index.template.html file within the express-installation folder to include the following in the tag:
<noscript><my message here/></noscript>
The message does not get displayed. Is there a way I could find out which index.template.html file is used by ant task or is the file being overridden somehow?
Can anyone resolve this? Any help would be appreciated. :)