Search found 4 matches

by notHalfBad
Wed Jun 01, 2016 7:35 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help with keyDown!
Replies: 2
Views: 2032

Re: Help with keyDown!

Thanks! this solved my problem. You're a legend!
by notHalfBad
Wed Jun 01, 2016 3:12 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: ASCII number manipulation
Replies: 6
Views: 4721

Re: ASCII number manipulation

You guys are all awesome! I've solved my problem and it works really well now! :D Time to start adding features...
by notHalfBad
Wed Jun 01, 2016 3:04 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Help with keyDown!
Replies: 2
Views: 2032

Help with keyDown!

Hi there, I'm making a game. I have a problem in that I want to make sure that the program I'm making keeps track of the keys that are pressed and makes sure that the effect that occurs per key pressed only happens once. So if I pressed the letter a once, then I could press a all I liked after that,...
by notHalfBad
Tue May 31, 2016 11:57 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: ASCII number manipulation
Replies: 6
Views: 4721

ASCII number manipulation

Hi, this is my first post on the LiveCode forums! So I have a teensy problem. I have a keyDown operator which detects any key with the parameters [a-zA-Z]. Perhaps if I show you my code it will make more sense. on keyDown theKey if matchText(theKey,"[a-zA-Z]") then put (numToChar(lower(theKey))-140)...