Pacchetto | mx.core |
Classe | public class DesignLayer |
Ereditarietà | DesignLayer EventDispatcher Object |
Implementa | IMXMLObject |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
visible
and alpha property
that when set will propagate to the associated layer children.
Proprietà | Definito da | ||
---|---|---|---|
alpha : Number
The alpha for this design layer instance, between 0.0 and 1.0. | DesignLayer | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
effectiveAlpha : Number [sola lettura]
Property that returns the effective alpha, between 0.0 and 1.0,
of this design layer. | DesignLayer | ||
effectiveVisibility : Boolean [sola lettura]
Returns the effective visibility of this design layer. | DesignLayer | ||
id : String
ID of the layer component. | DesignLayer | ||
numLayers : int [sola lettura]
The number of DesignLayer children directly parented by this layer. | DesignLayer | ||
parent : DesignLayer [sola lettura]
This layer's parent layer. | DesignLayer | ||
visible : Boolean
The visibility for this design layer instance. | DesignLayer |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | DesignLayer | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Adds a DesignLayer child to this layer. | DesignLayer | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Returns the DesignLayer child at the specified index. | DesignLayer | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Called after the implementing object has been created and all
component properties specified on the MXML tag have been initialized. | DesignLayer | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Removes a DesignLayer child from this layer. | DesignLayer | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Evento | Riepilogo | Definito da | ||
---|---|---|---|---|
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR ottiene lo stato di attivazione del sistema operativo ed entra nello stato attivo. | EventDispatcher | |||
[evento di trasmissione] Inviato quando Flash Player o l'applicazione AIR perde l'attivazione del sistema operativo e sta entrando nello stato inattivo. | EventDispatcher | |||
Dispatched by the layer when either effectiveVisibility or effectiveAlpha changes. | DesignLayer |
alpha | proprietà |
alpha:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The alpha for this design layer instance, between 0.0 and 1.0.
When updated, the appropriate change event for effectiveAlpha
will be dispatched to all layerPropertyChange
listeners
for this layer, as well as those of affected descendant layers if any.
Il valore predefinito è 1.0.
Implementazione
public function get alpha():Number
public function set alpha(value:Number):void
effectiveAlpha | proprietà |
effectiveAlpha:Number
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Property that returns the effective alpha, between 0.0 and 1.0, of this design layer. This value multiplies the alpha of this layer by the alpha of any ancestor layers.
Il valore predefinito è 1.0.
Implementazione
public function get effectiveAlpha():Number
effectiveVisibility | proprietà |
effectiveVisibility:Boolean
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Returns the effective visibility of this design layer. This value takes into consideration the visibility of this layer and any ancestor layers.
Il valore predefinito è true.
Implementazione
public function get effectiveVisibility():Boolean
id | proprietà |
id:String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
ID of the layer component. This value becomes the instance name of the layer and as such, should not contain any white space or special characters.
Implementazione
public function get id():String
public function set id(value:String):void
numLayers | proprietà |
parent | proprietà |
parent:DesignLayer
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
This layer's parent layer.
Il valore predefinito è null.
Implementazione
public function get parent():DesignLayer
visible | proprietà |
visible:Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
The visibility for this design layer instance.
When updated, the appropriate change event for effectiveVisibility
will be dispatched to all layerPropertyChange
listeners for
this layer, as well as those of affected descendant layers if any.
Il valore predefinito è true.
Implementazione
public function get visible():Boolean
public function set visible(value:Boolean):void
DesignLayer | () | Funzione di costruzione |
public function DesignLayer()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
addLayer | () | metodo |
public function addLayer(value:DesignLayer):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Adds a DesignLayer child to this layer.
Parametri
value:DesignLayer — The layer child to add.
|
getLayerAt | () | metodo |
public function getLayerAt(index:int):DesignLayer
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Returns the DesignLayer child at the specified index.
Note that the order of DesignLayer children is insignificant.
The getLayerAt
method is meant to be used in
conjunction with numLayers to iterate over the child list.
Parametri
index:int — The 0-based index of a DesignLayer child.
|
DesignLayer — The specified DesignLayer child if index is between
0 and numLayers - 1. Returns null
if the index is invalid.
|
Elementi API correlati
initialized | () | metodo |
public function initialized(document:Object, id:String):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Called after the implementing object has been created and all component properties specified on the MXML tag have been initialized.
Parametri
document:Object — The MXML document that created this object.
| |
id:String — The identifier used by document to refer
to this object.
If the object is a deep property on document ,
id is null.
|
removeLayer | () | metodo |
public function removeLayer(value:DesignLayer):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 4 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Removes a DesignLayer child from this layer.
Parametri
value:DesignLayer — The layer child to remove.
|
layerPropertyChange | Evento |
mx.events.PropertyChangeEvent
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Dispatched by the layer when either effectiveVisibility
or
effectiveAlpha
changes.
Tue Jun 12 2018, 02:44 PM Z