Error getting tags :
error 404Error getting tags :
error 404
on mouseLeave -- hide another object
hide field "Comments"
end mouseLeave
Handle the mouseLeave message to update a control when the mouse pointer moves outside it.
Comments:
The mouseLeave message is sent only when the Browse tool is being used.
If two controls overlap, a mouseLeave message is sent whenever the mouse pointer crosses outside a visible portion of a control. The control on the bottom receives a mouseLeave message only when the mouse pointer leaves part of the control that can be seen. A control that is completely hidden by another control on top of it will never receive a mouseLeave message.
If the mouse button is down when the mouse pointer leaves the control, the mouseLeave message is not sent until the mouse button is released.
If a control is hidden (by changing its visible property to false or using the hide command), and the mouse pointer is over the control when it is hidden, Revolution sends a mouseLeave message to the control.
On mouseLeave
if the mouseLoc is within the rect of me then exit mouseLeave
-- code to execute when mouse leaves control B complete goes here
End mouseLeave