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

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

?? combobox.as

?? flash 視頻聊天室源碼,非常好的源碼
?? AS
?? 第 1 頁 / 共 2 頁
字號:
class mx.controls.ComboBox extends mx.controls.ComboBase
{
    var editable, __set__editable, __labels, data, __dropdownWidth, __width, __set__dropdownWidth, _editable, selectedIndex, __dropdown, dataProvider, __labelFunction, owner, wrapDownArrowButton, _y, createObject, mask, border_mc, text_mc, __get__selectedLabel, __get__labels, __get__labelField, __get__labelFunction, getValue, dispatchValueChangedEvent, length, __get__rowCount, __get__dropdownWidth, selectedItem, isPressed, __set__visible, height, localToGlobal, __get__height, getStyle, dispatchEvent, _parent, __get__dropdown, width, __dataProvider, selected, __set__labelField, __set__labelFunction, __set__labels, __set__rowCount;
    function ComboBox()
    {
        super();
    } // End of the function
    function init()
    {
        super.init();
    } // End of the function
    function createChildren()
    {
        super.createChildren();
        this.__set__editable(editable);
        if (__labels.length > 0)
        {
            var _loc6 = new Array();
            for (var _loc3 = 0; _loc3 < labels.length; ++_loc3)
            {
                _loc6.addItem({label: labels[_loc3], data: data[_loc3]});
            } // end of for
            this.setDataProvider(_loc6);
        } // end if
        this.__set__dropdownWidth(typeof(__dropdownWidth) == "number" ? (__dropdownWidth) : (__width));
        if (!_editable)
        {
            selectedIndex = 0;
        } // end if
        initializing = false;
    } // End of the function
    function onKillFocus(n)
    {
        if (_showingDropdown && n != null)
        {
            this.displayDropdown(false);
        } // end if
        super.onKillFocus();
    } // End of the function
    function getDropdown()
    {
        if (initializing)
        {
            return;
        } // end if
        if (!this.hasDropdown())
        {
            var _loc3 = new Object();
            _loc3.styleName = this;
            if (dropdownBorderStyle != undefined)
            {
                _loc3.borderStyle = dropdownBorderStyle;
            } // end if
            _loc3._visible = false;
            __dropdown = mx.managers.PopUpManager.createPopUp(this, mx.controls.List, false, _loc3, true);
            __dropdown.scroller.mask.removeMovieClip();
            if (dataProvider == undefined)
            {
                dataProvider = new Array();
            } // end if
            __dropdown.setDataProvider(dataProvider);
            __dropdown.selectMultiple = false;
            __dropdown.rowCount = __rowCount;
            __dropdown.selectedIndex = selectedIndex;
            __dropdown.vScrollPolicy = "auto";
            __dropdown.labelField = __labelField;
            __dropdown.labelFunction = __labelFunction;
            __dropdown.owner = this;
            __dropdown.changeHandler = _changeHandler;
            __dropdown.scrollHandler = _scrollHandler;
            __dropdown.itemRollOverHandler = _itemRollOverHandler;
            __dropdown.itemRollOutHandler = _itemRollOutHandler;
            __dropdown.resizeHandler = _resizeHandler;
            __dropdown.mouseDownOutsideHandler = function (eventObj)
            {
                if (owner.hitTest(_root._xmouse, _root._ymouse, false))
                {
                }
                else if (!wrapDownArrowButton && owner.downArrow_mc.hitTest(_root._xmouse, _root._ymouse, false))
                {
                }
                else
                {
                    owner.displayDropdown(false);
                } // end else if
            };
            __dropdown.onTweenUpdate = function (v)
            {
                _y = v;
            };
            __dropdown.setSize(__dropdownWidth, __dropdown.height);
            this.createObject("BoundingBox", "mask", 20);
            mask._y = border_mc.height;
            mask._width = __dropdownWidth;
            mask._height = __dropdown.height;
            mask._visible = false;
            __dropdown.setMask(mask);
        } // end if
        return (__dropdown);
    } // End of the function
    function setSize(w, h, noEvent)
    {
        super.setSize(w, h, noEvent);
        __dropdownWidth = w;
        __dropdown.rowHeight = h;
        __dropdown.setSize(__dropdownWidth, __dropdown.height);
    } // End of the function
    function setEditable(e)
    {
        super.setEditable(e);
        if (e)
        {
            text_mc.setText("");
        }
        else
        {
            text_mc.setText(this.__get__selectedLabel());
        } // end else if
    } // End of the function
    function get labels()
    {
        return (__labels);
    } // End of the function
    function set labels(lbls)
    {
        __labels = lbls;
        this.setDataProvider(lbls);
        //return (this.labels());
        null;
    } // End of the function
    function getLabelField()
    {
        return (__labelField);
    } // End of the function
    function get labelField()
    {
        return (this.getLabelField());
    } // End of the function
    function setLabelField(s)
    {
        __dropdown.labelField = __labelField = s;
        text_mc.setText(this.__get__selectedLabel());
    } // End of the function
    function set labelField(s)
    {
        this.setLabelField(s);
        //return (this.labelField());
        null;
    } // End of the function
    function getLabelFunction()
    {
        return (__labelFunction);
    } // End of the function
    function get labelFunction()
    {
        return (this.getLabelFunction());
    } // End of the function
    function set labelFunction(f)
    {
        __dropdown.labelFunction = __labelFunction = f;
        text_mc.setText(this.__get__selectedLabel());
        //return (this.labelFunction());
        null;
    } // End of the function
    function setSelectedItem(v)
    {
        super.setSelectedItem(v);
        __dropdown.selectedItem = v;
        text_mc.setText(this.__get__selectedLabel());
    } // End of the function
    function setSelectedIndex(v)
    {
        super.setSelectedIndex(v);
        __dropdown.selectedIndex = v;
        text_mc.setText(this.__get__selectedLabel());
        this.dispatchValueChangedEvent(this.getValue());
    } // End of the function
    function setRowCount(count)
    {
        if (isNaN(count))
        {
            return;
        } // end if
        __rowCount = count;
        __dropdown.setRowCount(count);
    } // End of the function
    function get rowCount()
    {
        return (Math.max(1, Math.min(length, __rowCount)));
    } // End of the function
    function set rowCount(v)
    {
        this.setRowCount(v);
        //return (this.rowCount());
        null;
    } // End of the function
    function setDropdownWidth(w)
    {
        __dropdownWidth = w;
        __dropdown.setSize(w, __dropdown.height);
    } // End of the function
    function get dropdownWidth()
    {
        return (__dropdownWidth);
    } // End of the function
    function set dropdownWidth(v)
    {
        this.setDropdownWidth(v);
        //return (this.dropdownWidth());
        null;
    } // End of the function
    function get dropdown()
    {
        return (this.getDropdown());
    } // End of the function
    function setDataProvider(dp)
    {
        super.setDataProvider(dp);
        __dropdown.setDataProvider(dp);
        if (!_editable)
        {
            selectedIndex = 0;
        } // end if
    } // End of the function
    function open()
    {
        this.displayDropdown(true);
    } // End of the function
    function close()
    {
        this.displayDropdown(false);
    } // End of the function
    function get selectedLabel()
    {
        var _loc2 = selectedItem;
        if (_loc2 == undefined)
        {
            return ("");
        }
        else if (this.__get__labelFunction() != undefined)
        {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一个色在线综合| 日韩高清在线观看| 亚洲va中文字幕| 国产精品影视天天线| 91美女在线看| 欧美sm美女调教| 亚洲自拍偷拍综合| 国产成人免费视频网站高清观看视频| 欧美亚洲国产bt| 欧美一区二区三区性视频| 亚洲国产精品成人综合色在线婷婷 | 亚洲免费三区一区二区| 欧美aa在线视频| 欧美在线综合视频| 久久免费美女视频| 美日韩黄色大片| 欧美日韩国产综合一区二区三区 | 欧美精品亚洲一区二区在线播放| 欧美国产日韩精品免费观看| 成人av集中营| 日本一区二区成人| 在线视频你懂得一区二区三区| 亚洲电影你懂得| 久久久久久影视| 91美女在线看| 国模一区二区三区白浆| 日韩精品在线网站| 免费久久99精品国产| 久久这里只有精品首页| 玖玖九九国产精品| 欧美一区二区三区免费| 岛国精品一区二区| 中文字幕亚洲在| 波多野结衣视频一区| 国产精品看片你懂得| 豆国产96在线|亚洲| 久久精品亚洲国产奇米99| 精久久久久久久久久久| 日韩欧美一级特黄在线播放| 国产高清无密码一区二区三区| 亚洲精品乱码久久久久久日本蜜臀| eeuss鲁一区二区三区| 日韩精品久久久久久| 538prom精品视频线放| 肉丝袜脚交视频一区二区| 国产亚洲自拍一区| 欧美电影一区二区三区| 丁香婷婷综合激情五月色| 日韩高清在线电影| 亚洲一区二区在线免费看| 久久理论电影网| 欧美一级精品大片| 国产精品一二三| 日韩av在线免费观看不卡| 成人欧美一区二区三区黑人麻豆| 日韩午夜激情av| 欧洲另类一二三四区| 成人app在线观看| 国产综合久久久久久鬼色| 无吗不卡中文字幕| 精品久久久久久久久久久久包黑料| 色狠狠综合天天综合综合| 天天操天天干天天综合网| 国产精品国产三级国产普通话99| 精品国产伦一区二区三区观看方式 | 欧美日韩精品三区| 一本久道久久综合中文字幕| 婷婷国产v国产偷v亚洲高清| 亚洲色欲色欲www在线观看| 欧美日韩国产片| 色婷婷综合在线| av电影在线观看完整版一区二区| 国产福利一区在线| 国产精品1区二区.| 国产精品一区二区三区四区| 精品系列免费在线观看| 六月丁香综合在线视频| 美女任你摸久久| 久久精品av麻豆的观看方式| 奇米色777欧美一区二区| 美腿丝袜亚洲一区| 免费观看在线色综合| 蜜桃视频在线一区| 久久超碰97人人做人人爱| 美日韩一区二区| 国内外成人在线| 国产精品99久久久| 成人app在线| 色综合天天综合给合国产| 精品一区二区三区的国产在线播放| 婷婷国产v国产偷v亚洲高清| 久久国产日韩欧美精品| 国产一区二区三区免费观看| 亚洲无线码一区二区三区| 国产日韩欧美高清在线| 日韩欧美在线综合网| 欧美精品一区二区久久婷婷 | 在线日韩av片| 3d动漫精品啪啪1区2区免费| 精品嫩草影院久久| 国产视频在线观看一区二区三区| 国产精品久久久久久福利一牛影视| 亚洲人成在线播放网站岛国| 亚洲一区在线观看免费观看电影高清| 午夜精品aaa| 国产一区亚洲一区| av在线免费不卡| 欧美日韩精品一区二区三区四区| 日韩一级大片在线观看| 国产日韩三级在线| 亚洲一区二区在线免费看| 麻豆精品精品国产自在97香蕉| 国产成人av资源| 欧美日韩免费一区二区三区视频| 成人精品小蝌蚪| 欧美日韩中文精品| 久久伊人中文字幕| 亚洲综合在线电影| 激情久久五月天| 在线国产亚洲欧美| 欧美电视剧免费观看| 亚洲视频免费在线观看| 久久精品国产一区二区三区免费看| aaa亚洲精品| 欧美本精品男人aⅴ天堂| 综合电影一区二区三区| 男男gaygay亚洲| 一本一本久久a久久精品综合麻豆| 91精品国产美女浴室洗澡无遮挡| 国产精品视频一二三区| 国产精品免费视频观看| 免费成人深夜小野草| 色国产综合视频| 中文字幕精品在线不卡| 青青草97国产精品免费观看 | 欧美日韩高清一区二区不卡| 久久精品亚洲精品国产欧美kt∨ | 国产精品久久久久永久免费观看| 日韩影院免费视频| 91成人免费在线| 国产精品欧美一级免费| 免费观看在线色综合| 欧美日韩中文字幕一区| 亚洲天堂免费看| 豆国产96在线|亚洲| 欧美精品一区视频| 麻豆国产欧美一区二区三区| 欧美日韩国产片| 一区二区三区在线视频观看| 粉嫩aⅴ一区二区三区四区五区| 日韩一区二区在线观看视频播放| 亚洲一区影音先锋| 91视频xxxx| 中文字幕制服丝袜一区二区三区 | 日韩高清不卡一区二区| 91偷拍与自偷拍精品| 欧美精品一区二区久久婷婷| 日韩精品一二三| 欧美日本视频在线| 亚洲午夜精品一区二区三区他趣| 欧美日韩中字一区| 亚洲精品视频在线观看网站| 99热这里都是精品| 国产精品区一区二区三区| 国产二区国产一区在线观看| 日韩欧美亚洲一区二区| 日本伊人午夜精品| 欧美欧美欧美欧美首页| 亚洲成人精品一区| 欧美久久久久久久久久| 亚洲电影一区二区| 欧美欧美欧美欧美| 日韩国产精品久久久久久亚洲| 91.com视频| 蜜桃一区二区三区四区| 精品美女一区二区三区| 精品一区二区三区不卡| 国产视频一区在线观看| 成年人网站91| 亚洲欧美另类小说| 欧美伊人久久大香线蕉综合69| 亚洲一区成人在线| 欧美一区二区三区色| 久久电影网站中文字幕| 亚洲精品在线三区| 成人av电影在线网| 亚洲一区免费在线观看| 欧美一卡在线观看| 国产一区中文字幕| 综合色中文字幕| 欧美色图第一页| 久久99久久精品欧美| 久久久精品中文字幕麻豆发布| 成人a免费在线看| 亚洲综合无码一区二区| 日韩视频一区在线观看| 国产夫妻精品视频| 亚洲成精国产精品女| 欧美精品一区男女天堂| heyzo一本久久综合|