> I want to have some kind of signal to the user ("Click here"). Any other
> ideas?
Try this:
on mouseEnter
set the text of field info to "Click here to..."
end mouseEnter
on mouseLeave
set the text of field info to empty
end mouseLeave
Andr