Skip to main content
Participant
August 27, 2013
Question

Removing 4 items from an existing Combo Box

  • August 27, 2013
  • 2 replies
  • 491 views

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.

This topic has been closed for replies.

2 replies

Participant
August 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

kglad
Community Expert
Community Expert
August 27, 2013

use actionscript:

trace(your_cb.dataProvider);

kglad
Community Expert
Community Expert
August 27, 2013

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