Got it!
Re-loaded all my .xml and .itm files and it worked so I moved onto the menu.ml modding. I noticed there were a lot of "internal" commands so I browsed around for a while. Here's what I came up with: (keep in mind "email" is for the debranded w760i with activesync set up. "messaging" is texting, mms, etc)
Email Inbox:
Msg_Email_Inbox
Write New Email:
Msg_Email_WriteNew
Email Menu:
Messaging_Email
Messaging Inbox:
Msg_Inbox
Write New Message:
Msg_WriteNew
There's pretty much a "Hook" for everything that can be made into a shortcut by the nav keys in the shortcuts menu. Here's an example of my files:
RIGHT_SOFTKEY_HOOK.itm:
Code:
RIGHT_SOFTKEY_HOOK.xml 0100444 0000002 0000002 00000001055 11006351462 0013056 0 ustar root root <?xml version="1.0" encoding="utf-8"?>
<MenuItem version="1.0">
<item_text>
<TEXT lang="xl" str="Inbox" />
<TEXT lang="cf" str="Inbox" />
<TEXT lang="pb" str="Inbox" />
<TEXT default_lang="en" str="Inbox" />
</item_text>
<item_help>
<TEXT lang="xl" str="Inbox" />
<TEXT lang="cf" str="Inbox" />
<TEXT lang="pb" str="Inbox" />
<TEXT default_lang="en" str="Inbox" />
</item_help>
<item_icon />
<item_action>
<ACTION type="Internal" str="Msg_Email_Inbox" />
</item_action>
</MenuItem>
above goes in: tpa/preset/custom/
RIGHT_SOFTKEY_HOOK.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<MenuItem version="1.0">
<item_text>
<TEXT lang="xl" str="Inbox" />
<TEXT lang="cf" str="Inbox" />
<TEXT lang="pb" str="Inbox" />
<TEXT default_lang="en" str="Inbox" />
</item_text>
<item_help>
<TEXT lang="xl" str="Inbox" />
<TEXT lang="cf" str="Inbox" />
<TEXT lang="pb" str="Inbox" />
<TEXT default_lang="en" str="Inbox" />
</item_help>
<item_icon />
<item_action>
<ACTION type="Internal" str="Msg_Email_Inbox" />
</item_action>
</MenuItem>
above goes in: tpa/preset/system/custmenu/RIGHT_SOFTKEY_HOOK/
If you need help modifying the code to what you need it to be, ask and I'll see if I can help.
Bookmarks