Guest User

Untitled

a guest
May 7th, 2012
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. flex air filemode read external file
  2. protected function main():void{
  3. var file:File = File.applicationDirectory.resolvePath( "logo.png" );
  4. var stream:FileStream = new FileStream();
  5. stream.open( file, FileMode.READ );
  6. var logo:String = stream.readUTFBytes( stream.bytesAvailable );
  7. }
  8.  
  9. <mx:Image includeIn="login" x="208" y="195" id="logo" height="248" source="{logo}"/>
Advertisement
Add Comment
Please, Sign In to add comment