Hi, i'm new to autoit and am learning to play around with it.
I'm trying to make a script that would automatically make program full screen, the keyboard shortcut from the program is CTRL + f, so i wrote this script
WinActivate("[CLASS:#32770]", "")
Send("^f")
WinActivate works perfect, it activates the correct program, but send ctrl+f doesn't work, nothing happens.
Thanks in advance.