Files
lime/externs/air/flash/html/HTMLHost.hx
2017-08-24 12:50:13 -07:00

15 lines
512 B
Haxe

package flash.html;
extern class HTMLHost {
var htmlLoader(default,never) : HTMLLoader;
var windowRect : flash.geom.Rectangle;
function new(defaultBehaviors : Bool=true) : Void;
function createWindow(windowCreateOptions : HTMLWindowCreateOptions) : HTMLLoader;
function updateLocation(locationURL : String) : Void;
function updateStatus(status : String) : Void;
function updateTitle(title : String) : Void;
function windowBlur() : Void;
function windowClose() : Void;
function windowFocus() : Void;
}