home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1999 - Modelworks Software
- // @Created build 250 cm19990106
-
- // Insert script helper for:
-
- /**
- @Object: Command
- @Property: toolTip - contains the text that will be displayed in the tool
- tip when the user moves the mouse over the button.
- @Syntax: command.toolTip
- @Summary: toolTip - contains the text that will be displayed in the tool tip
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("command.toolTip", selection);
- editor.setActive("Insert command.toolTip");
- }
- }
-
- !!/Script
-