try to usw de EVENT_CLICK ,EVENT_TOUCH events.
here is an example:


function click_event()
{
if(event_type == EVENT_CLICK)
{
show massage
}

action model()
{
my.emask |= ENABLE_CLICK;
my.event = click_event;
}

i hope i can help you