?? pointhollow.as
字號:
?package ChartObjects.Elements {
import ChartObjects.Elements.PointDotBase;
import flash.display.BlendMode;
import flash.display.Sprite;
public class PointHollow extends PointDotBase {
public function PointHollow( index:Number, style:Object ) {
super( index, style );
this.visible = true;
this.graphics.lineStyle( 0, 0, 0 );
this.graphics.beginFill( style.colour, 1 );
this.graphics.drawCircle( 0, 0, style['dot-size']);
//
// punch out the hollow circle:
//
this.graphics.drawCircle( 0, 0, style['dot-size']-style.width);
this.graphics.endFill();
//
// HACK: we fill an invisible circle over
// the hollow circle so the mouse over
// event fires correctly (even when the
// mouse is in the hollow part)
//
this.graphics.lineStyle( 0, 0, 0 );
this.graphics.beginFill(0, 0);
this.graphics.drawCircle( 0, 0, style['dot-size'] );
this.graphics.endFill();
//
// MASK
//
var s:Sprite = new Sprite();
s.graphics.lineStyle( 0, 0, 0 );
s.graphics.beginFill( 0, 1 );
s.graphics.drawCircle( 0, 0, style['dot-size'] + style['halo-size'] );
s.blendMode = BlendMode.ERASE;
this.line_mask = s;
this.attach_events();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -