Is there a way to access the mouse event, preferably using JavaScript, so that when I set the workflow to ‘On mouse enter,’ a JavaScript code checks whether the mouse is being clicked or not. If the mouse is being clicked, the code should not be executed.
(js code is only to understand
)
Hi,
the native event is accessible on the event
variable.
Even if the explorer is only displaying some properties, all of them are accessible.
Please not that some formula evaluation can be wrong until the event is actually run, as we can’t have access to the event until its run.
1 Like
That’s great! Thanks a lot for providing such a detailed solution. 
You can actually do console.log(event) on any element that has an event to see the entire object in the console. (that’s what aurelie did in the second screenshot)
1 Like