ID:273726
 
I have a Click() proc and was wondering how I would get it to refer to a grid in my interface?
You use client/Click() and see whether the control equals your grid.
In response to Emasym
Sorry I wasnt more specific, I have an obj in a grid that i want to click and have a menu appear, Ive got the menu and such already prepared I just need to know how to input the Click() format x.x
In response to Paul De La Torre
obj/whateverobjectitis
Click()
winset(usr,"Menu","is-visible=true")


Do note that you need to keep a reference of the object (put it in a list, give it a tag, a location, ...) or the garbage collector will process it, thus not making it an interactive object any more.