My current script:
```
$notepadWindow = RunWait('notepad.exe')
ControlSend($notepadWindow, "Edit1", "", "abcde")
WinSetState($notepadWindow, "", @SW_MINIMIZE)
```
I can't seem to get these three lines to work. Its supposed to run a notepad window, then enter "abcde", followed by minimizing it.
Currently it just opens and nothing happens.
What am I doing wrong here?