Adobe® Flash® Platform için ActionScript® 3.0 Başvurusu
Ana Sayfa  |  Paket ve Sınıf Listesini Gizle |  Paketler  |  Sınıflar  |  Yenilikler  |  Dizin  |  Ekler  |  Niçin İngilizce?
Filtreler: Sunucudan Veri Alınıyor...
Sunucudan Veri Alınıyor...
org.osmf.traits 

LoaderBase  - AS3 OSMF

Paketorg.osmf.traits
Sınıfpublic class LoaderBase
Miras AlmaLoaderBase Inheritance EventDispatcher Inheritance Object
Alt Sınıflar F4MLoader, ImageLoader, ManifestLoaderBase, NetLoader, SoundLoader, SWFLoader

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

LoaderBase is the base class for objects that are capable of loading and unloading LoadTraits.

A MediaElement that has the LoadTrait uses a LoaderBase to perform the actual load operation. This decoupling of the loading and unloading from the media allows a MediaElement to use different loaders for different circumstances.



Genel Özellikler
 ÖzellikTanımlayan:
 Inheritedconstructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru.
Object
Genel Yöntemler
 YöntemTanımlayan:
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
EventDispatcher nesnesi olan bir olay dinleyici nesnesini, dinleyicinin bir olayın bildirimini alması için kaydeder.
EventDispatcher
  
Indicates whether this loader is capable of handling (loading) the given MediaResourceBase.
LoaderBase
 Inherited
Olay akışına bir olay gönderir.
EventDispatcher
 Inherited
EventDispatcher nesnesinin belirli bir olay türü için kayıtlı dinleyicisi olup olmadığını kontrol eder.
EventDispatcher
 Inherited
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir.
Object
 Inherited
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir.
Object
  
Loads the specified LoadTrait.
LoaderBase
 Inherited
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir.
Object
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
EventDispatcher nesnesinden bir dinleyiciyi kaldırır.
EventDispatcher
 Inherited
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar.
Object
 Inherited
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür.
Object
 Inherited
Belirtilen nesnenin dize olarak temsil edilen halini döndürür.
Object
  
Unloads the specified LoadTrait.
LoaderBase
 Inherited
Belirtilen nesnenin temel değerini döndürür.
Object
 Inherited
Bir olay dinleyicisinin bu EventDispatcher nesnesiyle mi, yoksa onun belirtilen olay türüne yönelik üst öğelerinden biriyle mi kayıtlı olduğunu kontrol eder.
EventDispatcher
Korunan Yöntemler
 YöntemTanımlayan:
  
Executes the load of the given LoadTrait.
LoaderBase
  
Executes the unload of the given LoadTrait.
LoaderBase
  
Updates the given LoadTrait with the given info, and dispatches the state change event if necessary.
LoaderBase
Olaylar
 Olay Özet Tanımlayan:
 Inherited[broadcast olayı] Flash Player veya AIR uygulaması işletim sistemi odağına gelip etkin olduğunda gönderilir.EventDispatcher
 Inherited[broadcast olayı] Çalışan Flash Player veya AIR uygulaması sistem odağını kaybettiğinde ve etkin olmayan duruma geldiğinde gönderilir.EventDispatcher
  Dispatched when the state of a LoadTrait being loaded or unloaded by the LoaderBase has changed.LoaderBase
Yöntem Ayrıntısı

canHandleResource

()yöntem
public function canHandleResource(resource:MediaResourceBase):Boolean

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Indicates whether this loader is capable of handling (loading) the given MediaResourceBase.

Parametreler

resource:MediaResourceBase — The media resource in question.

Döndürür
Boolean — True if this loader can handle the given resource.

executeLoad

()yöntem 
protected function executeLoad(loadTrait:org.osmf.traits:LoadTrait):void

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Executes the load of the given LoadTrait.

This method is invoked by load(). Subclasses should override this method to provide their own implementation of the load operation.

Parametreler

loadTrait:org.osmf.traits:LoadTrait

executeUnload

()yöntem 
protected function executeUnload(loadTrait:org.osmf.traits:LoadTrait):void

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Executes the unload of the given LoadTrait.

This method is invoked by unload(). Subclasses should override this method to provide their own implementation of the unload operation.

Parametreler

loadTrait:org.osmf.traits:LoadTrait

load

()yöntem 
public final function load(loadTrait:org.osmf.traits:LoadTrait):void

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Loads the specified LoadTrait. Changes the load state of the LoadTrait. Dispatches the loadStateChange event with every state change.

Typical states are LOADING while the LoadTrait is loading, READY after it has successfully completed loading, and LOAD_ERROR if it fails to complete loading.

If the LoadTrait's LoadState is LOADING or READY when the method is called, this method throws an error.

Subclasses should override the executeLoad method to perform the actual load operation.

Parametreler

loadTrait:org.osmf.traits:LoadTrait — The LoadTrait to load.


Atar
IllegalOperationError IllegalOperationError If this loader cannot load the given LoadTrait (as determined by the canHandleResource() method), or if the LoadTrait's LoadState is LOADING or READY.

İlgili API Öğeleri

unload

()yöntem 
public final function unload(loadTrait:org.osmf.traits:LoadTrait):void

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Unloads the specified LoadTrait. Changes the load state of the LoadTrait. Dispatches the loaderStateChange event with every state change.

Typical states are UNLOADING while the LoadTrait is unloading, UNINITIALIZED after it has successfully completed unloading, and LOAD_ERROR if it fails to complete unloading.

If the LoadTrait's LoadState is not READY when the method is called, this method throws an error.

Subclasses should override the executeUnload method to perform the actual unload operation.

Parametreler

loadTrait:org.osmf.traits:LoadTrait — The LoadTrait to unload.


Atar
IllegalOperationError IllegalOperationError If this loader cannot unload the specified LoadTrait (as determined by the canHandleResource() method), or if the LoadTrait's LoadState is not READY.

İlgili API Öğeleri

updateLoadTrait

()yöntem 
protected final function updateLoadTrait(loadTrait:org.osmf.traits:LoadTrait, newState:String):void

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Updates the given LoadTrait with the given info, and dispatches the state change event if necessary.

Parametreler

loadTrait:org.osmf.traits:LoadTrait — The LoadTrait to update.
 
newState:String — The new LoadState of the LoadTrait.

Olay Ayrıntısı

loadStateChange

Olay
Olay Nesne Türü: org.osmf.events.LoaderEvent
özellik LoaderEvent.type = org.osmf.events.LoaderEvent.LOAD_STATE_CHANGE

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: OSMF 1.0
Çalışma Zamanı Sürümleri: Flash Player 10, AIR 1.5

Dispatched when the state of a LoadTrait being loaded or unloaded by the LoaderBase has changed.

The LoaderEvent.LOAD_STATE_CHANGE constant defines the value of the type property of the event object for a loadStateChange event.




[ X ]Niçin İngilizce?
ActionScript 3.0 Başvurusu'ndaki içerik İngilizce görünür

ActionScript 3.0 Başvurusu'nun tüm bölümleri tüm dillere çevrilmemiştir. Bir dil öğesi çevrilmediğinde İngilizce görünür. Örneğin, ga.controls.HelpBox sınıfı hiçbir dile çevrilmez. Bu nedenle, başvurunun Türkçe versiyonunda ga.controls.HelpBox sınıfı İngilizce görünür.