PDA

View Full Version : 2 New Features: Spell Checker & a NOT parameter


Marker0077
06-04-2003, 11:27 AM
#1) A spell checker for checking all those dialog & other window types.

#2) a NOT parameter. The NOT parameter would be for like, "IF %Variable% NOT = THIS". This would check to make sure that the %Variable% is not equal to "THIS". Of course, there are ways of making it so that you can find this information out anyways, but this would be a time & effort saver.

Darryl
06-04-2003, 01:14 PM
For your #2, there is currently an operator to check if one operand is not equal to the other operand. You can either use != or <> to accomplish that condition.

Lorne
06-18-2003, 01:30 PM
There's also a unary not operator, so if you want to test if something is false, you can use:

<pre>if( !%variable% )
// only do this if %variable% is false
end if</pre>

Marker0077
06-20-2003, 11:06 PM
Well, the "NOT" operator is much more user friendly IMO. Anyways, good to know there is an existing alternative. Better than the way I have been doing it I suppose (2nd variable that sets a true or false value).

Marker0077
06-29-2003, 07:52 AM
I tried doing

if (!%variable% = TRUE)
display dialog
end

&amp; it didn't work. Any other ideas?

Marker0077
06-29-2003, 07:55 AM
nevermind, I got it working. thanks anyways.