I have following code:
ignored := [ "Rainmeter.exe", "Nimi Places.exe", "mumble.exe" ]
a := ignored.HasKey("mumble.exe")
MsgBox,,, %a%
It returns 0
even though the string is clearly present in the array.
How do I test if a string value is present in an array?
PS: I also tried if var in
which gives same results.