> I would like to remap a key on my keyboard to the pause/break key.  It
> cannot be remapped via the registry due to "the Pause/Break key cannot
> be remapped or remapped to using the scan code mapper (for the
> inquisitive, it is because the pause key doesn't generate break
> codes)." http://www.mvps.org/jtsang/flock-e.html
> 
> Could it be done with PowePro? - i can't seem to do it.

With keytrap, it reports this for pause/break:
Pause, ScanCode=69, vkcode=19

Keytrap help says:
Using the SendInput API.
   Usage:  
      keytrap.sendkeys(a,b,c,d)
      
   Parameters:
      a      = scancode
      b      = virtual key code (vkcode)
      c      = 1 for keyup, 0 for keydown
      d      = optional parameter to generate the vkcode by using the
scancode (ignores the supplied vkcode)
               0 = use the given vkcode in parameter 'b' (default)
               1 = generate vkcode

So use the commands:
Keytrap.sendkeys(69, 19, 0)
Keytrap.sendkeys(69, 19, 1)
Will push and release pause-break

David Troesch  |  Atlanta, GA  |  ICQ# 2333123
Treat each day as your last; One day you will be right.
Funstuff: You can't scare me - I have a two year old.



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