code:
if(CommandIs == "Caps") {
return Message.replace(Message, Message.toUpperCase());
}
The above code transforms it to uppercase, so i assume adding the following directly below that code will give you a transform it to all lowercase:
code:
if(CommandIs == "Lower") {
return Message.replace(Message, Message.toLowerCase());
}
And to make it work in the menu, search for:
code:
if(ControlId == "Caps") {
var CommandIs = "Caps";
new ActiveXObject('WScript.Shell').RegWrite(MsgPlus.ScriptRegPath + Email + "\\command",CommandIs);
}
Ande directly under that add:
code:
if(ControlId == "Lower") {
var CommandIs = "Lower";
new ActiveXObject('WScript.Shell').RegWrite(MsgPlus.ScriptRegPath + Email + "\\command",CommandIs);
}