View Single Post
  #1  
Old 12-02-2010, 07:13 AM
oo_jazz_oo oo_jazz_oo is offline
Jazz teh Awesome
oo_jazz_oo's Avatar
Join Date: Jul 2006
Location: California
Posts: 596
oo_jazz_oo is a jewel in the roughoo_jazz_oo is a jewel in the rough
Send a message via MSN to oo_jazz_oo
Triggering a gui control?

I have a GUI controll, his name is Jerry.

Say hi to jerry:
PHP Code:
new GuiControl("Jerry") {
  
0;
  
width height 32;
  
  
thiso.catchevent(this"onAction""DoStuff");

I need to trigger that onAction() function, but not by clicking the control.

I need something along the lines of
PHP Code:
Jerry.onAction() 
But that particular script, does not work.

Neight does Jerry.trigger("Action"); or any variation of that.

Any solutions?

(Note: I need this type of script, not other variations...I can't trigger DoStuff by itself, because I need information from inside that gui control. And in my actual script, I have a multitude of controls like Jerry, but they are dynamically generated. Which is why I need this particular script)
__________________

Reply With Quote