andygo 1 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 Share this post Link to post Share on other sites
GodlessSinner 2 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 _____________________________________________________________________________ Share this post Link to post Share on other sites
andygo 1 Posted April 30, 2010 thx for reply, i will test this. nice weekend Share this post Link to post Share on other sites