Open jNizM opened 3 years ago
if (String <> "W") ; old if (String <> "W") ; new (incorrect) if (String != "W") ; should be this
if (String <> "W") ; old
if (String <> "W") ; new (incorrect)
if (String != "W") ; should be this
v2 Error: Missing operand
See: https://www.autohotkey.com/docs/Variables.htm#compare (Deprecated: The <> operator is not recommended for use in new scripts. Use the != operator instead.)
easiest first :D
if (String <> "W") ; old
if (String <> "W") ; new (incorrect)
if (String != "W") ; should be this
v2 Error: Missing operand
See: https://www.autohotkey.com/docs/Variables.htm#compare (Deprecated: The <> operator is not recommended for use in new scripts. Use the != operator instead.)