亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
欧美一区二区视频网站| 亚洲乱码国产乱码精品精的特点| 国产精品亲子伦对白| 夜夜夜精品看看| 国产精品综合二区| 欧美一个色资源| 一区二区在线免费| 不卡的av电影| 久久青草欧美一区二区三区| 丝袜美腿成人在线| 一本一本大道香蕉久在线精品 | 欧美激情在线观看视频免费| 午夜伦欧美伦电影理论片| av中文字幕一区| 日本一区二区三级电影在线观看| 蜜桃视频一区二区三区| 欧美日韩高清一区| 夜夜嗨av一区二区三区中文字幕| 国产成人在线免费| 欧美成人性福生活免费看| 午夜精彩视频在线观看不卡| 欧美亚洲国产一区二区三区va| 中文字幕欧美一| 99国产精品视频免费观看| 中文字幕欧美国产| 成人黄色在线网站| 欧美激情一区二区三区不卡| av一区二区三区四区| 精品国产精品网麻豆系列| 麻豆精品一区二区综合av| 91精品婷婷国产综合久久性色| 天天做天天摸天天爽国产一区| 欧美情侣在线播放| 亚洲超碰精品一区二区| 欧美伦理电影网| 日韩国产一二三区| 日韩欧美一区中文| 国产在线不卡一区| 国产亚洲美州欧州综合国| 成人午夜视频网站| 亚洲欧美一区二区三区国产精品 | 中文字幕亚洲视频| 91首页免费视频| 亚洲女人的天堂| 在线亚洲高清视频| 天天综合网天天综合色| 欧美不卡在线视频| 成人午夜av在线| 亚洲天堂免费看| 欧美精品18+| 国产一区二区三区四| 亚洲视频一区二区在线| 欧美美女一区二区在线观看| 精品一区二区三区在线观看国产| 国产欧美日韩综合| 色94色欧美sute亚洲线路一久| 亚洲成人av在线电影| 久久精品网站免费观看| 在线免费视频一区二区| 麻豆视频一区二区| 中文字幕巨乱亚洲| 欧美精品久久天天躁| 国产精品一级片| 亚洲综合在线电影| 精品福利一区二区三区免费视频| www.性欧美| 免费观看一级欧美片| 自拍偷自拍亚洲精品播放| 欧美精品日韩综合在线| k8久久久一区二区三区| 日韩激情一区二区| 国产精品久99| 精品国产免费一区二区三区香蕉| 色欧美片视频在线观看 | 91麻豆免费视频| 人妖欧美一区二区| 亚洲视频每日更新| 精品国产一区二区在线观看| 日韩一级视频免费观看在线| av男人天堂一区| 蜜桃在线一区二区三区| 亚洲乱码国产乱码精品精可以看| 精品国产乱码久久久久久久久| 欧美性受xxxx| 不卡视频一二三| 国产在线不卡一卡二卡三卡四卡| 亚洲成人精品一区二区| 日韩美女视频一区| 久久久久久久久久久99999| 欧美日韩成人综合| 91黄色免费看| aaa国产一区| 国产99久久久国产精品免费看| 日韩中文字幕91| 一区二区三区在线观看欧美| 中文字幕一区二区三区av| 精品久久久久久最新网址| 欧美日韩国产不卡| 精品1区2区3区| 色av综合在线| 色综合色综合色综合| 亚洲免费在线观看视频| 国产在线不卡一卡二卡三卡四卡| 全部av―极品视觉盛宴亚洲| 亚洲动漫第一页| 五月天亚洲婷婷| 婷婷亚洲久悠悠色悠在线播放| 日韩美女视频一区| 亚洲三级视频在线观看| 国产精品欧美久久久久无广告| 国产亚洲欧美在线| 国产丝袜美腿一区二区三区| 久久久精品免费网站| 久久精品一区二区三区av| 久久精品欧美一区二区三区麻豆| 久久美女艺术照精彩视频福利播放 | 欧美日韩亚洲综合一区二区三区| 91视频免费观看| 色综合久久中文字幕综合网| 一本高清dvd不卡在线观看| 91网上在线视频| 欧美色区777第一页| 欧美日韩在线电影| 91精品国产91久久久久久一区二区 | 欧美亚洲国产一卡| 欧美日本韩国一区| 日韩亚洲欧美成人一区| 欧美哺乳videos| 欧美国产日韩精品免费观看| 日韩一区有码在线| 亚洲国产日韩在线一区模特| 日本在线不卡视频一二三区| 久久97超碰色| 99这里只有精品| 欧美喷潮久久久xxxxx| 日韩精品综合一本久道在线视频| 久久亚洲二区三区| 成人免费在线观看入口| 亚洲一卡二卡三卡四卡无卡久久 | 日本网站在线观看一区二区三区| 久久99精品国产麻豆婷婷| 国产传媒日韩欧美成人| 91在线视频免费91| 日韩一级视频免费观看在线| 国产精品午夜在线观看| 一二三四社区欧美黄| 国内外成人在线视频| 99国内精品久久| 日韩精品专区在线| 亚洲日本在线天堂| 蜜桃视频一区二区| 一本色道久久综合亚洲aⅴ蜜桃 | 欧美男生操女生| 国产三级一区二区| 亚洲成国产人片在线观看| 国产激情一区二区三区| 欧美日韩久久久一区| 国产精品久久久久久久久果冻传媒 | 久久综合九色综合欧美98| 亚洲欧美自拍偷拍色图| 毛片av一区二区| 日本电影欧美片| 国产嫩草影院久久久久| 日韩高清一区在线| 色综合久久久久综合| 久久久久久一二三区| 天天av天天翘天天综合网色鬼国产| 成人小视频免费在线观看| 日韩欧美在线观看一区二区三区| 综合网在线视频| 国产精品一二三四区| 欧美福利视频导航| 一区二区视频在线| 成人激情动漫在线观看| 欧美xxxx老人做受| 日韩影院在线观看| 在线中文字幕一区二区| 欧美激情综合五月色丁香小说| 美女被吸乳得到大胸91| 欧美高清激情brazzers| 一个色在线综合| 91香蕉视频mp4| 亚洲欧洲精品天堂一级 | 日本欧美一区二区在线观看| 91麻豆国产香蕉久久精品| 久久蜜桃av一区精品变态类天堂| 青娱乐精品在线视频| 欧美美女黄视频| 亚洲无线码一区二区三区| 色美美综合视频| 中文字幕日韩精品一区| 成人aa视频在线观看| 亚洲国产精品精华液ab| 国产精品中文有码| 国产视频视频一区| 国产v综合v亚洲欧| 国产日韩综合av| 成人免费电影视频| 亚洲少妇屁股交4| 91国模大尺度私拍在线视频 |