📄 element.as
字号:
package charts.Elements {
import flash.display.Sprite;
import string.Utils;
import global.Global;
import flash.events.Event;
import flash.events.MouseEvent;
import caurina.transitions.Tweener;
import caurina.transitions.Equations;
import flash.geom.Point;
import flash.net.URLRequest;
import flash.net.navigateToURL;
import flash.external.ExternalInterface;
import elements.axis.XAxisLabels;
public class Element extends Sprite {
//
// for line data
//
public var _x:Number;
public var _y:Number;
public var index:Number;
protected var tooltip:String;
private var link:String;
public var is_tip:Boolean;
public var line_mask:Sprite;
public function Element() {}
public function resize( sc:ScreenCoordsBase, axis:Number ):void {
// because of radar co-ords:
// this.x = this.screen_x = sc.get_x_from_pos( this._x );
// this.y = this.screen_y = sc.get_y_from_val( this._y, (axis==2) );
var p:flash.geom.Point = sc.get_get_x_from_pos_and_y_from_val( this._x, this._y, (axis == 2) );
this.x = p.x;
this.y = p.y;
}
//
// for tooltip closest - return the middle point
//
public function get_mid_point():flash.geom.Point {
//
// dots have x, y in the center of the dot
//
return new flash.geom.Point( this.x, this.y );
}
/**
* When true, this element is displaying a tooltip
* and should fade-in, pulse, or become active
*
* override this
*
* @param b
*/
public function set_tip( b:Boolean ):void {}
//
// if this is put in the Element constructor, it is
// called multiple times for some reason :-(
//
protected function attach_events():void {
// weak references so the garbage collector will kill them:
this.addEventListener(MouseEvent.MOUSE_OVER, this.mouseOver, false, 0, true);
this.addEventListener(MouseEvent.MOUSE_OUT, this.mouseOut, false, 0, true);
}
public function mouseOver(event:Event):void {
this.pulse();
}
public function pulse():void {
// pulse:
Tweener.addTween(this, {alpha:.5, time:0.4, transition:"linear"} );
Tweener.addTween(this, {alpha:1, time:0.4, delay:0.4, onComplete:this.pulse, transition:"linear"});
}
public function mouseOut(event:Event):void {
// stop the pulse, then fade in
Tweener.removeTweens(this);
Tweener.addTween(this, { alpha:1, time:0.4, transition:Equations.easeOutElastic } );
}
public function set_on_click( s:String ):void {
this.link = s;
this.buttonMode = true;
this.useHandCursor = true;
// weak references so the garbage collector will kill it:
this.addEventListener(MouseEvent.MOUSE_UP, this.mouseUp, false, 0, true);
}
private function mouseUp(event:Event):void {
tr.ace( this.link );
tr.ace(this.link.substring(0, 4));
if ( this.link.substring(0, 5) == 'http:' )
this.browse_url( this.link );
else
ExternalInterface.call( this.link, this.index );
}
private function browse_url( url:String ):void {
var req:URLRequest = new URLRequest(this.link);
try
{
navigateToURL(req);
}
catch (e:Error)
{
trace("Error opening link: " + this.link);
}
}
public function get_tip_pos():Object {
return {x:this.x, y:this.y};
}
//
// is the mouse above, inside or below this object?
//
public function inside( x:Number ):Boolean {
return false;
}
//
// this may be overriden by Collection objects
//
public function get_tooltip():String {
return this.tooltip;
}
/**
* Replace #x_label# with the label. This is called
* after the X Label object has been build (see main.as)
*
* @param labels
*/
public function tooltip_replace_labels( labels:XAxisLabels ):void {
this.tooltip = this.tooltip.replace('#x_label#', labels.get( this.index ) );
}
/**
* Mem leaks
*/
public function die():void {
if ( this.line_mask != null ) {
this.line_mask.graphics.clear();
this.line_mask = null;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -