CustomUI

 From:  Michael Gibson
6507.99 In reply to 6507.98 
Hi Pilou, the problem is onbuttonclick="LineWeb" - the contents of onbuttonclick are run as script code, and LineWeb is the name of a command, not script code.

Instead of that put command="LineWeb".

If you wanted to do it in a click handler with script code it would be like this: onbuttonclick="moi.command.execCommand( 'LineWeb' );"

- Michael