Pacoteflash.html
Classepublic class HTMLWindowCreateOptions
HerançaHTMLWindowCreateOptions Inheritance Object

Defines the options that can be specified when JavaScript running in an HTMLLoader tries to create a new HTML window, by calling the window.open() method.

This class defines the options that can be specified in the features parameter passed to the window.open() method in JavaScript.

For exemplo, JavaScript in an HTML document (in an HTMLLoader object) may include the following call to window.open(), in which the features parameter (the third parameter) lists a number of options:

window.open("http://www.adobe.com", "AdobeWindow", "scrollbars=1,menubar=1,location=0,status=0")

You use the HTMLWindowCreateOptions class in overriding the createWindow() method of a subclass of the HTMLHost class. The HTMLLoader passes an HTMLWindowCreateOptions object as the windowCreateOptions parameter of the createWindow() method of the HTMLHost object.

Veja também

HTMLHost.createWindow()


Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  fullscreen : Boolean = false
Whether the window should be fullscreen.
HTMLWindowCreateOptions
  height : Number = NaN
The desired initial height of the new window.
HTMLWindowCreateOptions
  locationBarVisible : Boolean = false
Whether a location bar should be displayed.
HTMLWindowCreateOptions
  menuBarVisible : Boolean = false
Whether a menu bar should be displayed.
HTMLWindowCreateOptions
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  resizable : Boolean = false
Whether the window should be resizable.
HTMLWindowCreateOptions
  scrollBarsVisible : Boolean = true
Whether a scrollbar should be displayed.
HTMLWindowCreateOptions
  statusBarVisible : Boolean = false
Whether a status bar should be displayed.
HTMLWindowCreateOptions
  toolBarVisible : Boolean = false
Whether a toolbar bar should be displayed.
HTMLWindowCreateOptions
  width : Number = NaN
The desired initial width of the new window.
HTMLWindowCreateOptions
  x : Number = NaN
The desired initial x position of the new window on the screen.
HTMLWindowCreateOptions
  y : Number = NaN
The desired initial y position of the new window on the screen.
HTMLWindowCreateOptions
Métodos Públicos
 MétodoDefinido por
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
fullscreenpropriedade
public var fullscreen:Boolean = false

Whether the window should be fullscreen. This is set to true if the features string of the JavaScript call to the window.open() method includes "fullscreen", "fullscreen=1", or "fullscreen=y".

heightpropriedade 
public var height:Number = NaN

The desired initial height of the new window. This is set to the height value in the features string of the JavaScript call to the window.open() method. If the value is NaN, the default when no height value is specified in the features string, then a default window height is used.

locationBarVisiblepropriedade 
public var locationBarVisible:Boolean = false

Whether a location bar should be displayed. This is set to true if the features string of the JavaScript call to the window.open() method includes "location", "location=1", or "location=y".

menuBarVisiblepropriedade 
public var menuBarVisible:Boolean = false

Whether a menu bar should be displayed. This is set to true if the features string of the JavaScript call to the window.open() method includes "menubar", "menubar=1", or "menubar=y".

resizablepropriedade 
public var resizable:Boolean = false

Whether the window should be resizable. This is set to true if the features string of the JavaScript call to the window.open() method includes "resizable", "resizable=1", or "resizable=y".

scrollBarsVisiblepropriedade 
public var scrollBarsVisible:Boolean = true

Whether a scrollbar should be displayed. This is set to true if the features string of JavaScript call to the window.open() method includes "scrollbars", "scrollbars=1", or "scrollbars=y".

statusBarVisiblepropriedade 
public var statusBarVisible:Boolean = false

Whether a status bar should be displayed. This is set to true if the features string of the JavaScript call to the window.open() method includes "status", "status=1", or "status=y".

toolBarVisiblepropriedade 
public var toolBarVisible:Boolean = false

Whether a toolbar bar should be displayed. This is set to true if the features string of the JavaScript call to the window.open() method includes "toolbar", "toolbar=1", or "toolbar=y".

widthpropriedade 
public var width:Number = NaN

The desired initial width of the new window. This is set to the width value in the features string of the JavaScript call to the window.open() method. If the value is NaN, the default when no width value is specified in the features string, then a default window width is used.

xpropriedade 
public var x:Number = NaN

The desired initial x position of the new window on the screen. This is set to the value specified for left or screenX in the features string of the JavaScript call to the window.open() method. If the value is NaN, the default when no left or screenX value is specified in the features string, then a default window x position is used.

ypropriedade 
public var y:Number = NaN

The desired initial y position of the new window on the screen. This is set to the value specified for top or screenY in the features string of the JavaScript call to the window.open() method. If the value is NaN, the default when no left or screenX value is specified in the features string, then a default window x position is used.