Hi, > Justin, my copy of Tracker.mxml, which I pulled from Git 12 hours ago, has > the header. There should have been no reason for you to need to add it.
Look like git://git.apache.org/flex-utilities.git is out of sync and I was (probably mistakenly) using that as the git URL. Huge potential for confusion here. git clone git://git.apache.org/flex-utilities.git gittest Cloning into 'gittest'... remote: Counting objects: 2073, done. remote: Compressing objects: 100% (1594/1594), done. remote: Total 2073 (delta 883), reused 0 (delta 0) Receiving objects: 100% (2073/2073), 2.42 MiB | 8 KiB/s, done. Resolving deltas: 100% (883/883), done. cat gittest/installer/src/org/apache/flex/packageflexsdk/view/components/Tracker.mxml <?xml version="1.0" encoding="utf-8"?> <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300"> <fx:Script> <![CDATA[ import org.apache.flex.packageflexsdk.resource.ViewResourceConstants; import org.apache.flex.utilities.common.Constants; public function trackInstallerSuccess():void { trackInstallerHTML.location = Constants.APACHE_FLEX_URL + Constants.INSTALLER_TRACK_SUCCESS; } ]]> </fx:Script> <mx:HTML id="trackInstallerHTML" width="100%" height="100%" /> </s:Group>Justins-MacBook-Pro-3:Documents justinmclean$ Justin