Guida di riferimento di ActionScript® 3.0 per la piattaforma Adobe® Flash®
Home  |  Nascondi elenco pacchetti e classi |  Pacchetti  |  Classi  |  Novità  |  Indice  |  Appendici  |  Perché in inglese?
Filtri: Recupero dati dal server...
Recupero dati dal server...
com.adobe.guides.control 

IGuideNavigation  - AS3 ADEP - Guide

Pacchettocom.adobe.guides.control
Interfacciapublic interface IGuideNavigation

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

The IGuideNaviagation interface provides access to properties and methods to set, report current (Panel, Item), and provide some state information to assist with external navigation state.



Proprietà pubbliche
 ProprietàDefinito da
  currentItem : IGuideNode
[sola lettura] currentItem is the GuideNode that represents the currently selected item on the current panel in the Guide.
IGuideNavigation
  currentPanel : IGuideNode
[sola lettura] currentPanel is the GuideNode that represents the currently selected panel in the Guide.
IGuideNavigation
  hasNextPanel : Boolean
[sola lettura] hasNextPanel returns whether there is a next panel currenly available.
IGuideNavigation
  hasPreviousPanel : Boolean
[sola lettura] hasPreviousPanel returns whether there is a previous panel currenly available.
IGuideNavigation
  rootNode : IGuideNode
[sola lettura] rootNode is the top level GuideNode representing the current Guide instance's structure.
IGuideNavigation
Metodi pubblici
 MetodoDefinito da
  
select will change the Guide view and focus to the provided GuideNode.
IGuideNavigation
  
selectFirst(type:String = "panel"):Boolean
selectFirst changes the guide to the first GuideNode instance of the type requested.
IGuideNavigation
  
selectLast(type:String = "panel"):Boolean
selectLast changes the guide to the last GuideNode instance of the type requested.
IGuideNavigation
  
selectNext(type:String = "panel"):Boolean
selectNext changes the guide to the next GuideNode instance of the type requested.
IGuideNavigation
  
selectPrevious(type:String = "panel"):Boolean
selectPrevious changes the guide to the previous GuideNode instance of the type requested.
IGuideNavigation
Descrizione delle proprietà

currentItem

proprietà
currentItem:IGuideNode  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

currentItem is the GuideNode that represents the currently selected item on the current panel in the Guide.

Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange .



Implementazione
    public function get currentItem():IGuideNode

currentPanel

proprietà 
currentPanel:IGuideNode  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

currentPanel is the GuideNode that represents the currently selected panel in the Guide.

Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange .



Implementazione
    public function get currentPanel():IGuideNode

hasNextPanel

proprietà 
hasNextPanel:Boolean  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

hasNextPanel returns whether there is a next panel currenly available.

Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange .



Implementazione
    public function get hasNextPanel():Boolean

hasPreviousPanel

proprietà 
hasPreviousPanel:Boolean  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

hasPreviousPanel returns whether there is a previous panel currenly available.

Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange .



Implementazione
    public function get hasPreviousPanel():Boolean

rootNode

proprietà 
rootNode:IGuideNode  [sola lettura]

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

rootNode is the top level GuideNode representing the current Guide instance's structure.

Questa proprietà può essere utilizzata come origine per l’associazione di dati. Quando questa proprietà viene modificata, invia l’evento propertyChange .



Implementazione
    public function get rootNode():IGuideNode
Descrizione dei metodi

select

()metodo
public function select(node:IGuideNode):Boolean

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

select will change the Guide view and focus to the provided GuideNode. It set First Panel and Item found from the given GuideNode.

Parametri

node:IGuideNode — the guide item to navigate to, can be a node type of one of: guide, section, panel, item.

Restituisce
Boolean — Boolean

selectFirst

()metodo 
public function selectFirst(type:String = "panel"):Boolean

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

selectFirst changes the guide to the first GuideNode instance of the type requested.

Parametri

type:String (default = "panel") — the guide item type of the first of its kind to navigate to. - default is PANEL, other options avaliable are GUIDE, SECTION, ITEM.

Restituisce
Boolean — Boolean

selectLast

()metodo 
public function selectLast(type:String = "panel"):Boolean

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

selectLast changes the guide to the last GuideNode instance of the type requested.

Parametri

type:String (default = "panel") — the guide item type of the last of its kind to navigate to. - default is PANEL, other options avaliable are GUIDE, SECTION, ITEM.

Restituisce
Boolean — Boolean

selectNext

()metodo 
public function selectNext(type:String = "panel"):Boolean

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

selectNext changes the guide to the next GuideNode instance of the type requested.

Parametri

type:String (default = "panel") — the guide item type of the next of its kind to navigate to. - default is PANEL, other options avaliable are GUIDE, SECTION, ITEM.

Restituisce
Boolean — Boolean

selectPrevious

()metodo 
public function selectPrevious(type:String = "panel"):Boolean

Versione linguaggio: ActionScript 3.0
Versione prodotto: Adobe Digital Enterprise Platform Document Services - Guide 10
Versioni runtime: AIR 1.0, Flash Player 10.2

selectPrevious changes the guide to the previous GuideNode instance of the type requested.

Parametri

type:String (default = "panel") — the guide item type of the previous of its kind to navigate to. - default is PANEL, other options avaliable are GUIDE, SECTION, ITEM.

Restituisce
Boolean — Boolean




[ X ]Perché in inglese?
Il contenuto della Guida di riferimento di ActionScript 3.0 appare in inglese

Non tutte le parti della Guida di riferimento di ActionScript 3.0 sono tradotte in tutte le lingue. Quando un elemento del linguaggio non è tradotto, viene riportato in inglese. Ad esempio, la classe ga.controls.HelpBox non è tradotta in nessuna lingua. Pertanto, nella versione italiana della guida di riferimento, la descrizione della classe ga.controls.HelpBox è riportata in inglese.