[Flash Development Notes] ComboBox, two functions of the List component

Source: Internet
Author: User
The following two functions are suitable for ComboBox and list components.

Checkcmbitemexists:Check whether a specified item already exists. Sometimes, you need to dynamically add items to the list or ComboBox component, but before adding the items, you must check whether the items already exist in advance to avoid repeated addition.

Selectcmbitem:Select an item. Sometimes you need to use a program to select an item in the list or ComboBox component.

// Check whether an item already exists.
Function checkcmbitemexists (_ CMB, _ DATA ){
VaR L = _ CMB. length;
For (var j = 0; j <L; j ++ ){
If (_ CMB. getitemat (j). Data = _ DATA ){
Return true;
}
}
Return false;
}
// Select an item.
Function selectcmbitem (_ CMB, _ DATA ){
VaR L = _ CMB. length;
VaR Index = 0;
For (var j = 0; j <L; j ++ ){
If (_ CMB. getitemat (j). Data = _ DATA ){
Index = J;
Break;
}
}
_ CMB. selectedindex = index;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.