Avatar

Level 10

Hi,

I would stick with the dropdown, but maybe put the script in the exit event.

Then just set the label presence to invisible and one if statement can check for both .rawValues:

LabelSample.presence = "invisible";

if (this.rawValue == "Item One" || this.rawValue == "Item Two")

{

     LabelSample.presence = "visible";

}

The || stands for 'or' in the if statement.

Hope that helps,

Niall

PS the above is based on using the exit event of the dropdown.