ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
xd.core.axm.view.components.support 

IDropDownController  - AS3 ADEP Adobe Experience Model

Packagexd.core.axm.view.components.support
Interfacepublic interface IDropDownController extends IEventDispatcher
Implementors AXMToolPopUpDropDownController

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The interface for a Drop Down Controller component.



Public Properties
 PropertyDefined By
  dropDown : DisplayObject
The dropdown object.
IDropDownController
  isOpen : Boolean
[read-only] A flag that indicates whether the dropdown is open.
IDropDownController
  openButton : ButtonBase
The Open button.
IDropDownController
  rollOverOpenDelay : Number
The rollover delay to wait.
IDropDownController
  systemManager : ISystemManager
The system manager.
IDropDownController
Public Methods
 MethodDefined By
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
IEventDispatcher
  
Closes the dropdown.
IDropDownController
 Inherited
Dispatches an event into the event flow.
IEventDispatcher
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
IEventDispatcher
  
Specifies to open or display the dropdown.
IDropDownController
  
Processes when focus is moved away from the component.
IDropDownController
  
Handles the key down event.
IDropDownController
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
IEventDispatcher
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
IEventDispatcher
Property Detail

dropDown

property
dropDown:DisplayObject

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The dropdown object.



Implementation
    public function get dropDown():DisplayObject
    public function set dropDown(value:DisplayObject):void

isOpen

property 
isOpen:Boolean  [read-only]

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

A flag that indicates whether the dropdown is open.



Implementation
    public function get isOpen():Boolean

openButton

property 
openButton:ButtonBase

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The Open button.



Implementation
    public function get openButton():ButtonBase
    public function set openButton(value:ButtonBase):void

rollOverOpenDelay

property 
rollOverOpenDelay:Number

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The rollover delay to wait.



Implementation
    public function get rollOverOpenDelay():Number
    public function set rollOverOpenDelay(value:Number):void

systemManager

property 
systemManager:ISystemManager

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

The system manager.



Implementation
    public function get systemManager():ISystemManager
    public function set systemManager(value:ISystemManager):void
Method Detail

closeDropDown

()method
public function closeDropDown(commit:Boolean):void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Closes the dropdown.

Parameters

commit:Boolean — flag for commit on close

openDropDown

()method 
public function openDropDown():void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Specifies to open or display the dropdown.

processFocusOut

()method 
public function processFocusOut(event:FocusEvent):void

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Processes when focus is moved away from the component.

Parameters

event:FocusEvent — the event

processKeyDown

()method 
public function processKeyDown(event:KeyboardEvent):Boolean

Language Version: ActionScript 3.0
Product Version: Adobe Digital Enterprise Platform Experience Services - Adobe Experience Model 10
Runtime Versions: AIR 2.6, Flash Player 10.2

Handles the key down event.

Parameters

event:KeyboardEvent — the event

Returns
Boolean