Thanks again for the help.
I have a simple action that checks the stringValue of a textField, and if it matches - a status message prints in a second textField:
if
(textField.stringValue == (@"Whatever" )){
[outputDisplay setStringValue:@"Success"];
My question is how do I implement multiple input stringValue options in this method? For example "Whatever" "Whatever1, Whatever2" all return "Success" in the outputDisplay.
thanks.
Paul