windows 8 tablet keyboard has no pause break key

5

I've got a Samsung Slate Windows 8 tablet. There is no break/pause key on the bluetooth keyboard. How can I remap those keys or is there a work around? These keys are relevant to programmers as they are often used in debugging and process interruption.

mytwocents

Posted 2012-10-18T21:16:25.893

Reputation: 161

3One workaround could be plugging in a usb keyboard that does have those keys – None – 2012-10-18T21:17:06.347

1Not even close to a programming question (other than that programmers use keyboards). – Eight-Bit Guru – 2012-10-18T21:25:36.153

Doesn't need to be a programming question to be here. http://superuser.com/faq

– CatShoes – 2012-11-21T15:48:59.770

Answers

4

As a workaround you can remap keys using Autohotkey. It is a very powerful tool for keyboard tweaking and lightweight too.

You can map any Key or combination of keys to work as Pause/Break.

It uses syntax: OriginKey::DestinationKey for remapping.

Replace OriginKey by the key you want to use as Pause/Break. (say Ctrl+Alt+a)

and replace DestinationKey with Pause/Break.

^+a::Break

Above AHK script will cause Ctrl+Alt+a to send Break keypress.

Learn more about Remapping Keys here.

Other Option:

Windows Registry Hack to Remap Keys using SharpKeys.

Ankit

Posted 2012-10-18T21:16:25.893

Reputation: 4 082