Skip to content

Instantly share code, notes, and snippets.

@jbuda
Created March 19, 2013 13:42
Show Gist options
  • Save jbuda/5196188 to your computer and use it in GitHub Desktop.
Save jbuda/5196188 to your computer and use it in GitHub Desktop.
ProgressBarEvent
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