|
Revision 88, 0.7 kB
(checked in by jeroen, 13 months ago)
|
|
merged 4.2 player to trunk
|
| Line | |
|---|
| 1 | /** |
|---|
| 2 | * Definition of the events fired by the SPLoader, which loads the skin and plugins SWF. |
|---|
| 3 | * |
|---|
| 4 | * These events are not exposed through the API. |
|---|
| 5 | **/ |
|---|
| 6 | package com.jeroenwijering.events { |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | import flash.events.Event; |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | public class SPLoaderEvent extends Event { |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | /** Definition for the event that indicates the skin is loaded. **/ |
|---|
| 16 | public static var SKIN:String = "SKIN"; |
|---|
| 17 | /** Definition for the event that indicates all plugins are loaded. **/ |
|---|
| 18 | public static var PLUGINS:String = "PLUGINS"; |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | /** |
|---|
| 22 | * Constructor; defines which event is fired. |
|---|
| 23 | * |
|---|
| 24 | * @param typ The definition of the event. |
|---|
| 25 | * @param dat An object with all associated data. |
|---|
| 26 | **/ |
|---|
| 27 | public function SPLoaderEvent(typ:String,bbl:Boolean=false,ccb:Boolean=false):void { |
|---|
| 28 | super(typ, bbl, ccb); |
|---|
| 29 | }; |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | }; |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | } |
|---|