Thread: Q Menu
View Single Post
  #12  
Old 12-24-2005, 02:10 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
KeyPressed is an event

PHP Code:
function onKeyPressed() {
  if (
params[1] == "q") {
    
stuffhere;
  }

I use this for my Q Menu, works perfectly.
I guess for GS1 you would use:
PHP Code:
if (keypressed) {
  if (
strequals(#p(1),q)) {
    
stuffhere;
  }

__________________
Reply With Quote