diff options
author | Teddy Wing | 2020-07-13 19:52:26 +0200 |
---|---|---|
committer | Teddy Wing | 2020-07-13 19:54:47 +0200 |
commit | 7e9ccee612f2708f3507a791a59246197e5bcaf7 (patch) | |
tree | e86c3967534169735c339e5dcdc0b0db7a18bc58 | |
parent | 7c8a68d0b1a4aaa7f1dcfe2d507bf8d52c498045 (diff) | |
download | AutoHotkey-Scripts-7e9ccee612f2708f3507a791a59246197e5bcaf7.tar.bz2 |
Add ^#c command to remove the second UFO cached file
To facilitate tests opening an uncached file.
This shortcut clicks on the UFO Chrome toolbar icon, then clicks on the
"Delete" button of the second cached file in the list.
-rw-r--r-- | AutoHotkey.ahk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/AutoHotkey.ahk b/AutoHotkey.ahk index f67af31..898831f 100644 --- a/AutoHotkey.ahk +++ b/AutoHotkey.ahk @@ -32,5 +32,12 @@ Sleep, 200 Send !{Tab} ; Reactivate current application return +; Remove the second file in the UFO Cached files list +^#c:: +Click, 660, 50 +Sleep, 1000 +Click, 300, 220, Relative +return + ; Reload this script ^#a::Reload |