or implementation is
> made of the "?" as a native PowerPro trigger (is there a 
possibility?)
> 

I won't be implementing middle click on help, but you could try this:

Replace all the non-hold hot keys which use the middle mouse button 
by a single middle anywhere hot key which calls a script.  The 
script looks like this:

;--------------start of script
local x = win.area(xmouse, ymouse)
;win.debug(x) ;;uncomment while debugging

if (x=="HELP") do
; put commands for click on help here

elseif (x=="CLOSE") do
; put commands for close button here

elseif (x=="MAXBUTTON") do
; put commands for max button here

elseif (...) do ;; repeat for minbutton,  sysmenu, caption

else
; put commands for client area here
endif
;------------end of script

Note:
The current version of win.dll has a bug in win.area, so you must 
download
http://www.windowspowerpro.com/download/win.dll
into your plugins folder.

Also note that win.area depends on the underlying window to return 
what area the mouse cursor is in.  If the underlying window does not 
process the request in a standard way, win.area will not return the 
expected result.  So it may not work for programs that do not follow 
the windows standards.

You should be able to define a separate script with different 
command for middle hold hot key.

Also for right hold.

Finally, plain right click is trickier, since right click on client 
area is needed to bring up context menu.  If you want to try this, 
making the last command after the plain else a
*mouse rightclick
may work.

















Attention: PowerPro's Web site has moved: http://www.ppro.org 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/power-pro/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to