This is what I have been able to figure out about buttons:
Thanks
- " Click Me @URL=EFS:myFunction" in the Text parameter of a drawText function will create a button that says " Click Me " and will call myFunction when clicked passing a numeric value.
- The value passed will be 1 (BUTTON_LEFT), 2 (BUTTON_RIGHT), or 3 (BUTTON_LEFTDBLCLK).
- A double-click will first pass a 1 (BUTTON_LEFT) and then change the value to 3 (BUTTON_LEFTDBLCLK).
Thanks
Comment