/bin/std/flash9/events/ProgressEvent.hx

http://github.com/Yoomee/clippy · Haxe · 9 lines · 8 code · 1 blank · 0 comment · 0 complexity · c9f03df79274a88c80b3459ebe7cc668 MD5 · raw file

  1. package flash.events;
  2. extern class ProgressEvent extends Event {
  3. var bytesLoaded : UInt;
  4. var bytesTotal : UInt;
  5. function new(type : String, ?bubbles : Bool, ?cancelable : Bool, ?bytesLoaded : UInt, ?bytesTotal : UInt) : Void;
  6. static var PROGRESS : String;
  7. static var SOCKET_DATA : String;
  8. }