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

I would like to create a button that does Select All then a Copy. Is this possible?

Yes, it’s possible but with HEScript. Open the UserMain script of your project (see doc about how to do that) and copy/paste:

procedure SelectAndCopy;
begin
 NavigateCommand(4);
 NavigateCommand(3);
end;

as shown below.

Click Save Script, open the UI editor and for your button, choose to execute the HEScript function UserMain.SelectAndCopy

Thank you. Works great. My search of the documentation failed to see the command values. But I see it now.