⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skinelement.as

📁 php+FCS+MYSQL的flash视频聊天室程序
💻 AS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -