loadVariables("chen.asp", "");
System.useCodepage = true;
stop ();
滚动条代码:
onClipEvent (load)
{
a = 250;
tx = this._x;
ty = this._y;
ty1 = this._y + a;
}
onClipEvent (enterFrame)
{
_root.chen.scroll = int(_root.chen.maxscroll * (this._y - ty) / a);
}
on (press)
{
startDrag (this, true, tx, ty, tx, ty1);
}
on (release, releaseOutside)
{
stopDrag ();
}