Thread: Onpress
View Single Post
  #1  
Unread 01-09-2009, 07:02 AM
samejima samejima is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Jul 2005
Server: Unrest
Posts: 156
Default Onpress

So I got tired of crashing my client. Working on a pretty big file and looking to make my code actually readable.

As far as I know a commonly used practice would be!

Code:
Parent.Button.onpress =('say')##(x)
Parent.Button.press=true
Parent.Button.onpress=('say')##(y)
Parent.Buton.press=true
Code:
Now what I'm trying to do is 
Parent.Button.onpress =('say')##(x)
Parent.Button.onpress=(parent.Button.onpress)##(line return)##('say')##(y)
Parent.Buton.press=true
Something like this even possible?
Reply With Quote