Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. Create a build file that uses the html-wrapper ant task:
<target name="wrapper">
<html-wrapper
title="Welcome to My Flex App"
file="index.html"
height="300"
width="400"
bgcolor="red"
swf="MyApp"
history="true"
template="express-installation"
output="${APP_ROOT}"/>
</target>
2. To enable/disable Express Install, history management, and version detection, you set the "template" attribute. This made sense when there were multiple templates that were used to generate the HTML wrapper output. Now that we use SWFObject 2, there is a single template so specifying a "template" does not make sense.
Actual Results:
Expected Results:
We should instead allow users to set each property as true/false, the way history management is enabled/disabled. Instead of a template attribute, there should be the following settings in teh html-wrapper task:
expressInstall = true/false
versionDetection = true/false
Workaround (if any):