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...
com.adobe.gravity.framework 

BundleEvent  - AS3 ADEP Client Component

Paketcom.adobe.gravity.framework
Sınıfpublic class BundleEvent
Miras AlmaBundleEvent Inheritance Event Inheritance Object

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

BundleEvents are dispatched for bundle lifecycle transitions.



Genel Özellikler
 ÖzellikTanımlayan:
 Inheritedbubbles : Boolean
[salt okunur] Bir olayın köpüren bir olay olup olmadığını belirtir.
Event
  bundle : IBundle
[salt okunur] The bundle undergoing a lifecycle transition.
BundleEvent
 Inheritedcancelable : Boolean
[salt okunur] Olayla ilişkilendirilmiş davranışın önlenebilir olup olmadığını gösterir.
Event
 Inheritedconstructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru.
Object
 InheritedcurrentTarget : Object
[salt okunur] Bu Event nesnesini olay dinleyicisiyle etkin olarak işleyen nesne.
Event
 InheritedeventPhase : uint
[salt okunur] Olay akışındaki geçerli aşama.
Event
 Inheritedtarget : Object
[salt okunur] Olay hedefi.
Event
 Inheritedtype : String
[salt okunur] Olay türü.
Event
Genel Yöntemler
 YöntemTanımlayan:
  
BundleEvent(type:String, bundle:IBundle)
Constructor.
BundleEvent
  
[geçersiz kıl] Duplicates an instance of an Event subclass.
BundleEvent
 Inherited
formatToString(className:String, ... arguments):String
Özel ActionScript 3.0 Event sınıfınızdaki toString() yöntemini uygulamak için bir yardımcı işlev.
Event
 Inherited
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir.
Object
 Inherited
Olayda preventDefault() öğesinin çağrılmış olup olmadığını kontrol eder.
Event
 Inherited
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir.
Object
 Inherited
Bir olayın varsayılan davranışını, bu yapılabiliyorsa iptal eder.
Event
 Inherited
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir.
Object
 Inherited
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar.
Object
 Inherited
Olay akışında geçerli düğümdeki ve ondan sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller.
Event
 Inherited
Olay akışında geçerli düğümden sonra gelen düğümlerdeki olay dinleyicilerin işlenmesini engeller.
Event
 Inherited
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür.
Object
 Inherited
Event nesnesinin tüm özelliklerini içeren bir dize döndürülür.
Event
 Inherited
Belirtilen nesnenin temel değerini döndürür.
Object
Genel Sabitler
 SabitTanımlayan:
  BUNDLE_INSTALLED : String = "bundleInstalled"
[statik] A bundle has been installed.
BundleEvent
  BUNDLE_RESOLVED : String = "bundleResolved"
[statik] A bundle has been resolved.
BundleEvent
  BUNDLE_RESOLVING : String = "bundleResolving"
[statik] A bundle is about to be resolved.
BundleEvent
  BUNDLE_STARTED : String = "bundleStarted"
[statik] A bundle has been started.
BundleEvent
  BUNDLE_STARTING : String = "bundleStarting"
[statik] A bundle is about to be started.
BundleEvent
  BUNDLE_STOPPED : String = "bundleStopped"
[statik] A bundle has been stopped.
BundleEvent
  BUNDLE_STOPPING : String = "bundleStopping"
[statik] A bundle is about to be stopped.
BundleEvent
  BUNDLE_UNINSTALLED : String = "bundleUninstalled"
[statik] A bundle has been uninstalled.
BundleEvent
  BUNDLE_UNINSTALLING : String = "bundleUninstalling"
[statik] A bundle is about to be uninstalled.
BundleEvent
  BUNDLE_UPDATED : String = "bundleUpdated"
[statik] A bundle has been updated.
BundleEvent
  BUNDLE_UPDATING : String = "bundleUpdating"
[statik] A bundle is about to be updated.
BundleEvent
Özellik Ayrıntısı

bundle

özellik
bundle:IBundle  [salt okunur]

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

The bundle undergoing a lifecycle transition.



Uygulama
    public function get bundle():IBundle
Yapıcı Ayrıntı

BundleEvent

()Yapıcı
public function BundleEvent(type:String, bundle:IBundle)

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

Constructor.

Parametreler
type:String — The type of lifecycle event.
 
bundle:IBundle — The bundle involved.
Yöntem Ayrıntısı

clone

()yöntem
override public function clone():Event

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

Duplicates an instance of an Event subclass.

Returns a new Event object that is a copy of the original instance of the Event object. You do not normally call clone(); the EventDispatcher class calls it automatically when you redispatch an event—that is, when you call dispatchEvent(event) from a handler that is handling event.

The new Event object includes all the properties of the original.

When creating your own custom Event class, you must override the inherited Event.clone() method in order for it to duplicate the properties of your custom class. If you do not set all the properties that you add in your event subclass, those properties will not have the correct values when listeners handle the redispatched event.

In this example, PingEvent is a subclass of Event and therefore implements its own version of clone().

     class PingEvent extends Event {
         var URL:String;
         
     public override function clone():Event {
              return new PingEvent(type, bubbles, cancelable, URL);
        }
     }
     

Döndürür
Event — A new Event object that is identical to the original.
Sabit Ayrıntısı

BUNDLE_INSTALLED

Sabit
public static const BUNDLE_INSTALLED:String = "bundleInstalled"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle has been installed.

BUNDLE_RESOLVED

Sabit 
public static const BUNDLE_RESOLVED:String = "bundleResolved"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle has been resolved.

BUNDLE_RESOLVING

Sabit 
public static const BUNDLE_RESOLVING:String = "bundleResolving"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle is about to be resolved.

BUNDLE_STARTED

Sabit 
public static const BUNDLE_STARTED:String = "bundleStarted"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle has been started.

BUNDLE_STARTING

Sabit 
public static const BUNDLE_STARTING:String = "bundleStarting"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle is about to be started.

BUNDLE_STOPPED

Sabit 
public static const BUNDLE_STOPPED:String = "bundleStopped"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle has been stopped.

BUNDLE_STOPPING

Sabit 
public static const BUNDLE_STOPPING:String = "bundleStopping"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle is about to be stopped.

BUNDLE_UNINSTALLED

Sabit 
public static const BUNDLE_UNINSTALLED:String = "bundleUninstalled"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle has been uninstalled.

BUNDLE_UNINSTALLING

Sabit 
public static const BUNDLE_UNINSTALLING:String = "bundleUninstalling"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle is about to be uninstalled.

BUNDLE_UPDATED

Sabit 
public static const BUNDLE_UPDATED:String = "bundleUpdated"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle has been updated.

BUNDLE_UPDATING

Sabit 
public static const BUNDLE_UPDATING:String = "bundleUpdating"

Dil Sürümü: ActionScript 3.0
Ürün Sürümü: Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10
Çalışma Zamanı Sürümleri: AIR 1.1, Flash Player 9

A bundle is about to be updated.





[ 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.