Name
EnableEvent -- enable an event / OBSOLETE
Synopsis
EnableEvent(type,id)
Function
Attention: This function is part of the Hollywood 1.x event library. You should not use it any longer. Please use EnableButton() instead.

This function enables the event specified by type and id. Once an event is enabled, it will be monitored by Hollywood. You will only have to call this function if you disabled the event before because by default, all events are enabled.

Do not forget to specify the '#' prefix for all events because you are passing constants!

Inputs
type
event type (e.g. #ONBUTTONOVER, #ONBUTTONCLICK, #CLOSEWINDOW)
id
event number to enable
Example
EnableEvent(#ONBUTTONOVER,1)
EnableEvent(#ONBUTTONCLICK,1)
EnableEvent(#ONBUTTONRIGHTCLICK,1)
The above code completely enables the monitoring of button 1 (every button has three events #ONBUTTONOVER, #ONBUTTONCLICK and #ONBUTTONRIGHTCLICK). Therefore if you want to enable a button completely you will have to call EnableEvent() thrice.

Show TOC