I recently installed PPro and TC on a new XP machine. I installed
Context Menu support and some context menus that I wrote for TC. For
some reason, the 1st function is not performing the way it is
supposed to. It is supposed to send Ctrl+Shift+Up and instead it is
only sending Ctrl+Up. This script was working just fine on the old
pc, so I don't know why it is not working on the new PC. I installed
a newer version of PPro, but I can't imagine that *that* is the
problem...
@opposite
; open new tab in opposite pane
if(activewindow("Total Co*")) do
Keys {to Total Co*}+^{up}
QUIT
endif
@this
; open new (active) tab in this pane
if(activewindow("Total Co*")) do
Keys {to Total Co*}^{up}
QUIT
endif
@backg
; open new tab in this pane in the background
if(activewindow("Total Co*")) do
Keys {to Total Co*}^+T
QUIT
endif