Builds a Browser container for application.
public function setLocation(x:Number, y:Number):VoidSet the container position.
setLocation() in fever.app.context.abstract.IContextContainer
public function getLocation():PointReturns the container title.
getLocation() in fever.app.context.abstract.IContextContainer
public function setFullScreenMode(enabled:Boolean):Void
Sets current application in fullscreen mode if passed-in enabled
is true, or in normal mode if false.
A fever.events.StageEvent.STAGE_STATE_CHANGED event is broadcasted when mode changed.
Application argument must be passed to flash object to enable fullscreen feature.
var o = new SWFObject( "swfFile.swf", "fswf", "800", "600", "8", "#000000" ); o.addParam( "allowFullScreen", "true" ); o.write("flashcontent");
Only available with Player version > 9.0.18.
setFullScreenMode() in fever.app.context.abstract.IContextContainer
public function isFullScreen():Boolean
Indicates if current application is on fullscreen mode true or
in normal mode false.
isFullScreen() in fever.app.context.abstract.IContextContainer
public function getArgument(id):String
Returns application argument associated with id ID.
getArgument() in fever.app.context.abstract.IContextContainer
public function onHistoryChange(event:HistoryEvent):VoidTriggered when browser send an history status to application.