Created
March 19, 2013 13:42
-
-
Save jbuda/5196188 to your computer and use it in GitHub Desktop.
ProgressBarEvent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.progressbar.events { | |
import flash.events.Event; | |
import mx.collections.ArrayCollection; | |
[Bindable] | |
public class ProgressBarEvent extends Event { | |
public static const INCREASE:String = "increaseEvent"; | |
public function ProgressBarEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=true) { | |
super(type,bubbles,cancelable); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment