Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
| not |
set theTruth to not ("index.html" contains ".html") -- returns falseboolean; true or false
not is a logical operator that reverses the boolean value of a variable or expression. If the variable or expression is true then the not return value is false, and vice versa. AppleScript does not have the (!) symbolic alternative for the not operator as Perl and other scripting languages do.