in a event I can use "me" to get a reference to the script owner. Is there a keyword to know who raised the message?
For example:
BUTTON_1:
Code: Select all
on mouseUp
send "go" to button "BUTTON_2"
end mouseUp
Code: Select all
on go
answer "This message was arised by..." && sender
end go
Thank you!