Copy link to clipboard
Copied
Hi,
I would like to know if it is possible to create a check box or radio button or ok button that will simply circle the choice made instead of a solid ball or check or x in the center of it. I have included the document and a picture pointing to where I am trying to implement this. Please let me know if you can help me.
Best regards
J
Copy link to clipboard
Copied
You can use buttons instead with this script in each button as 'Mouse UP' action:
event.target.strokeColor = (color.equal(event.target.strokeColor, color.transparent)) ? color.black : color.transparent;
Here is your file with script and buttons added, I also add condition, so only one button can be 'selected' at a time:
https://drive.google.com/file/d/1jG9_-1vZHt-3TANQN4iwa4QrCzq0wzyg/view?usp=share_link
Copy link to clipboard
Copied
You can use buttons instead with this script in each button as 'Mouse UP' action:
event.target.strokeColor = (color.equal(event.target.strokeColor, color.transparent)) ? color.black : color.transparent;
Here is your file with script and buttons added, I also add condition, so only one button can be 'selected' at a time:
https://drive.google.com/file/d/1jG9_-1vZHt-3TANQN4iwa4QrCzq0wzyg/view?usp=share_link