Class Border extends MovieClip {
Private var borderClip: MovieClip;
Public var x: Number;
Public var y: Number;
Public var width: Number;
Public var height: Number;
Public function Border (){
CreateEmptyMovieClip ("borderClip", 1000 );
X = this. _ x;
Y = this. _ y;
Width = this. _ width;
Height = this. _ height;
}
Public function makeBorder (): Void {
With (borderClip ){
LineStyle (0, 0xff0000, 100 );
BeginFill (0xff6600, 20 );
MoveTo (this. x, this. y );
LineTo (this. x + this. width, this. y );
LineTo (this. x + this. width, this. y + this. height );
LineTo (this. x, this. y + this. height );
LineTo (this. x, this. y );
EndFill ();
}
}
Public function removeBorder (): Void {
BorderClip. clear ();
}
Public function onrolover (): Void {
SwapDepths (10000 );
MakeBorder ();
}
Public function onrolout (): Void {
RemoveBorder ();
}
Public function onDragOut (): Void {
RemoveBorder ();
}
Public function onPress (): Void {
This. startDrag ();
}
Public function onRelease (): Void {
StopDrag ();
}
Public function onReleaseOutside (): Void {
StopDrag ();
}
}
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.