/ Published in: ActionScript 3
URL: http://www.flashcoder.net/blog/?p=100
Expand |
Embed | Plain Text
package { import flash.events.Event; public class MediaControlEvent extends flash.events.Event { public static const CONTROL_TYPE:String = “headControl”; private var command:String; public function MediaControlEvent( command:String ) { super( CONTROL_TYPE); this.command = command; } } }
You need to login to post a comment.
