Quote:
Originally Posted by samejima
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
|
That will work if you add the missing spaces after 'say' and if you have define "linereturn" (drop the space, element names cannot have spaces) as a line feed character (or carriage return + line feed).
Of course it would be easier to just directly do it like this but that might not have been what you are after:
Parent.Button.OnPress='say ' ## (x) ## ' say ' ## (y)