ALLWAYS CHEK ON PREVIEW in EFFECTS AND OTHER WINDOWS
Hello!
Many people have asked Adobe to implement the chek allways preview function in effects and other dialog boxes.
I present to you a small script made using the AutoHotKey program, which performs this functionality.
If you wish, you can use the program itself to make exe out of it and add it to startup.
! !Waiting for your criticism and improvement.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#Persistent
If !WinExist("Illustrator")
{
SetTimer, WatchCursor, 100
return
}
WatchCursor:
If WinActive("Transform Each") or WinActive("Gaussian Blur")
{
st := 4
}
else
{
st := 3
}
If WinActive("Options") or WinActive("Move") or WinActive("Rotate") or WinActive("Reflect") or WinActive("Scale") or WinActive("Shear")
{
chek := 1
}
If WinActive("ahk_class #32770") and chek = -1
{
Send, !p
Loop, %st%
{
Send, {TAB}
}
chek := 1
}
If not WinActive("ahk_class #32770")
{
chek := -1
}
return
