Struggling with Coding
I am new to coding and am struggling with continuing to get errors on this code. I have made a drop down box and if the person selects other I would like a text box to appear. I have been trying to find an answer online and no luck.
if (event.value == "Other")
(
this.getField("Text3").display = display.visible);
)
else if (event.value == "Get_furniture")
this.getField("Text3").display = display.hidden;
)
else if (event.value == "Get_housing_assistance")
(
this.getField("Text3").display = display.hidden;)
)
else if (event.value == "Get_internet_access")
(
this.getField("Text3").display = display.hidden;)
)
else if (event.value == "Get_stable housing")
(
this.getField("Text3").display = display.hidden;)
)
else if (event.value == "Shelter")
)
this.getField("Text3").display = display.hidden;)
(
It is currently giving me Syntax Error 4 for line 5.
Any help would be appreciated.
