root/trunk/as3/com/jeroenwijering/events/SPLoaderEvent.as

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**/
6package com.jeroenwijering.events {
7
8
9import flash.events.Event;
10
11
12public 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}
Note: See TracBrowser for help on using the browser.