Instynct 1 Posted June 26, 2013 Has anyone been able to get these handlers to work for controls? They don't appear to be working. If someone else could test maybe I'll open a report in feedback tracker. Share this post Link to post Share on other sites
l etranger 5 Posted June 26, 2013 They do work, what is your script / dialog control ? Share this post Link to post Share on other sites
Instynct 1 Posted June 26, 2013 I've tried using it with a list box and the actual dialog itself. Share this post Link to post Share on other sites
Instynct 1 Posted June 26, 2013 In fact I can't get it to work on any controls... Share this post Link to post Share on other sites
computer 113 Posted August 28, 2017 _ctrlMenu ctrlSetEventHandler ["mouseMoving"," if (_this select 3) exitWith {} systemChat 'out of bounds'; "]; Use mouseMoving instead as a workaround Share this post Link to post Share on other sites
Muzzleflash 111 Posted August 28, 2017 You are ignoring the "on" part of the name when you add it right? _myCtrl ctrlAddEventHandler ["MouseEnter", {...}] and not "OnMouseEnter"? 2 Share this post Link to post Share on other sites
ColonelKernel 4 Posted September 3, 2017 On 8/28/2017 at 4:11 PM, Muzzleflash said: You are ignoring the "on" part of the name when you add it right? _myCtrl ctrlAddEventHandler ["MouseEnter", {...}] and not "OnMouseEnter"? @Muzzleflash is right. Read the top part of the the community wiki page about eventhandlers. Share this post Link to post Share on other sites