andygo Posted April 30, 2010 Posted April 30, 2010 hello, in one case i do a screenshot with my autoit-script. Send("{PRINTSCREEN}") but: if snagit is active, it seems that the printscreen-key is a hotkey to snagit. can i unset this hotkey from an none-autoit-process? if not, another question: is it possible to look for special processes with a wildcard? like If ProcessExists("*snag*.exe") Then
GodlessSinner Posted April 30, 2010 Posted April 30, 2010 If ProcessExists("*snag*.exe") Then $list = ProcessList() for $i = 1 to $list[0][0] if StringInStr($list[$i][0], "snag") then endif next _____________________________________________________________________________
andygo Posted April 30, 2010 Author Posted April 30, 2010 thx for reply, i will test this. nice weekend
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now