亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? uiobject.as

?? flash 視頻聊天室源碼,非常好的源碼
?? AS
?? 第 1 頁 / 共 2 頁
字號:
class mx.core.UIObject extends MovieClip
{
    var _width, _height, _x, _y, _parent, __get__width, __get__height, _minHeight, __get__minHeight, _minWidth, __get__minWidth, _visible, dispatchEvent, __get__visible, _xscale, __get__scaleX, _yscale, __get__scaleY, methodTable, onEnterFrame, tfList, __width, __height, moveTo, lineTo, createTextField, attachMovie, buildDepthTable, findNextAvailableDepth, idNames, childrenCreated, _name, createAccessibilityImplementation, _endInit, validateNow, hasOwnProperty, _loc2, initProperties, stylecache, className, ignoreClassStyleDeclaration, _tf, fontFamily, fontSize, color, marginLeft, marginRight, fontStyle, fontWeight, textAlign, textIndent, textDecoration, embedFonts, styleName, enabled, __get__bottom, __get__left, __set__minHeight, __set__minWidth, __get__right, __set__scaleX, __set__scaleY, __get__top, __set__visible, __get__x, __get__y;
    function UIObject()
    {
        super();
        this.constructObject();
    } // End of the function
    function get width()
    {
        return (_width);
    } // End of the function
    function get height()
    {
        return (_height);
    } // End of the function
    function get left()
    {
        return (_x);
    } // End of the function
    function get x()
    {
        return (_x);
    } // End of the function
    function get top()
    {
        return (_y);
    } // End of the function
    function get y()
    {
        return (_y);
    } // End of the function
    function get right()
    {
        //return (_parent.width - (_x + this.width()));
    } // End of the function
    function get bottom()
    {
        //return (_parent.height - (_y + this.height()));
    } // End of the function
    function getMinHeight(Void)
    {
        return (_minHeight);
    } // End of the function
    function setMinHeight(h)
    {
        _minHeight = h;
    } // End of the function
    function get minHeight()
    {
        return (this.getMinHeight());
    } // End of the function
    function set minHeight(h)
    {
        this.setMinHeight(h);
        //return (this.minHeight());
        null;
    } // End of the function
    function getMinWidth(Void)
    {
        return (_minWidth);
    } // End of the function
    function setMinWidth(w)
    {
        _minWidth = w;
    } // End of the function
    function get minWidth()
    {
        return (this.getMinWidth());
    } // End of the function
    function set minWidth(w)
    {
        this.setMinWidth(w);
        //return (this.minWidth());
        null;
    } // End of the function
    function setVisible(x, noEvent)
    {
        if (x != _visible)
        {
            _visible = x;
            if (noEvent != true)
            {
                this.dispatchEvent({type: x ? ("reveal") : ("hide")});
            } // end if
        } // end if
    } // End of the function
    function get visible()
    {
        return (_visible);
    } // End of the function
    function set visible(x)
    {
        this.setVisible(x, false);
        //return (this.visible());
        null;
    } // End of the function
    function get scaleX()
    {
        return (_xscale);
    } // End of the function
    function set scaleX(x)
    {
        _xscale = x;
        //return (this.scaleX());
        null;
    } // End of the function
    function get scaleY()
    {
        return (_yscale);
    } // End of the function
    function set scaleY(y)
    {
        _yscale = y;
        //return (this.scaleY());
        null;
    } // End of the function
    function doLater(obj, fn)
    {
        if (methodTable == undefined)
        {
            methodTable = new Array();
        } // end if
        methodTable.push({obj: obj, fn: fn});
        onEnterFrame = doLaterDispatcher;
    } // End of the function
    function doLaterDispatcher(Void)
    {
        delete this.onEnterFrame;
        if (invalidateFlag)
        {
            this.redraw();
        } // end if
        var _loc3 = methodTable;
        methodTable = new Array();
        if (_loc3.length > 0)
        {
            var _loc2;
            while (_loc2 = _loc3.shift(), _loc3.shift() != undefined)
            {
                _loc2.obj[_loc2.fn]();
            } // end while
        } // end if
    } // End of the function
    function cancelAllDoLaters(Void)
    {
        delete this.onEnterFrame;
        methodTable = new Array();
    } // End of the function
    function invalidate(Void)
    {
        invalidateFlag = true;
        onEnterFrame = doLaterDispatcher;
    } // End of the function
    function invalidateStyle(Void)
    {
        this.invalidate();
    } // End of the function
    function redraw(bAlways)
    {
        if (invalidateFlag || bAlways)
        {
            invalidateFlag = false;
            var _loc2;
            for (var _loc2 in tfList)
            {
                tfList[_loc2].draw();
            } // end of for...in
            this.draw();
            this.dispatchEvent({type: "draw"});
        } // end if
    } // End of the function
    function draw(Void)
    {
    } // End of the function
    function move(x, y, noEvent)
    {
        var _loc3 = _x;
        var _loc2 = _y;
        _x = x;
        _y = y;
        if (noEvent != true)
        {
            this.dispatchEvent({type: "move", oldX: _loc3, oldY: _loc2});
        } // end if
    } // End of the function
    function setSize(w, h, noEvent)
    {
        var _loc2 = __width;
        var _loc3 = __height;
        __width = w;
        __height = h;
        this.size();
        if (noEvent != true)
        {
            this.dispatchEvent({type: "resize", oldWidth: _loc2, oldHeight: _loc3});
        } // end if
    } // End of the function
    function size(Void)
    {
        _width = __width;
        _height = __height;
    } // End of the function
    function drawRect(x1, y1, x2, y2)
    {
        this.moveTo(x1, y1);
        this.lineTo(x2, y1);
        this.lineTo(x2, y2);
        this.lineTo(x1, y2);
        this.lineTo(x1, y1);
    } // End of the function
    function createLabel(name, depth, text)
    {
        this.createTextField(name, depth, 0, 0, 0, 0);
        var _loc2 = this[name];
        _loc2._color = mx.core.UIObject.textColorList;
        _loc2._visible = false;
        _loc2.__text = text;
        if (tfList == undefined)
        {
            tfList = new Object();
        } // end if
        tfList[name] = _loc2;
        _loc2.invalidateStyle();
        this.invalidate();
        _loc2.styleName = this;
        return (_loc2);
    } // End of the function
    function createObject(linkageName, id, depth, initobj)
    {
        return (this.attachMovie(linkageName, id, depth, initobj));
    } // End of the function
    function createClassObject(className, id, depth, initobj)
    {
        var _loc3 = className.symbolName == undefined;
        if (_loc3)
        {
            Object.registerClass(className.symbolOwner.symbolName, className);
        } // end if
        var _loc4 = this.createObject(className.symbolOwner.symbolName, id, depth, initobj);
        if (_loc3)
        {
            Object.registerClass(className.symbolOwner.symbolName, className.symbolOwner);
        } // end if
        return (_loc4);
    } // End of the function
    function createEmptyObject(id, depth)
    {
        return (this.createClassObject(mx.core.UIObject, id, depth));
    } // End of the function
    function destroyObject(id)
    {
        var _loc2 = this[id];
        if (_loc2.getDepth() < 0)
        {
            var _loc4 = this.buildDepthTable();
            var _loc5 = this.findNextAvailableDepth(0, _loc4, "up");
            var _loc3 = _loc5;
            _loc2.swapDepths(_loc3);
        } // end if
        _loc2.removeMovieClip();
        delete this[id];
    } // End of the function
    function getSkinIDName(tag)
    {
        return (idNames[tag]);
    } // End of the function
    function setSkin(tag, linkageName, initObj)
    {
        if (_global.skinRegistry[linkageName] == undefined)
        {
            mx.skins.SkinElement.registerElement(linkageName, mx.skins.SkinElement);
        } // end if
        return (this.createObject(linkageName, this.getSkinIDName(tag), tag, initObj));
    } // End of the function
    function createSkin(tag)
    {
        var _loc2 = this.getSkinIDName(tag);
        this.createEmptyObject(_loc2, tag);
        return (this[_loc2]);
    } // End of the function
    function createChildren(Void)
    {
    } // End of the function
    function _createChildren(Void)
    {
        this.createChildren();
        childrenCreated = true;
    } // End of the function
    function constructObject(Void)
    {
        if (_name == undefined)
        {
            return;
        } // end if
        this.init();
        this._createChildren();
        this.createAccessibilityImplementation();
        this._endInit();
        if (validateNow)
        {
            this.redraw(true);
        }
        else
        {
            this.invalidate();
        } // end else if
    } // End of the function
    function initFromClipParameters(Void)
    {
        var _loc4 = false;
        var _loc2;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产在线麻豆精品观看| 香蕉成人伊视频在线观看| 51精品国自产在线| 精品久久国产老人久久综合| 国产精品美女久久久久高潮| 18涩涩午夜精品.www| 午夜电影网一区| 久久青草国产手机看片福利盒子| 欧美精品一区二区三| 美女一区二区视频| 欧美日韩不卡一区| 国产精品的网站| 国产成人福利片| 久久久亚洲综合| 99re热这里只有精品视频| 日本伊人精品一区二区三区观看方式| 国产欧美一区二区三区鸳鸯浴 | 欧美精品久久久久久久多人混战 | 国产精品久久久久毛片软件| 免费在线观看成人| 欧美日韩国产一级| 一区二区高清在线| 成人开心网精品视频| 久久精品视频一区二区三区| 人人精品人人爱| 欧美一级免费大片| 亚洲.国产.中文慕字在线| gogo大胆日本视频一区| 欧美国产精品专区| 丁香五精品蜜臀久久久久99网站| 精品国产乱码久久久久久牛牛| 日韩不卡免费视频| 欧美一区二区三区四区视频| 亚洲成av人**亚洲成av**| 欧美日韩综合色| 午夜av一区二区三区| 欧美视频在线观看一区| 亚洲猫色日本管| 欧美在线小视频| 一区二区三区电影在线播| 色综合欧美在线| 亚洲国产三级在线| 欧美伦理视频网站| 蜜桃精品视频在线| 久久综合资源网| 国产精品18久久久久| 欧美国产精品久久| www.亚洲国产| 亚洲精选一二三| 欧美人xxxx| 精品亚洲欧美一区| 欧美激情一区二区三区| 国产成a人无v码亚洲福利| 1区2区3区欧美| 欧美丰满高潮xxxx喷水动漫| 久久99精品一区二区三区 | 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 成人av网站免费观看| 亚洲精品成a人| 91麻豆精品国产91| 国产69精品一区二区亚洲孕妇| 国产精品久久久久影院| 欧美在线小视频| 精品在线视频一区| 国产日产欧产精品推荐色| 91在线无精精品入口| 日韩高清中文字幕一区| 久久日韩精品一区二区五区| 成人sese在线| 青青草国产成人av片免费| 国产午夜精品理论片a级大结局| 色国产综合视频| 久久国产免费看| 亚洲精品国产a久久久久久| 日韩视频免费观看高清在线视频| 成人午夜精品一区二区三区| 亚洲一二三区视频在线观看| 久久久久久久精| 欧美在线免费视屏| 国产精品77777竹菊影视小说| 亚洲综合色区另类av| 久久久精品一品道一区| 欧美日韩一区视频| 成人黄色大片在线观看| 日韩va亚洲va欧美va久久| 一区二区三区中文字幕| 久久久精品人体av艺术| 欧美精品一二三区| 99精品视频一区| 国产成人亚洲综合a∨婷婷图片| 亚洲乱码国产乱码精品精小说| www一区二区| 欧美三电影在线| 91天堂素人约啪| 国产高清在线精品| 乱中年女人伦av一区二区| 亚洲图片一区二区| 中文字幕制服丝袜一区二区三区| 欧美成人精品1314www| 欧美日本一区二区三区四区 | 欧美日韩国产欧美日美国产精品| 岛国一区二区在线观看| 狠狠色伊人亚洲综合成人| 肉肉av福利一精品导航| 一区二区三区产品免费精品久久75| 日本一区二区免费在线观看视频| 日韩欧美不卡一区| 在线综合亚洲欧美在线视频 | 本田岬高潮一区二区三区| 狠狠色丁香久久婷婷综合_中| 日韩精品成人一区二区在线| 亚洲成人黄色影院| 亚洲一级电影视频| 亚洲一区二区三区四区在线观看| 亚洲免费在线电影| 中文字幕一区二区三区视频| 国产精品传媒入口麻豆| 国产精品网站一区| 国产精品大尺度| 亚洲精品免费一二三区| 亚洲欧美综合另类在线卡通| 亚洲国产精品av| 中文字幕亚洲区| 亚洲免费观看高清完整版在线观看 | 五月激情六月综合| 性欧美疯狂xxxxbbbb| 日韩精品一卡二卡三卡四卡无卡| 天天色综合天天| 久99久精品视频免费观看| 精彩视频一区二区三区| 国产成人免费视频一区| av成人动漫在线观看| 在线观看不卡一区| 717成人午夜免费福利电影| 日韩限制级电影在线观看| 欧美精品一区二区三区在线播放| 久久精品免视看| 中文字幕在线一区| 亚洲风情在线资源站| 久久精品国产精品亚洲综合| 国产福利一区二区三区视频在线| www.欧美日韩国产在线| 欧美视频在线观看一区二区| 日韩精品在线一区| 亚洲国产成人在线| 亚洲综合在线五月| 久久精品国产秦先生| a美女胸又www黄视频久久| 欧美性视频一区二区三区| 欧美电影免费观看高清完整版在线观看| 久久免费午夜影院| 亚洲精品成人悠悠色影视| 久久99精品国产.久久久久| aaa欧美大片| 欧美一级视频精品观看| 国产精品久久久久三级| 日韩高清不卡在线| 不卡的看片网站| 这里只有精品99re| 亚洲色图第一区| 久久不见久久见免费视频7| 99久久精品国产毛片| 精品久久久久久久久久久院品网| 国产精品美女久久久久aⅴ| 性做久久久久久免费观看欧美| 国产成人av福利| 在线播放中文一区| 国产精品成人一区二区三区夜夜夜| 日韩电影在线观看网站| 91在线观看美女| 国产日韩欧美不卡在线| 日韩精品一区第一页| 在线亚洲一区二区| 国产精品日韩精品欧美在线| 蜜桃在线一区二区三区| 欧美日韩中字一区| 亚洲欧美成人一区二区三区| 高清beeg欧美| 久久久亚洲精品石原莉奈| 丝袜美腿亚洲一区| 欧美午夜宅男影院| 日韩毛片一二三区| 国产69精品久久久久777| www久久精品| 蜜臀国产一区二区三区在线播放| 欧美性猛交xxxx乱大交退制版| 国产精品免费av| 国产乱码精品一区二区三区忘忧草| 91精品国产综合久久精品性色| 亚洲黄色性网站| 色综合久久久久综合体桃花网| 国产欧美日韩在线观看| 狠狠色综合播放一区二区| 精品捆绑美女sm三区| 日本欧美一区二区在线观看| 91麻豆精品国产91久久久久久| 天堂成人国产精品一区| 欧美日韩国产免费一区二区| 天堂久久一区二区三区| 欧美一区二区高清|