Switching between two signatures

Hi, I have a little question about customizationing my Lotus Notes client.

Per default I have a signature inserted in every email I write. Now I wanted to have a second signature for internal use an created a toolbar button with the following formula:

@Command([FileImport];“HTML”;“C:\Signatur.html”)

Clicking on it adds the second signature into the content. But is there a possibility that this button also deletes the default signature?

Regards Matthias Kolb

Subject: yup

@Command([EditGotoField]; “Body”);@Command([EditSelectAll];);

@Command([EditClear];);

@Command([FileImport];“HTML”;“C:\Signatur.html”)

Subject: Issue

There is an issue displayed after saving.

The line: @Command([EditSelectAll];);

shall be wrong? I marks the last “)” and says

@Functions arguments expected but none were supplied: ‘)’

Subject: semi-colon

Remove the first semi-colon:

@Command([EditSelectAll]);

-Jack