source:
code/Website/open-flash-chart/ShowTipEvent.as@
7856
| Last change on this file since 7856 was 7849, checked in by , 16 years ago | |
|---|---|
| File size: 342 bytes | |
| Line | |
|---|---|
| 1 | package { |
| 2 | import flash.events.Event; |
| 3 | |
| 4 | public class ShowTipEvent extends flash.events.Event { |
| 5 | public static const SHOW_TIP_TYPE:String = "ShowTipEvent"; |
| 6 | |
| 7 | // The amount we need to incrememnt by |
| 8 | public var pos:Number; |
| 9 | |
| 10 | public function ShowTipEvent( pos:Number ) { |
| 11 | super( SHOW_TIP_TYPE ); |
| 12 | this.pos = pos; |
| 13 | } |
| 14 | } |
| 15 | } |
Note:
See TracBrowser
for help on using the repository browser.
