webguy22 Member Jun 10, 2017 #1 I would like to create a button that does Select All then a Copy. Is this possible? Last edited by a moderator: Jun 10, 2017
gdgsupport Support Staff member Jun 10, 2017 #2 Yes, it’s possible but with HEScript. Open the UserMain script of your project (see doc about how to do that) and copy/paste: Code: procedure SelectAndCopy; begin NavigateCommand(4); NavigateCommand(3); end; as shown below. image.png549×382 26.6 KB Click Save Script, open the UI editor and for your button, choose to execute the HEScript function UserMain.SelectAndCopy Attachments image.png 26.6 KB · Views: 0
Yes, it’s possible but with HEScript. Open the UserMain script of your project (see doc about how to do that) and copy/paste: Code: procedure SelectAndCopy; begin NavigateCommand(4); NavigateCommand(3); end; as shown below. image.png549×382 26.6 KB Click Save Script, open the UI editor and for your button, choose to execute the HEScript function UserMain.SelectAndCopy
webguy22 Member Jun 10, 2017 #3 Thank you. Works great. My search of the documentation failed to see the command values. But I see it now.
Thank you. Works great. My search of the documentation failed to see the command values. But I see it now.