Can you combine two standard actions into one toolbar button? - SOLVED

webguy22

Member
I would like to create a button that does Select All then a Copy. Is this possible?
 
Last edited by a moderator:
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
    image.png
    26.6 KB · Views: 0
Back
Top