Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Removing 4 items from an existing Combo Box

New Here ,
Aug 27, 2013 Aug 27, 2013

Hello

I have been given a flash file to update.

There is a combox with 6 items on it and I need to remove the last 4 of these.

However, I can not find out how to do this.

I have looked in the Acttion Scripts panel, but was not able to locate the associated script.

Thanks.

TOPICS
ActionScript
470
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 27, 2013 Aug 27, 2013

you should be able to access the comboboxe's dataProvider property and using the removeItem() or removeItemAt() method.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 27, 2013 Aug 27, 2013

Hi
Where do I find that?
When I click on the combo box - I don't know where to go to the dataProvider property

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 27, 2013 Aug 27, 2013
LATEST

use actionscript:

trace(your_cb.dataProvider);

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines