A class containing properties shared among PortfolioFramework navigators. This class can be extended
to handle navigator-specific properties.
The set of property classes provides a general mechanism that can be used by navigators
to expose their internal properties for viewing and editing by a host application. The nature
and behavior of these properties is considered "private" to the navigator, but exposing
information about them allows a viewing application to provide a consistent UI
for manipulating them.
The Property object contains all the information required by a host application to present
an interface to the user for configuring the property's value.
The representation and behavior of navigator properties are entirely controlled by
the Navigator itself. The host (Acrobat) has no knowledge of how properties are stored,
or what effect they have on the Navigator. The host simply allows the navigator to specify
its properties (along with type and context information) through a collection of property interfaces.
A host need never implement any of these interfaces; it will only use them to get, set, and
enumerate properties through the implementations provided by the Navigators.
[static]
Displays image so its bottom edge is aligned with the bottom of the window
and the image's horizontal center is aligned with the horizontal center of the window.
[static]
Displays image so its bottom edge is aligned with the bottom of the window
and the image's right edge is aligned with the right of the window.
[static]
Displays image so its vertical center is aligned with the vertical center of the window
and the image's left edge is aligned with the left of the window.
[static]
Displays image so its vertical center is aligned with the vertical center of the window
and the image's right edge is aligned with the right of the window.
[static]
Displays image so its top edge is aligned with the top of the window
and the image's horizontal center is aligned with the horizontal center of the window.
The gradient intensity for the Navigator background.
This property can be used as the source for data binding.
Implementation public function get backgroundGradientIntensity():PropertyNumberValue public function set backgroundGradientIntensity(value:PropertyNumberValue):void
The gradient opacity for the Navigator background.
This property can be used as the source for data binding.
Implementation public function get backgroundGradientOpacity():PropertyNumberValue public function set backgroundGradientOpacity(value:PropertyNumberValue):void
This property can be used as the source for data binding.
Implementation public function get backgroundImageOpacity():PropertyNumberValue public function set backgroundImageOpacity(value:PropertyNumberValue):void
The image position list for the Navigator background.
This property can be used as the source for data binding.
Implementation public function get backgroundImagePositionList():PropertyListValue public function set backgroundImagePositionList(value:PropertyListValue):void
The image scale list for the Navigator background.
This property can be used as the source for data binding.
Implementation public function get backgroundImageScaleList():PropertyListValue public function set backgroundImageScaleList(value:PropertyListValue):void
The image source list for the Navigator background.
This property can be used as the source for data binding.
Implementation public function get backgroundImageSourceList():PropertyListValue public function set backgroundImageSourceList(value:PropertyListValue):void
The background gradient intensity for the Navigator header component.
This property can be used as the source for data binding.
Implementation public function get headerBackgroundGradientIntensity():PropertyNumberValue public function set headerBackgroundGradientIntensity(value:PropertyNumberValue):void
The background gradient type for the Navigator header component.
This property can be used as the source for data binding.
Implementation public function get headerBackgroundGradientType():PropertyListValue public function set headerBackgroundGradientType(value:PropertyListValue):void
The background opacity for the Navigator header component.
This property can be used as the source for data binding.
Implementation public function get headerBackgroundOpacity():PropertyNumberValue public function set headerBackgroundOpacity(value:PropertyNumberValue):void
Creates an array of URIs to be loaded by the PropertyManager. This method can be overriden
to handle additional property files.
Returns
Array
getCardSize
()
method
public function getCardSize(sizeName:String):Number
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Returns the size, in pixels, of cards with the specified size name
Parameters
sizeName:String — The name of the card size: "small", "medium", or "large"
(PROPERTY_CARD_SIZE_SMALL, PROPERTY_CARD_SIZE_MEDIUM, PROPERTY_CARD_SIZE_LARGE)
Returns
Number
getCurrentContextByName
()
method
public function getCurrentContextByName(contextName:String):PropertyContext
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Returns the current property context for the type of context specified by contextName.
If no contextName is specified the portfolioContext is returned.
Parameters
contextName:String — Identifies the context of interest. Possible values are:
CONTEXT_CLEAR -- this will return the default current context
protected function onLoadXMLCompleteOrError(event:Event):void
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
An event listener than is invoked when a load XML command has
completed or has generated an error.
Parameters
event:Event — The load XML complete event or an error event generated when
trying to load the XML
onSkinModuleLoadError
()
method
protected function onSkinModuleLoadError(moduleURL:String):void
Displays an error message to the user that the given skin resource could not be found.
Parameters
moduleURL:String
See also
ResourceManager.showMissingResourcePopup()
onValueChange
()
method
protected function onValueChange(event:PropertyChangeEvent):void
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
A common event listener for handling changed properties.
This event listener will be called twice - once when the activeValue is changed
and again when the activeValue's value is changed. This listener ignores
the second event (when the activeValue's value is changed).
Parameters
event:PropertyChangeEvent — A property change event.
setCurrentContext
()
method
public function setCurrentContext(propertyContext:PropertyContext, id:Object, clearing:Boolean = false):void
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Set the current propertyContext
Parameters
propertyContext:PropertyContext — The name of the new propertyContext to set.
id:Object — The identifier of the current propertyContext you wish to change
clearing:Boolean (default = false) — A boolean indicating whether the current context should be cleared or not.
The default is false.
setCurrentContextByName
()
method
public function setCurrentContextByName(contextName:String, id:Object):void
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Sets the current property context to the one with the given name.
CONTEXT_CLEAR may be used when the current context is no longer
applicable to the caller; however, the context is only cleared if the id provided
is the same id used in the previous call to setCurrentContext.
Parameters
contextName:String — The name of the new propertyContext to use
id:Object — The identifier of the current propertyContext you wish to change
unloadSkin
()
method
public function unloadSkin(update:Boolean):void
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Unloads the current skin.
Parameters
update:Boolean
Constant Detail
BACKGROUND_IMAGE_SOURCE_URL
Constant
public static const BACKGROUND_IMAGE_SOURCE_URL:String = navigator/backgroundImage.ext
The collection manager instance used by this Navigator
CONTEXT_BACKGROUND
Constant
public static const CONTEXT_BACKGROUND:String = com.adobe.navigator.background
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the context name for Navigator backgrounds
CONTEXT_CLEAR
Constant
public static const CONTEXT_CLEAR:String
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string used to clear the current context
CONTEXT_HEADER
Constant
public static const CONTEXT_HEADER:String = com.adobe.navigator.header
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the context name for Navigator headers
CONTEXT_INITIALIZE
Constant
public static const CONTEXT_INITIALIZE:String = com.adobe.navigator.initalize
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the context name for Navigator initialization
CONTEXT_PORTFOLIO
Constant
public static const CONTEXT_PORTFOLIO:String = com.adobe.navigator.portfolio
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the context name for Navigator Portfolios
CONTEXT_TEXTFIELD
Constant
public static const CONTEXT_TEXTFIELD:String = com.adobe.navigator.textField
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the context name for Navigator text fields
CONTEXT_THEMES
Constant
public static const CONTEXT_THEMES:String = com.adobe.navigator.themes
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the context name for Navigator themes (skins)
IMPORTED_THEME_NAME
Constant
public static const IMPORTED_THEME_NAME:String = user_theme
PROPERTY_ADD_IMAGE
Constant
public static const PROPERTY_ADD_IMAGE:String = addImage
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the add image property
PROPERTY_ADD_SWF
Constant
public static const PROPERTY_ADD_SWF:String = addSwf
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the add swf property
PROPERTY_ADD_TEXT
Constant
public static const PROPERTY_ADD_TEXT:String = addText
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the add text property
PROPERTY_BACKGROUND_COLOR
Constant
public static const PROPERTY_BACKGROUND_COLOR:String = backgroundColor
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the background color property
PROPERTY_BACKGROUND_OPACITY
Constant
public static const PROPERTY_BACKGROUND_OPACITY:String = backgroundOpacity
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the background opacity property
PROPERTY_CARD_SIZE
Constant
public static const PROPERTY_CARD_SIZE:String = cardSize
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the card size property available to clients
PROPERTY_CARD_SIZE_LARGE
Constant
public static const PROPERTY_CARD_SIZE_LARGE:String = large
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The largest of the card size images
PROPERTY_CARD_SIZE_MEDIUM
Constant
public static const PROPERTY_CARD_SIZE_MEDIUM:String = medium
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The medium images size for a card
PROPERTY_CARD_SIZE_SMALL
Constant
public static const PROPERTY_CARD_SIZE_SMALL:String = small
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The smallest of the card image sizes
PROPERTY_CARDS_ANGLED
Constant
public static const PROPERTY_CARDS_ANGLED:String = cardsAngled
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the cards angled property available to clients
PROPERTY_CARDS_AUTOSIZE
Constant
public static const PROPERTY_CARDS_AUTOSIZE:String = cardsAutoSize
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the cards autosized property available to clients
PROPERTY_EMBED_FONTS
Constant
public static const PROPERTY_EMBED_FONTS:String = embedFonts
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the embed fonts property available to clients
PROPERTY_FILE_PLACEHOLDER
Constant
public static const PROPERTY_FILE_PLACEHOLDER:String = nothing
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Indicates that the image source is a placeholder only
PROPERTY_FILE_REMOVE
Constant
public static const PROPERTY_FILE_REMOVE:String = remove
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Removes the image source
PROPERTY_FILE_SELECT
Constant
public static const PROPERTY_FILE_SELECT:String = select
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The "select" choice for the image source property
PROPERTY_GRADIENT_INTENSITY
Constant
public static const PROPERTY_GRADIENT_INTENSITY:String = gradientIntensity
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the gradient intensity property available to clients
PROPERTY_GRADIENT_OPACITY
Constant
public static const PROPERTY_GRADIENT_OPACITY:String = gradientOpacity
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the gradient opacity property available to clients
PROPERTY_GRADIENT_TYPE
Constant
public static const PROPERTY_GRADIENT_TYPE:String = gradientType
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the gradient type property available to clients
PROPERTY_IMAGE_BLUR
Constant
public static const PROPERTY_IMAGE_BLUR:String = imageBlur
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the image blur property available to clients
PROPERTY_IMAGE_OPACITY
Constant
public static const PROPERTY_IMAGE_OPACITY:String = imageOpacity
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the image opacity property available to clients
PROPERTY_IMAGE_POSITION
Constant
public static const PROPERTY_IMAGE_POSITION:String = imagePosition
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the image position property available to clients
PROPERTY_IMAGE_POSITION_BOTTOM_CENTER
Constant
public static const PROPERTY_IMAGE_POSITION_BOTTOM_CENTER:String = bottomCenter
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its bottom edge is aligned with the bottom of the window
and the image's horizontal center is aligned with the horizontal center of the window.
PROPERTY_IMAGE_POSITION_BOTTOM_LEFT
Constant
public static const PROPERTY_IMAGE_POSITION_BOTTOM_LEFT:String = bottomLeft
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its bottom edge is aligned with the bottom of the window
and the image's left edge is aligned with the left of the window.
PROPERTY_IMAGE_POSITION_BOTTOM_RIGHT
Constant
public static const PROPERTY_IMAGE_POSITION_BOTTOM_RIGHT:String = bottomRight
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its bottom edge is aligned with the bottom of the window
and the image's right edge is aligned with the right of the window.
PROPERTY_IMAGE_POSITION_MIDDLE_CENTER
Constant
public static const PROPERTY_IMAGE_POSITION_MIDDLE_CENTER:String = center
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image relative to the center of the window.
PROPERTY_IMAGE_POSITION_MIDDLE_LEFT
Constant
public static const PROPERTY_IMAGE_POSITION_MIDDLE_LEFT:String = middleLeft
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its vertical center is aligned with the vertical center of the window
and the image's left edge is aligned with the left of the window.
PROPERTY_IMAGE_POSITION_MIDDLE_RIGHT
Constant
public static const PROPERTY_IMAGE_POSITION_MIDDLE_RIGHT:String = middleRight
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its vertical center is aligned with the vertical center of the window
and the image's right edge is aligned with the right of the window.
PROPERTY_IMAGE_POSITION_TOP_CENTER
Constant
public static const PROPERTY_IMAGE_POSITION_TOP_CENTER:String = topCenter
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its top edge is aligned with the top of the window
and the image's horizontal center is aligned with the horizontal center of the window.
PROPERTY_IMAGE_POSITION_TOP_LEFT
Constant
public static const PROPERTY_IMAGE_POSITION_TOP_LEFT:String = topLeft
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its top edge is aligned with the top of the window
and the image's left edge is aligned with the left of the window.
PROPERTY_IMAGE_POSITION_TOP_RIGHT
Constant
public static const PROPERTY_IMAGE_POSITION_TOP_RIGHT:String = topRight
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image so its top edge is aligned with the top of the window
and the image's right edge is aligned with the right of the window.
PROPERTY_IMAGE_SCALE
Constant
public static const PROPERTY_IMAGE_SCALE:String = imageScale
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the image scale property available to clients
PROPERTY_IMAGE_SCALE_ACTUAL_SIZE
Constant
public static const PROPERTY_IMAGE_SCALE_ACTUAL_SIZE:String = actualSize
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image at its full resolution (not scaled).
If the image is larger than the window it is clipped.
PROPERTY_IMAGE_SCALE_ACTUAL_SIZE_TILED
Constant
public static const PROPERTY_IMAGE_SCALE_ACTUAL_SIZE_TILED:String = actualSizeTiled
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Images are tiled (repeated) until the entire containing window is filled with the original image.
PROPERTY_IMAGE_SCALE_NO_BORDER
Constant
public static const PROPERTY_IMAGE_SCALE_NO_BORDER:String = noBorder
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image scaled to fill the containing window, but clipping may occur on the top and bottom or sides.
If the containing window is not the same aspect ratio as the image,
the image fills the window in one dimension and is clipped in the other dimension.
Resizing the containing window causes the image to rescale to the new size.
PROPERTY_IMAGE_SCALE_SHOW_ALL
Constant
public static const PROPERTY_IMAGE_SCALE_SHOW_ALL:String = showAll
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Displays image scaled to fill the containing window without clipping on the top, bottom or sides.
If the containing window is not the same aspect ratio as the image,
the image fills the window in one dimension and borders may be visible in the other dimension.
Resizing the containing window causes the image to rescale to the new size.
PROPERTY_IMAGE_SOURCE
Constant
public static const PROPERTY_IMAGE_SOURCE:String = imageSource
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the image source property available to clients
PROPERTY_IMPORT_THEME
Constant
public static const PROPERTY_IMPORT_THEME:String = importTheme
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the import theme property available to clients
PROPERTY_INITIALIZED
Constant
public static const PROPERTY_INITIALIZED:String = initialized
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Indicates the property has been initialized.
PROPERTY_PRESET_LIST
Constant
public static const PROPERTY_PRESET_LIST:String = presetList
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the preset list property
PROPERTY_SKINS
Constant
public static const PROPERTY_SKINS:String = skins
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the skins property available to clients
PROPERTY_TEXTFIELD_BOLD
Constant
public static const PROPERTY_TEXTFIELD_BOLD:String = bold
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Indicates the property's text field should be a bold weight font.
PROPERTY_TEXTFIELD_FONTCOLOR
Constant
public static const PROPERTY_TEXTFIELD_FONTCOLOR:String = fontColor
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the text field font color property available to clients
PROPERTY_TEXTFIELD_FONTFAMILY
Constant
public static const PROPERTY_TEXTFIELD_FONTFAMILY:String = fontFamily
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the text field font family property available to clients
PROPERTY_TEXTFIELD_FONTSIZE
Constant
public static const PROPERTY_TEXTFIELD_FONTSIZE:String = fontSize
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the text field font size property available to clients
PROPERTY_TEXTFIELD_FONTSTYLE
Constant
public static const PROPERTY_TEXTFIELD_FONTSTYLE:String = fontStyle
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the text field font style property available to clients
PROPERTY_TEXTFIELD_FONTUNDERLINED
Constant
public static const PROPERTY_TEXTFIELD_FONTUNDERLINED:String = fontUnderlined
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the text field font underlined property available to clients
PROPERTY_TEXTFIELD_FONTWEIGHT
Constant
public static const PROPERTY_TEXTFIELD_FONTWEIGHT:String = fontWeight
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
The string to specify the text field font weight property available to clients
PROPERTY_TEXTFIELD_ITALIC
Constant
public static const PROPERTY_TEXTFIELD_ITALIC:String = italic
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Indicates the property's text field should have an italic style.
PROPERTY_TEXTFIELD_NORMAL
Constant
public static const PROPERTY_TEXTFIELD_NORMAL:String = normal
Language Version :
ActionScript 3.0
Product Version :
Portfolio 10.0
Runtime Versions :
Flash Player 10.1, AIR 2.0
Indicates the property's text field should be a normal weight font.