Request: shortcut keys for "Change window to ..."

Claus Pedersen

Member³
I would like to have the functionality "Change window to -> Program/Test/SQL/Command window" available in Tools -> Preferences -> Key Configuration, so I could assign keyboard shortcuts for "Change window to Program Window", "Change window to Command Window" etc.
 
AutoHotKey to the rescue!

This hotkey definition will only fire if PL/SQL Developer is the active window. It will then right click and activate the Change Window To menu - just use the arrow keys to select which one you want.

#ifwinactive, PL/SQL Developer ; makes this active only for PLSD

#.:: ; brings up PL/SQL Developer's change window to menu
MouseClick, right, 498, 350
Sleep, 100
Send, {DOWN}{DOWN}{DOWN}{DOWN}{RIGHT}

#ifwinactive ; all hotkeys after this are for every window
 
Back
Top