AVTimeline.hx 1.1 KB

123456789101112131415161718192021
  1. package flash.media;
  2. extern class AVTimeline {
  3. @:flash.property var complete(get,never) : Bool;
  4. @:flash.property var firstPeriodIndex(get,never) : Int;
  5. @:flash.property var firstSubscribedTagIndex(get,never) : Int;
  6. @:flash.property var lastPeriodIndex(get,never) : Int;
  7. @:flash.property var lastSubscribedTagIndex(get,never) : Int;
  8. @:flash.property var type(get,never) : String;
  9. @:flash.property var virtualDuration(get,never) : Float;
  10. @:flash.property var virtualStartTime(get,never) : Float;
  11. function new(init_type : String, init_virtualStartTime : Float, init_virtualDuration : Float, init_firstPeriodIndex : Int, init_lastPeriodIndex : Int, init_firstSubscribedIndex : Int, init_lastSubscribedIndex : Int, init_complete : Bool) : Void;
  12. private function get_complete() : Bool;
  13. private function get_firstPeriodIndex() : Int;
  14. private function get_firstSubscribedTagIndex() : Int;
  15. private function get_lastPeriodIndex() : Int;
  16. private function get_lastSubscribedTagIndex() : Int;
  17. private function get_type() : String;
  18. private function get_virtualDuration() : Float;
  19. private function get_virtualStartTime() : Float;
  20. }