I am working on a firefox addon, and when I use % for a menu label and tooltip the addon doesn't work (doesn't show up on firefox).

I am using the % in a .dtd file like this:

<!ENTITY addonName.menuX "%09 (Tab)">

And in the .xul file like this:

<menuitem class="menuitem-iconic" image="chrome://addonName/skin/image.png" tooltiptext="&addonName.menuX;" label="&addonName.menuX;" oncommand="addonName.function( 'X' )" />

If I delete the % from <!ENTITY addonName.menuX "%09 (Tab)"> it works fine. I tried escaping it with a backslash but still doesn't work, so how do I print % in the addon menu?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

unicode equivalent of % which is \u0025 should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.