Attempting to Generate calc based on Choice from DropDown Menu
I am attempting to generate a value based on the chosen value of the DropDown Menu:
The DropDown Menu is labled: size
It contains these Items: Tiny, Small, Medium, Large, Huge
The DropDown Menu has Commit Selected value immediately
var s = this.getfield("size").value;
if (getField ("size").value == "Small")
event.value = (Strength1);
else if (getField ("size").value == "Medium")
event.value = ((Strength1)*(2));
else if (getField ("size").value == "Large")
event.value = ((Strength1)*(3));
