Packagecom.adobe.portfolio.events
Classpublic class CollectionManagerEvent
InheritanceCollectionManagerEvent Inheritance flash.events.Event

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

The CollectionManagerEvent class extends Event and is dispatched in response to changes to the Navigator host or its collection of attachments.



Public Properties
 PropertyDefined By
  kind : String
CollectionManagerEvent
  newVal : Object = null
CollectionManagerEvent
  oldVal : Object = null
CollectionManagerEvent
Public Methods
 MethodDefined By
  
CollectionManagerEvent(kind:String, oldVal:Object = null, newVal:Object = null, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor
CollectionManagerEvent
Public Constants
 ConstantDefined By
  COLLECTION_CHANGE : String = collectionChange
[static] A string representing the kind of events triggered by the the Navigator host
CollectionManagerEvent
  FOCUS_DID_CHANGE_KIND : String = focusDidChange
[static] A string representing the event type when the current focus attachment has changed.
CollectionManagerEvent
  HOST_CHANGED_KIND : String = hostChanged
[static] A string representing the event type when a navigator host has changed.
CollectionManagerEvent
  ITEMS_DID_CHANGE_KIND : String = itemsDidChange
[static] A string representing the event type when the host informs the navigator that one or more items have changed.
CollectionManagerEvent
  ITEMS_WILL_CHANGE_KIND : String = itemsWillChange
[static] A string representing the event type when the host informs the navigator that one or more items will change.
CollectionManagerEvent
  NAVIGATOR_PREVIEW_KIND : String = navigatorPreview
[static] A string representing the event type when the the navigator should present a modal preview mode.
CollectionManagerEvent
  NEEDS_SAVE_KIND : String = needsSave
[static] A string representing the event type when the host informs the navigator that an attachment has changed and needs to be saved.
CollectionManagerEvent
  PART_REMOVED_KIND : String = partRemoved
[static] A string representing the event type when a skin part has been removed from a navigator component.
CollectionManagerEvent
  PERMISSIONS_CHANGED_KIND : String = permissionsChanged
[static] A string representing the event type when the host informs the navigator that permissions have changed.
CollectionManagerEvent
  ROOT_ITEMS_QUEUE_BEGIN_KIND : String = rootItemsQueueBegin
[static] An event type used to indicate the initialization of the root items queue in CollectionManager
CollectionManagerEvent
  ROOT_ITEMS_QUEUE_END_KIND : String = rootItemsQueueEnd
[static] An event type used to indicate the termination of the root items queue in CollectionManager
CollectionManagerEvent
  SELECTION_DID_CHANGE_KIND : String = selectionDidChange
[static] A string representing the event type when the host informs the navigator that the selection has changed.
CollectionManagerEvent
Property Detail
kindproperty
public var kind:String

newValproperty 
public var newVal:Object = null

oldValproperty 
public var oldVal:Object = null

Constructor Detail
CollectionManagerEvent()Constructor
public function CollectionManagerEvent(kind:String, oldVal:Object = null, newVal:Object = null, bubbles:Boolean = false, cancelable:Boolean = false)

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

Constructor

Parameters
kind:String — The kind of event as a string, usually one of values in CollectionManagerEvent.
 
oldVal:Object (default = null) — The old value of the relevant changed object
 
newVal:Object (default = null) — The new value of the relevant changed object
 
bubbles:Boolean (default = false) — Determines whether the Event object participates in the bubbling stage of the event flow. The default value is false.
 
cancelable:Boolean (default = false) — Determines whether the Event object can be canceled. The default values is false.
Constant Detail
COLLECTION_CHANGEConstant
public static const COLLECTION_CHANGE:String = collectionChange

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the kind of events triggered by the the Navigator host

FOCUS_DID_CHANGE_KINDConstant 
public static const FOCUS_DID_CHANGE_KIND:String = focusDidChange

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the current focus attachment has changed.

HOST_CHANGED_KINDConstant 
public static const HOST_CHANGED_KIND:String = hostChanged

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when a navigator host has changed.

ITEMS_DID_CHANGE_KINDConstant 
public static const ITEMS_DID_CHANGE_KIND:String = itemsDidChange

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the host informs the navigator that one or more items have changed.

ITEMS_WILL_CHANGE_KINDConstant 
public static const ITEMS_WILL_CHANGE_KIND:String = itemsWillChange

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the host informs the navigator that one or more items will change.

NAVIGATOR_PREVIEW_KINDConstant 
public static const NAVIGATOR_PREVIEW_KIND:String = navigatorPreview

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the the navigator should present a modal preview mode.

See also

CollectionManager.dispatchNavigatorPreview
NEEDS_SAVE_KINDConstant 
public static const NEEDS_SAVE_KIND:String = needsSave

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the host informs the navigator that an attachment has changed and needs to be saved.

PART_REMOVED_KINDConstant 
public static const PART_REMOVED_KIND:String = partRemoved

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when a skin part has been removed from a navigator component.

See also

CollectionManager.dispatchPartRemoved
PERMISSIONS_CHANGED_KINDConstant 
public static const PERMISSIONS_CHANGED_KIND:String = permissionsChanged

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the host informs the navigator that permissions have changed.

ROOT_ITEMS_QUEUE_BEGIN_KINDConstant 
public static const ROOT_ITEMS_QUEUE_BEGIN_KIND:String = rootItemsQueueBegin

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

An event type used to indicate the initialization of the root items queue in CollectionManager

ROOT_ITEMS_QUEUE_END_KINDConstant 
public static const ROOT_ITEMS_QUEUE_END_KIND:String = rootItemsQueueEnd

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

An event type used to indicate the termination of the root items queue in CollectionManager

SELECTION_DID_CHANGE_KINDConstant 
public static const SELECTION_DID_CHANGE_KIND:String = selectionDidChange

Language Version : ActionScript 3.0
Product Version : Portfolio 10.0
Runtime Versions : Flash Player 10.1, AIR 2.0

A string representing the event type when the host informs the navigator that the selection has changed.