Browse Source

completed fullscreen

Nicolas Cannasse 17 năm trước cách đây
mục cha
commit
f0976610fd
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  1. 6 0
      std/flash/Stage.hx

+ 6 - 0
std/flash/Stage.hx

@@ -11,7 +11,13 @@ extern class Stage
 	static function removeListener(listener:Dynamic):Void;
 
 #if flash_v9
+	/**
+		Set to "fullScreen" in order to set Flash to fullscreen
+		(can only be done in Mouse/Keyboard event listener).
+		Don't forget allowfullscreen="true" in your SWF parameters.
+	**/
 	static var displayState : String;
+	static var fullScreenSourceRect : flash.geom.Rectangle<Int>;
 	static function onFullScreen( full : Bool ) : Void;
 #end