[Bindable] [Embed('com/cheping/assets/document.png')] private var diskIcon:Class;
[Bindable] private var arrColl:ArrayCollection;
/* URL of the file to download. */ private const FILE_URL:String = "http://192.168.1.9/flex.rar";
private var fileRef:FileReference; private var urlReq:URLRequest;
private function init():void { /* Initialize the array collection to an empty collection. */ arrColl = new ArrayCollection();
/* Set up the URL request to download the file specified by the FILE_URL variable. */ urlReq = new URLRequest(FILE_URL);
/* Define file reference object and add a bunch of event listeners. */ fileRef = new FileReference(); fileRef.addEventListener(Event.CANCEL, doEvent); fileRef.addEventListener(Event.COMPLETE, doEvent); fileRef.addEventListener(Event.OPEN, doEvent); fileRef.addEventListener(Event.SELECT, doEvent); fileRef.addEventListener(HTTPStatusEvent.HTTP_STATUS, doEvent); fileRef.addEventListener(IOErrorEvent.IO_ERROR, doEvent); fileRef.addEventListener(ProgressEvent.PROGRESS, doEvent); fileRef.addEventListener(SecurityErrorEvent.SECURITY_ERROR, doEvent); }
private function doEvent(evt:Event):void { /* Create shortcut to the FileReference object. */ var fr:FileReference = evt.currentTarget as FileReference;
/* Add event order and type to the DataGrid control. */ arrColl.addItem({data:arrColl.length+1, type:evt.type, eventString:evt.toString()});
try { /* Update the Model. */ fileRefModel.creationDate = fr.creationDate; fileRefModel.creator = fr.creator; fileRefModel.modificationDate = fr.modificationDate; fileRefModel.name = fr.name; fileRefModel.size = fr.size; fileRefModel.type = fr.type; /* Display the Text control. */ txt.visible = true; } catch (err:*) { /* uh oh, an error of sorts. */ } }
private function downloadSourceCodeZip():void { /* Clear existing array collection. */ arrColl = new ArrayCollection(); /* Hide the Text control. */ txt.visible = false; /* Begin download. */ fileRef.download(urlReq); // fileRef.s // Alert.show( Application.application.url);
}
private function showAlert(item:Object):void { Alert.show(item.eventString, item.type); } ]]> </mx:Script>