This looks great, but I just tried this on XP and it doesn't do anything. Any idea how I should fix it?Soft wrote: ↑23 Jan 2015, 14:47Pleasant Notify original post http://ahkscript.org/boards/viewtopic.php?f=6&t=6056
![]()
Thanks!
This looks great, but I just tried this on XP and it doesn't do anything. Any idea how I should fix it?Soft wrote: ↑23 Jan 2015, 14:47Pleasant Notify original post http://ahkscript.org/boards/viewtopic.php?f=6&t=6056
![]()
Thanks Manny!MannyKSoSo wrote: ↑24 Oct 2018, 08:57My first recommendation is this https://autohotkey.com/boards/viewtopic.php?f=6&t=3851
Its a growing list of Non standard GUI's, but definitely does give some good ideas of what you can do! Personally in that list I like the Windows 10 style one.
Code: Select all
TabLoop(10)
TabLoop(x) {
loop, x
{
send {shift down}
sleep 10
send {tab}
sleep 10
send {shift up}
sleep 10
}
}