패키지 | mx.controls |
클래스 | public class FlexNativeMenu |
상속 | FlexNativeMenu EventDispatcher Object |
구현 | ILayoutManagerClient, IFlexContextMenu, IAutomationObject |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Like other Flex menu components, to define the structure of a menu represented by a
FlexNativeMenu component, you create a data provider such as an XML hierarchy or an array
of objects containing data to be used to define the menu. Several properties can be set to
define how the data provider data is interpreted, such as the labelField
property
to specify the data field that is used for the menu item label, the keyEquivalentField
property to specify the field that defines a keyboard equivalent shortcut for the menu item,
and the mnemonicIndexField
property to specify the field that defines the index
position of the character in the label that is used as the menu item's mnemonic.
The data provider for FlexNativeMenu items can specify several attributes that determine how the item is displayed and behaves, as the following XML data provider shows:
<mx:XML format="e4x" id="myMenuData"> <root> <menuitem label="MenuItem A"> <menuitem label="SubMenuItem A-1" enabled="False"/> <menuitem label="SubMenuItem A-2"/> </menuitem> <menuitem label="MenuItem B" type="check" toggled="true"/> <menuitem label="MenuItem C" type="check" toggled="false"/> <menuitem type="separator"/> <menuitem label="MenuItem D"> <menuitem label="SubMenuItem D-1"/> <menuitem label="SubMenuItem D-2"/> <menuitem label="SubMenuItem D-3"/> </menuitem> </root> </mx:XML>
The following table lists the attributes you can specify, their data types, their purposes, and how the data provider must represent them if the menu uses the DefaultDataDescriptor class to parse the data provider:
Attribute | Type | Description |
---|---|---|
altKey
| Boolean | Specifies whether the Alt key is required as part of the key equivalent for the item. |
cmdKey
| Boolean |
Note: this attribute is deprecated as of Flex 3.2. Use
commandKey instead. Specifies whether the Command key is required as part
of the key equivalent for the item. |
commandKey
| Boolean | Specifies whether the Command key is required as part of the key equivalent for the item. |
controlKey
| Boolean | Specifies whether the Control key is required as part of the key equivalent for the item. |
ctrlKey
| Boolean |
Note: this attribute is deprecated as of Flex 3.2. Use
controlKey instead. Specifies whether the Control key is required as part
of the key equivalent for the item. |
enabled
| Boolean | Specifies whether the user can select the menu item (true ),
or not (false ). If not specified, Flex treats the item as if
the value were true .
If you use the default data descriptor, data providers must use an enabled
XML attribute or object field to specify this characteristic. |
keyEquivalent
| String | Specifies a keyboard character which, when pressed, triggers an event as though
the menu item was selected. The menu's keyEquivalentField or
keyEquivalentFunction property determines the name of the field
in the data that specifies the key equivalent, or a function for determining
the key equivalents. (If the data provider is in E4X XML format, you must specify
one of these properties to assign a key equivalent.) |
label
| String | Specifies the text that appears in the control. This item is used for all
menu item types except separator .
The menu's labelField or labelFunction property
determines the name of the field in the data that specifies the label,
or a function for determining the labels. (If the data provider is in E4X XML format,
you must specify one of these properties to display a label.)
If the data provider is an Array of Strings, Flex uses the String value as the label. |
mnemonicIndex
| Integer | Specifies the index position of the character in the label that is used as the
mnemonic for the menu item. The menu's mnemonicIndexField or
mnemonicIndexFunction property determines the name of the field
in the data that specifies the mnemonic index, or a function for determining
mnemonic index. (If the data provider is in E4X XML format, you must specify
one of these properties to specify a mnemonic index in the data.) Alternatively,
you can indicate that a character in the label is the menu item's mnemonic by
including an underscore immediately to the left of that character. |
shiftKey
| Boolean | Specifies whether the Shift key is required as part of the key equivalent for the item. |
toggled
| Boolean | Specifies whether a check item is selected.
If not specified, Flex treats the item as if the value were false
and the item is not selected.
If you use the default data descriptor, data providers must use a toggled
XML attribute or object field to specify this characteristic. |
type
| String | Specifies the type of menu item. Meaningful values are separator and
check . Flex treats all other values,
or nodes with no type entry, as normal menu entries.
If you use the default data descriptor, data providers must use a type
XML attribute or object field to specify this characteristic. |
To create a window menu, set the FlexNativeMenu as the menu
property of the
Window or WindowedApplication instance on which the menu should appear. To create an application
menu, assign the FlexNativeMenu as the menu
property of the application's
WindowedApplication. To assign a FlexNativeMenu as the context menu for a portion of the user interface,
call the FlexNativeMenu instance's setContextMenu()
method, passing the UI object
as an argument. Call the FlexNativeMenu component's display()
method to display the
menu as a pop-up menu anywhere on one of the application's windows.
To detect when menu items commands are triggered, register a listener for the itemClick
event. You can also register a listener for the menuShow
event to determine when
any menu or submenu is opened.
The <mx:FlexNativeMenu>
tag supports the following tag attributes:
<mx:FlexNativeMenu Properties dataDescriptor="mx.controls.treeClasses.DefaultDataDescriptor" dataProvider="undefined" keyEquivalentField="keyEquivalent" keyEquivalentFunction="undefined" keyEquivalentModifiersFunction="undefined" labelField="label" labelFunction="undefined" mnemonicIndexField="mnemonicIndex" mnemonicIndexFunction="undefined" showRoot="true" Events itemClick="No default" menuShow="No default" />
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
automationDelegate : Object
The delegate object that handles the automation-related functionality. | FlexNativeMenu | ||
automationEnabled : Boolean [읽기 전용]
True if this component is enabled for automation, false
otherwise. | FlexNativeMenu | ||
automationName : String
Name that can be used as an identifier for this object. | FlexNativeMenu | ||
automationOwner : DisplayObjectContainer
The owner of this component for automation purposes. | FlexNativeMenu | ||
automationParent : DisplayObjectContainer
The parent of this component for automation purposes. | FlexNativeMenu | ||
automationTabularData : Object [읽기 전용]
An implementation of the IAutomationTabularData interface, which
can be used to retrieve the data. | FlexNativeMenu | ||
automationValue : Array [읽기 전용]
This value generally corresponds to the rendered appearance of the
object and should be usable for correlating the identifier with
the object as it appears visually within the application. | FlexNativeMenu | ||
automationVisible : Boolean [읽기 전용]
True if this component is visible for automation, false
otherwise. | FlexNativeMenu | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
dataDescriptor : IMenuDataDescriptor
The object that accesses and manipulates data in the data provider. | FlexNativeMenu | ||
dataProvider : Object
The hierarchy of objects that are used to define the structure
of menu items in the NativeMenu. | FlexNativeMenu | ||
hasRoot : Boolean [읽기 전용]
A flag that indicates that the current data provider has a root node; for example,
a single top node in a hierarchical structure. | FlexNativeMenu | ||
initialized : Boolean
A flag that determines if an object has been through all three phases
of layout: commitment, measurement, and layout (provided that any were required). | FlexNativeMenu | ||
keyEquivalentField : String
The name of the field in the data provider that determines the
key equivalent for each menu item. | FlexNativeMenu | ||
keyEquivalentFunction : Function
The function that determines the key equivalent for each menu item. | FlexNativeMenu | ||
keyEquivalentModifiersFunction : Function
The function that determines the key equivalent modifiers for each menu item. | FlexNativeMenu | ||
labelField : String
The name of the field in the data provider that determines the
text to display for each menu item. | FlexNativeMenu | ||
labelFunction : Function
The function that determines the text to display for each menu item. | FlexNativeMenu | ||
mnemonicIndexField : String
The name of the field in the data provider that determines the
mnemonic index for each menu item. | FlexNativeMenu | ||
mnemonicIndexFunction : Function
The function that determines the mnemonic index for each menu item. | FlexNativeMenu | ||
nativeMenu : NativeMenu [읽기 전용]
Returns the flash.display.NativeMenu managed by this object,
or null if there is not one. | FlexNativeMenu | ||
nestLevel : int
Depth of this object in the containment hierarchy. | FlexNativeMenu | ||
numAutomationChildren : int [읽기 전용]
The number of automation children this container has. | FlexNativeMenu | ||
processedDescriptors : Boolean
Set to true after immediate or deferred child creation,
depending on which one happens. | FlexNativeMenu | ||
showInAutomationHierarchy : Boolean
A flag that determines if an automation object
shows in the automation hierarchy. | FlexNativeMenu | ||
showRoot : Boolean
A Boolean flag that specifies whether to display the data provider's
root node. | FlexNativeMenu | ||
updateCompletePendingFlag : Boolean
A flag that determines if an object has been through all three phases
of layout validation (provided that any were required). | FlexNativeMenu |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | FlexNativeMenu | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | EventDispatcher | ||
Returns a set of properties that identify the child within
this container. | FlexNativeMenu | ||
Returns a set of properties that identify the child within
this container. | FlexNativeMenu | ||
이벤트를 이벤트 흐름으로 전달합니다. | EventDispatcher | ||
Pops up this menu at the specified location. | FlexNativeMenu | ||
Provides the automation object at the specified index. | FlexNativeMenu | ||
Provides the automation object list . | FlexNativeMenu | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Marks a component so that its commitProperties()
method gets called during a later screen update. | FlexNativeMenu | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
EventDispatcher 객체에서 리스너를 제거합니다. | EventDispatcher | ||
Replays the specified event. | FlexNativeMenu | ||
Resolves a child by using the id provided. | FlexNativeMenu | ||
Sets the context menu of the InteractiveObject to the underlying native menu. | FlexNativeMenu | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
Unsets the context menu of the InteractiveObject that has been set to
the underlying native menu. | FlexNativeMenu | ||
Validates the position and size of children and draws other
visuals. | FlexNativeMenu | ||
Validates and updates the properties and layout of this object
and redraws it, if necessary. | FlexNativeMenu | ||
Validates the properties of a component. | FlexNativeMenu | ||
Validates the measured size of the component
If the LayoutManager.invalidateSize() method is called with
this ILayoutManagerClient, then the validateSize() method
is called when it's time to do measurements. | FlexNativeMenu | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher |
메서드 | 정의 주체 | ||
---|---|---|---|
Processes the properties set on the component. | FlexNativeMenu | ||
Returns the key equivalent for the given data object
based on the keyEquivalentField and keyEquivalentFunction
properties. | FlexNativeMenu | ||
Returns the key equivalent modifiers for the given data object
based on the keyEquivalentModifiersFunction property. | FlexNativeMenu | ||
Returns the String to use as the menu item label for the given data
object, based on the labelField and labelFunction
properties. | FlexNativeMenu | ||
Returns the mnemonic index for the given data object
based on the mnemonicIndexField and mnemonicIndexFunction
properties. | FlexNativeMenu | ||
Extracts the mnemonic index from a label based on the presence of
an underscore character. | FlexNativeMenu | ||
Determines the actual label to be used for the NativeMenuItem
by removing underscore characters and converting escaped underscore
characters, if there are any. | FlexNativeMenu |
이벤트 | 요약 | 정의 주체 | ||
---|---|---|---|---|
[브로드캐스트 이벤트] Flash Player 또는 AIR 응용 프로그램이 운영 체제 포커스를 얻어 활성화될 때 전달됩니다. | EventDispatcher | |||
[브로드캐스트 이벤트] Flash Player 또는 AIR 응용 프로그램이 운영 체제 포커스를 잃고 비활성화될 때 전달됩니다. | EventDispatcher | |||
Dispatched when a menu item is selected. | FlexNativeMenu | |||
Dispatched before a menu or submenu is displayed. | FlexNativeMenu |
automationDelegate | 속성 |
automationEnabled | 속성 |
automationName | 속성 |
automationOwner | 속성 |
automationOwner:DisplayObjectContainer
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The owner of this component for automation purposes.
구현
public function get automationOwner():DisplayObjectContainer
public function set automationOwner(value:DisplayObjectContainer):void
automationParent | 속성 |
automationParent:DisplayObjectContainer
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The parent of this component for automation purposes.
구현
public function get automationParent():DisplayObjectContainer
public function set automationParent(value:DisplayObjectContainer):void
automationTabularData | 속성 |
automationValue | 속성 |
automationValue:Array
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
This value generally corresponds to the rendered appearance of the object and should be usable for correlating the identifier with the object as it appears visually within the application.
구현
public function get automationValue():Array
automationVisible | 속성 |
dataDescriptor | 속성 |
dataDescriptor:IMenuDataDescriptor
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The object that accesses and manipulates data in the data provider. The FlexNativeMenu control delegates to the data descriptor for information about its data. This data is then used to parse and move about the data source. The data descriptor defined for the FlexNativeMenu is used for all child menus and submenus.
When you specify this property as an attribute in MXML, you must use a reference to the data descriptor, not the string name of the descriptor. Use the following format for setting the property:
<mx:FlexNativeMenu id="flexNativeMenu" dataDescriptor="{new MyCustomDataDescriptor()}"/>
Alternatively, you can specify the property in MXML as a nested subtag, as the following example shows:
<mx:FlexNativeMenu> <mx:dataDescriptor> <myCustomDataDescriptor> </mx:dataDescriptor> ...
The default value is an internal instance of the DefaultDataDescriptor class.
구현
public function get dataDescriptor():IMenuDataDescriptor
public function set dataDescriptor(value:IMenuDataDescriptor):void
dataProvider | 속성 |
dataProvider:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The hierarchy of objects that are used to define the structure of menu items in the NativeMenu. Individual data objects define menu items, and items with child items become menus and submenus.
The FlexNativeMenu control handles the source data object as follows:
- A String containing valid XML text is converted to an XML object.
- An XMLNode is converted to an XML object.
- An XMLList is converted to an XMLListCollection.
- Any object that implements the ICollectionView interface is cast to an ICollectionView.
- An Array is converted to an ArrayCollection.
- Any other type object is wrapped in an Array with the object as its sole entry.
기본값: "undefined".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 collectionChange
이벤트를 전달합니다.
구현
public function get dataProvider():Object
public function set dataProvider(value:Object):void
hasRoot | 속성 |
hasRoot:Boolean
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
A flag that indicates that the current data provider has a root node; for example, a single top node in a hierarchical structure. XML and Object are examples of types that have a root node, while Lists and Arrays do not.
구현
public function get hasRoot():Boolean
initialized | 속성 |
initialized:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
A flag that determines if an object has been through all three phases of layout: commitment, measurement, and layout (provided that any were required).
구현
public function get initialized():Boolean
public function set initialized(value:Boolean):void
keyEquivalentField | 속성 |
keyEquivalentField:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The name of the field in the data provider that determines the
key equivalent for each menu item. The set of values is defined
in the Keyboard class, in the KEYNAME_XXXX
constants. For example,
consult that list for the value for a control character such as Home, Insert, etc.
Setting the keyEquivalentFunction
property causes this property to be ignored.
기본값: "keyEquivalent".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 keyEquivalentChanged
이벤트를 전달합니다.
구현
public function get keyEquivalentField():String
public function set keyEquivalentField(value:String):void
관련 API 요소
keyEquivalentFunction | 속성 |
keyEquivalentFunction:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The function that determines the key equivalent for each menu item.
If you omit this property, Flex uses the contents of the field or
attribute specified by the keyEquivalentField
property.
If you specify this property, Flex ignores any keyEquivalentField
property value.
The keyEquivalentFunction
property is good for handling formatting,
localization, and platform independence.
The key equivalent function must take a single argument, which is the item in the data provider, and must return a String.
myKeyEquivalentFunction(item:Object):String
기본값: "undefined".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 keyEquivalentFunctionChanged
이벤트를 전달합니다.
구현
public function get keyEquivalentFunction():Function
public function set keyEquivalentFunction(value:Function):void
관련 API 요소
keyEquivalentModifiersFunction | 속성 |
keyEquivalentModifiersFunction:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The function that determines the key equivalent modifiers for each menu item.
If you omit this property, Flex uses its own default function to determine the
Array of modifiers by looking in the data provider data for the presence of
the following (boolean) fields: altKey
, commandKey
,
controlKey
, and shiftKey
.
The keyEquivalentModifiersFunction
property is good for handling
formatting, localization, and platform independence.
The key equivalent modifiers function must take a single argument, which is the item in the data provider, and must return an array of modifier key names.
myKeyEquivalentModifiersFunction(item:Object):Array
기본값: "undefined".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 keyEquivalentModifiersFunctionChanged
이벤트를 전달합니다.
구현
public function get keyEquivalentModifiersFunction():Function
public function set keyEquivalentModifiersFunction(value:Function):void
labelField | 속성 |
labelField:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The name of the field in the data provider that determines the
text to display for each menu item. If the data provider is an Array of
Strings, Flex uses each string value as the label. If the data
provider is an E4X XML object, you must set this property explicitly.
For example, if each XML elementin an E4X XML Object includes a "label"
attribute containing the text to display for each menu item, set
the labelField to "@label"
.
In a label, you can specify the character to be used as the mnemonic index
by preceding it with an underscore. For example, a label value of "C_ut"
sets the mnemonic index to 1. Only the first underscore present is used for this
purpose. To display a literal underscore character in the label, you can escape it
using a double underscore. For example, a label value of "C__u_t"
would
result in a menu item with the label "C_ut" and a mnemonic index of 3 (the "t"
character). If the field defined in the mnemonicIndexField
property
is present and set to a value greater than zero, that value takes precedence over
any underscore-specified mnemonic index value.
Setting the labelFunction
property causes this property to be ignored.
기본값: "label".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 labelFieldChanged
이벤트를 전달합니다.
구현
public function get labelField():String
public function set labelField(value:String):void
labelFunction | 속성 |
labelFunction:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The function that determines the text to display for each menu item. The label function must find the appropriate field or fields in the data provider and return a displayable string.
If you omit this property, Flex uses the contents of the field or
attribute specified by the labelField
property.
If you specify this property, Flex ignores any labelField
property value.
The labelFunction
property can be helpful for handling formatting,
localization, and platform-independence.
The label function must take a single argument, which is the item in the data provider, and must return a String.
myLabelFunction(item:Object):String
기본값: "undefined".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 labelFunctionChanged
이벤트를 전달합니다.
구현
public function get labelFunction():Function
public function set labelFunction(value:Function):void
mnemonicIndexField | 속성 |
mnemonicIndexField:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The name of the field in the data provider that determines the mnemonic index for each menu item.
If the field specified by this property contains a number greater than zero, that mnemonic index takes precedence over one specified by an underscore in the label.
Setting the mnemonicIndexFunction
property causes
this property to be ignored.
기본값: "mnemonicIndex".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 mnemonicIndexChanged
이벤트를 전달합니다.
구현
public function get mnemonicIndexField():String
public function set mnemonicIndexField(value:String):void
관련 API 요소
mnemonicIndexFunction | 속성 |
mnemonicIndexFunction:Function
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The function that determines the mnemonic index for each menu item.
If you omit this property, Flex uses the contents of the field or
attribute specified by the mnemonicIndexField
property.
If you specify this property, Flex ignores any mnemonicIndexField
property value.
If this property is defined and the function returns a number greater than zero for a data item, the returned mnemonic index takes precedence over one specified by an underscore in the label.
The mnemonicIndexFunction
property is good for handling formatting,
localization, and platform independence.
The mnemonic index function must take a single argument which is the item in the data provider and return an int.
myMnemonicIndexFunction(item:Object):int
기본값: "undefined".
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 mnemonicIndexFunctionChanged
이벤트를 전달합니다.
구현
public function get mnemonicIndexFunction():Function
public function set mnemonicIndexFunction(value:Function):void
nativeMenu | 속성 |
nativeMenu:NativeMenu
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns the flash.display.NativeMenu managed by this object, or null if there is not one. Any changes made directly to the underlying NativeMenu instance may be lost when changes are made to the menu or the underlying data provider.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 nativeMenuUpdate
이벤트를 전달합니다.
구현
public function get nativeMenu():NativeMenu
nestLevel | 속성 |
nestLevel:int
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Depth of this object in the containment hierarchy. This number is used by the measurement and layout code. The value is 0 if this component is not on the DisplayList.
구현
public function get nestLevel():int
public function set nestLevel(value:int):void
numAutomationChildren | 속성 |
numAutomationChildren:int
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
The number of automation children this container has. This sum should not include any composite children, though it does include those children not significant within the automation hierarchy.
구현
public function get numAutomationChildren():int
processedDescriptors | 속성 |
processedDescriptors:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Set to true
after immediate or deferred child creation,
depending on which one happens. For a Container object, it is set
to true
at the end of
the createComponentsFromDescriptors()
method,
meaning after the Container object creates its children from its child descriptors.
For example, if an Accordion container uses deferred instantiation,
the processedDescriptors
property for the second pane of
the Accordion container does not become true
until after
the user navigates to that pane and the pane creates its children.
But, if the Accordion had set the creationPolicy
property
to "all"
, the processedDescriptors
property
for its second pane is set to true
during application startup.
For classes that are not containers, which do not have descriptors,
it is set to true
after the createChildren()
method creates any internal component children.
구현
public function get processedDescriptors():Boolean
public function set processedDescriptors(value:Boolean):void
showInAutomationHierarchy | 속성 |
showInAutomationHierarchy:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
A flag that determines if an automation object shows in the automation hierarchy. Children of containers that are not visible in the hierarchy appear as children of the next highest visible parent. Typically containers used for layout, such as boxes and Canvas, do not appear in the hierarchy.
Some controls force their children to appear
in the hierarchy when appropriate.
For example a List will always force item renderers,
including boxes, to appear in the hierarchy.
Implementers must support setting this property
to true
.
구현
public function get showInAutomationHierarchy():Boolean
public function set showInAutomationHierarchy(value:Boolean):void
showRoot | 속성 |
showRoot:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
A Boolean flag that specifies whether to display the data provider's root node.
If the data provider has a root node, and the showRoot
property
is set to false
, the top-level menu items displayed by the
FlexNativeMenu control correspond to the immediate descendants of the root node.
This flag has no effect when using a data provider without a root nodes, such as a List or Array.
기본값: true.
구현
public function get showRoot():Boolean
public function set showRoot(value:Boolean):void
관련 API 요소
updateCompletePendingFlag | 속성 |
updateCompletePendingFlag:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
A flag that determines if an object has been through all three phases of layout validation (provided that any were required).
구현
public function get updateCompletePendingFlag():Boolean
public function set updateCompletePendingFlag(value:Boolean):void
FlexNativeMenu | () | 생성자 |
public function FlexNativeMenu()
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Constructor.
commitProperties | () | 메서드 |
protected function commitProperties():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Processes the properties set on the component.
관련 API 요소
createAutomationIDPart | () | 메서드 |
public function createAutomationIDPart(child:IAutomationObject):Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns a set of properties that identify the child within this container. These values should not change during the lifespan of the application.
매개 변수
child:IAutomationObject — Child for which to provide the id.
|
Object — Sets of properties describing the child which can
later be used to resolve the component.
|
createAutomationIDPartWithRequiredProperties | () | 메서드 |
public function createAutomationIDPartWithRequiredProperties(child:IAutomationObject, properties:Array):Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns a set of properties that identify the child within this container. These values should not change during the lifespan of the application.
매개 변수
child:IAutomationObject — Child for which to provide the id.
| |
properties:Array |
Object — Sets of properties describing the child which can
later be used to resolve the component.
|
display | () | 메서드 |
public function display(stage:Stage, x:int, y:int):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Pops up this menu at the specified location.
매개 변수
stage:Stage — The Stage object on which to display this menu.
| |
x:int — The number of horizontal pixels, relative to the origin of stage,
at which to display this menu.
| |
y:int — The number of vertical pixels, relative to the origin of stage,
at which to display this menu.
|
getAutomationChildAt | () | 메서드 |
public function getAutomationChildAt(index:int):IAutomationObject
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Provides the automation object at the specified index. This list should not include any children that are composites.
매개 변수
index:int — The index of the child to return
|
IAutomationObject — The child at the specified index.
|
getAutomationChildren | () | 메서드 |
invalidateProperties | () | 메서드 |
public function invalidateProperties():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Marks a component so that its commitProperties()
method gets called during a later screen update.
Invalidation is a useful mechanism for eliminating duplicate work by delaying processing of changes to a component until a later screen update. For example, if you want to change the text color and size, it would be wasteful to update the color immediately after you change it and then update the size when it gets set. It is more efficient to change both properties and then render the text with its new size and color once.
Invalidation methods rarely get called. In general, setting a property on a component automatically calls the appropriate invalidation method.
itemToKeyEquivalent | () | 메서드 |
protected function itemToKeyEquivalent(data:Object):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns the key equivalent for the given data object
based on the keyEquivalentField
and keyEquivalentFunction
properties. If the method cannot convert the parameter to a String, it returns an
empty string.
매개 변수
data:Object — Object to be displayed.
|
String — The key equivalent based on the data.
|
itemToKeyEquivalentModifiers | () | 메서드 |
protected function itemToKeyEquivalentModifiers(data:Object):Array
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns the key equivalent modifiers for the given data object
based on the keyEquivalentModifiersFunction
property.
If the method cannot convert the parameter to an Array of modifiers,
it returns an empty Array.
매개 변수
data:Object — Object to be displayed.
|
Array — The array of key equivalent modifiers based on the data.
|
itemToLabel | () | 메서드 |
protected function itemToLabel(data:Object):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns the String to use as the menu item label for the given data
object, based on the labelField
and labelFunction
properties.
If the method cannot convert the parameter to a String, it returns a
single space.
매개 변수
data:Object — Object to be displayed.
|
String — The string to be displayed based on the data.
|
itemToMnemonicIndex | () | 메서드 |
protected function itemToMnemonicIndex(data:Object):int
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Returns the mnemonic index for the given data object
based on the mnemonicIndexField
and mnemonicIndexFunction
properties. If the method cannot convert the parameter to an integer, it returns -1.
매개 변수
data:Object — Object to be displayed.
|
int — The mnemonic index based on the data.
|
parseLabelToMnemonicIndex | () | 메서드 |
protected function parseLabelToMnemonicIndex(data:String):int
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Extracts the mnemonic index from a label based on the presence of an underscore character. It finds the leading underscore character if there is one and uses that as the index.
매개 변수
data:String — The data to parse for the index.
|
int — The index.
|
parseLabelToString | () | 메서드 |
protected function parseLabelToString(data:String):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Determines the actual label to be used for the NativeMenuItem by removing underscore characters and converting escaped underscore characters, if there are any.
매개 변수
data:String — The data to parse for the label.
|
String — The label.
|
replayAutomatableEvent | () | 메서드 |
public function replayAutomatableEvent(event:Event):Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Replays the specified event. A component author should probably call super.replayAutomatableEvent in case default replay behavior has been defined in a superclass.
매개 변수
event:Event — The event to replay.
|
Boolean — true if a replay was successful.
|
resolveAutomationIDPart | () | 메서드 |
public function resolveAutomationIDPart(criteria:Object):Array
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Resolves a child by using the id provided. The id is a set
of properties as provided by the createAutomationIDPart()
method.
매개 변수
criteria:Object — Set of properties describing the child.
The criteria can contain regular expression values
resulting in multiple children being matched.
|
Array — Array of children that matched the criteria
or null if no children could not be resolved.
|
setContextMenu | () | 메서드 |
public function setContextMenu(component:InteractiveObject):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Sets the context menu of the InteractiveObject to the underlying native menu.
매개 변수
component:InteractiveObject — The interactive object.
|
unsetContextMenu | () | 메서드 |
public function unsetContextMenu(component:InteractiveObject):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Unsets the context menu of the InteractiveObject that has been set to the underlying native menu.
매개 변수
component:InteractiveObject — The interactive object.
|
validateDisplayList | () | 메서드 |
public function validateDisplayList():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Validates the position and size of children and draws other
visuals.
If the LayoutManager.invalidateDisplayList()
method is called with
this ILayoutManagerClient, then the validateDisplayList()
method
is called when it's time to update the display list.
validateNow | () | 메서드 |
public function validateNow():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Validates and updates the properties and layout of this object and redraws it, if necessary.
validateProperties | () | 메서드 |
public function validateProperties():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Validates the properties of a component.
If the LayoutManager.invalidateProperties()
method is called with
this ILayoutManagerClient, then the validateProperties()
method
is called when it's time to commit property values.
validateSize | () | 메서드 |
public function validateSize(recursive:Boolean = false):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Validates the measured size of the component
If the LayoutManager.invalidateSize()
method is called with
this ILayoutManagerClient, then the validateSize()
method
is called when it's time to do measurements.
매개 변수
recursive:Boolean (default = false ) — If true , call this method
on the objects children.
|
itemClick | 이벤트 |
mx.events.FlexNativeMenuEvent
속성 FlexNativeMenuEvent.type =
mx.events.FlexNativeMenuEvent.ITEM_CLICK
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Dispatched when a menu item is selected.
The FlexNativeMenuEvent.ITEM_CLICK event type constant indicates that the user selected a menu item.The properties of the event object for this event type have the following values. Not all properties are meaningful for all kinds of events. See the detailed property descriptions for more information.
Property | Value |
---|---|
bubbles | false |
cancelable | true |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
index | The index in the menu of the selected menu item. |
item | The item in the dataProvider that was selected. |
label | The label text of the selected menu item. |
nativeMenu | The specific NativeMenu instance associated with this event. |
nativeMenuItem | The specific NativeMenuItem instance associated with this event. |
target | The Object that dispatched the
event; it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | FlexNativeMenuEvent.ITEM_CLICK |
menuShow | 이벤트 |
mx.events.FlexNativeMenuEvent
속성 FlexNativeMenuEvent.type =
mx.events.FlexNativeMenuEvent.MENU_SHOW
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | AIR 1.1 |
Dispatched before a menu or submenu is displayed.
The FlexNativeMenuEvent.MENU_SHOW type constant indicates that the mouse pointer rolled a menu or submenu opened.The properties of the event object for this event type have the following values. Not all properties are meaningful for all kinds of events. See the detailed property descriptions for more information.
Property | Value |
---|---|
bubbles | false |
cancelable | true |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
index | -1. This property is not set for this type of event. |
item | null. This property is not set for this type of event. |
label | null. This property is not set for this type of event. |
nativeMenu | The specific NativeMenu instance associated with this event. |
nativeMenuItem | null. This property is not set for this type of event. |
target | The Object that dispatched the
event; it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | FlexNativeMenuEvent.MENU_SHOW |
Tue Jun 12 2018, 03:17 PM Z