SoFunction
Updated on 2025-04-02

How to upload local pictures and browse them in advance


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="/mxml/2009"
xmlns:s="library:///flex/spark"
xmlns:mx="library:///flex/mx" minWidth="955" minHeight="600"
creationComplete="creationCompleteHandler(event)">
<fx:Script>
<![CDATA[
import ;
import ;
import ;
import ;

private var fr:FileReference;
private var imageTypes:FileFilter;

private function creationCompleteHandler(event:Event):void {
fr = new FileReference();
imageTypes = new FileFilter("Images (*.jpg, *.jpeg, *.png, *.gif)","*.jpg; *.jpeg; *.png; *.gif;")
(, selectHandler);//Add Listener after the user selects the file after opening the browsing file
}

private function browseHandler(event:Event):void {
([imageTypes]);//Open the dialog of browsing the file
}

private function selectHandler(event:Event):void {
(, onLoadComplete);//Add a listener after the load load is completed
(); //Load the user selected file
}

private function onLoadComplete(e:Event):void
{
= ;
}

]]>
</fx:Script>
<s:layout>
<s:BasicLayout/>
</s:layout>
<fx:Declarations>
<!-- Put non-visual elements (such as services, value objects) here -->
</fx:Declarations>
<mx:Image visible="true" autoLoad="true" width="1000" height="500"/>
<mx:Button label="Browse" click="browseHandler(event)" />
</s:Application>