skinelement.as

来自「php+FCS+MYSQL的flash视频聊天室程序」· AS 代码 · 共 28 行

AS
28
字号
class mx.skins.SkinElement extends MovieClip
{
    var _visible, _x, _y, _width, _height;
    function SkinElement()
    {
        super();
    } // End of the function
    static function registerElement(name, className)
    {
        Object.registerClass(name, className == undefined ? (mx.skins.SkinElement) : (className));
        _global.skinRegistry[name] = true;
    } // End of the function
    function set visible(visible)
    {
        _visible = visible;
    } // End of the function
    function move(x, y)
    {
        _x = x;
        _y = y;
    } // End of the function
    function setSize(w, h)
    {
        _width = w;
        _height = h;
    } // End of the function
} // End of Class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?