| View previous topic :: View next topic |
| Author |
Message |
SamTyson92
Joined: 16 Dec 2006 Posts: 34 Location: Hinckley, United Kingdom
Digg It |
Posted: Wed Jan 10, 2007 9:33 pm Post subject: A little help with a script |
|
|
Ive been working on a script and I need
add button on the wiimote to emualte the keys
Ctrl++
But Im unsure how to do this.
Please help me.
| Code: | Key.Ctrl++ = wiimote.plus
Key.Ctrl+- = wiimote.minus |
|
|
| Back to top |
|
 |
TylerK

Joined: 18 Dec 2006 Posts: 384 Location: Springfield, IL
Digg It |
Posted: Wed Jan 10, 2007 9:51 pm Post subject: |
|
|
If you're referring to + and - on the number row of the keyboard, then try this:
| Code: | Control && Equals = Wiimote.Plus
Control && Minus = Wiimote.Minus |
...but if you're referring to the + and - on the numpad, try this.
| Code: | Control && NumPadPlus = Wiimote.Plus
Control && NumPadMinus = Wiimote.Minus |
Actually it's possible that either one will work.
Edit: Cleaned up the code considerably. |
|
| Back to top |
|
 |
|