What are valid names for buttons?
When you bring up a Button Dialog to create a new button, the “Name” field can be filled with any string of characters. If you have spaces (” “) in this name, they are converted to the dash character (“-“) internally. This has two implications. First, it means that you can allow a procedure to call a button by prepending the word “start” to the button name and stop a button by prepending the word “stop” to the button name. For example, to go myfirstbutton ;the “Name” field of this button contains the string “myfirstbutton” startmy-second-button ;the “Name” field of this button contains the string “my second button” stopmyfirstbutton end One more thing. You naming conflicts may occur in the internal code if any of your procedure names begin with “start”. Avoid naming procedures in this manner.