Double click button
You may wish to detect 'double-click' or 'triple-click' on buttons. This would be useful for showing special menus (layers) - or sending commands that need a little more security.
To detect 'multiple-clicks' we use 'Event handler - preprocessor'.
In this simple guide we use a variable called "ShowMenu". withIt has just two options: off / on.
Then we create a behavior on a button - that itIt must be double-clicked in order to set "ShowMenu" to 'on'
• click 'Show more' > at Event handler section, enter name "DblPress" and click 'Create' > open the new Event handler
- Handler type: Binary
- Set values: 'on'
• In the Event Preprocessor section > From binary > click '+' to create > click it to edit
• select 'Default' > click '+' to create > click 'ActDown' to select it
- Repeat: Delayed <-- this start the timer
- Repeat delay: 300 <-- timer lenght in milleseconds
- Burst count: 2 <-- number of required pressedpresses to giveallow output trigger
- Output trigger: ActDown
With the above, you must press button 2 times within 300ms for the action to proceed (ie. set ShowMenu to 'on')