I installed PPro and Total Commander on a new XP machine.  I imported 
a context menu I wrote into PPro.  For some reason the 1st script is 
not working corrrectly while the other 2 are...

When @opposite is invoked, it is NOT sending Shift+Ctrl+Up, it is 
only sending Ctrl+Up.  I've tried using {shift}{ctrl}{up}, but that 
didn't work either.  What am I missing?  This script ran just fine on 
my old pc...

@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


Reply via email to