StageCapture.hx 534 B

1234567891011121314151617
  1. package flash.automation;
  2. @:require(flash10_1) extern class StageCapture extends flash.events.EventDispatcher {
  3. var captureSource : String;
  4. var clipRect : flash.geom.Rectangle;
  5. var fileNameBase : String;
  6. function new() : Void;
  7. function cancel() : Void;
  8. function capture(type : String) : Void;
  9. function captureBitmapData() : flash.display.BitmapData;
  10. static var CURRENT : String;
  11. static var MULTIPLE : String;
  12. static var NEXT : String;
  13. static var RASTER : String;
  14. static var SCREEN : String;
  15. static var STAGE : String;
  16. }