Hi Maysky, looks like it's a bug in the CustomUI Shortcuts menu code.
The bug is that it emits a button that has an attribute like command='script_code_here' which will cause an error if the script code also happens to have any single-quote ' ' characters in it which happens to be the case for the highlight naked edges script. When the HTML parser sees the ' character in the script code, it takes it to be the end of the command=' ' attribute.
To solve it, replace your file Shortcuts.menu.htm with the version I have attached here. This version replaces any single-quote ' characters in the script with a special HTML entity code which will tell the HTML parser to put a ' character into the attribute value rather than ending the command=' ' attribute there.
- Michael
|