您的位置:首页 > 其它

考卷列表

2004-11-23 11:03 253 查看
第一份是白乌鸦交的:
白乌鸦昨天开会一言不发, 想不到却是最积极,最热情的~!

pre {font-family:"Courier New", Courier, Arial; font-size: 12px;}
.operator {color: #000000;}
.keyword {color: #993300;}
.identifier {color: #000087;}
.properties {color: #000087;}
.identifier2 {color : #000087;}
.linecomment, .blockcomment {color: #808080;}
.string {color: #0000FF;}

function showTip(color, x) {
createTextField("txt", 1, _xmouse+15, _ymouse+20, x.length*5, 16);
txt.multiline = false;
txt.wordWrap = true;
txt.border = true;
txt.selectable = false;
txt.borderColor = color;
myformat = new TextFormat();
myformat.font = "Verdana";
myformat.color = color;
myformat.size = 9;
txt.text = x;
onEnterFrame = function () {
txt._x = _xmouse+15;
txt._y = _ymouse+20;
txt.setTextFormat(myformat);
};
}
function endTip() {
delete this.onEnterFrame;
removeMovieClip(txt);
}
//显示tip
btn.onRollOver = function() {
showTip(0x666666, "This is my first test field object text");
};
btn.onRollOut = endTip;
条理很清晰,简洁, 不错~!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: