1

Using ^w::MsgBox, 100% returns:

This parameter contains a variable name missing.

But the same line without % sign works. How to fix it?

Ooker
  • 1,969
  • 4
  • 28
  • 58

1 Answers1

4

You must escape certain characters, such as % , , , ;. To escape them use the ` character.

 ^w::MsgBox, 100`%
Ooker
  • 1,969
  • 4
  • 28
  • 58
sixtytrees
  • 1,156
  • 1
  • 10
  • 25