morat523035

Results 77 comments of morat523035

@agenbite How to find the toggle message selection command? Try looking in the source code. The "Space bar keystroke selection toggling" code is 12 lines down from the "Change focus,...

The following command works with the error console. ``` window.LoadMsgWithRemoteContent(); ``` Are you using tbkey or tbkeys-lite? You cannot run arbitrary javascript with tbkeys-lite. There is a tbkeys.xpi link on...

The LoadMsgWithRemoteContent function is now defined in the aboutMessage.xhtml window, not the messenger.xhtml window. Try the following command with tbkeys. ``` window.gTabmail.currentAboutMessage.LoadMsgWithRemoteContent(); ``` You cannot run arbitrary javascript with tbkeys-lite....

Try this: ``` "ctrl+h": "window.gTabmail.currentAboutMessage.LoadMsgWithRemoteContent();" ``` Remember to select a message with blocked remote content before running that command. Troubleshooting http://forums.mozillazine.org/viewtopic.php?p=14872763#p14872763

@fabiankirsch You cannot run arbitrary javascript with tbkeys-lite. There is a tbkeys.xpi link on the GitHub releases page. You can use the cmd shorthand and func shorthand with tbkeys and...

When I activate caret browsing, the arrow head cursor disappears and a caret (blinking vertical line) is placed between texts in the message pane. Nothing I tried works well. I...

Here is how to show the storage contents in a Console tab. Menu Bar > Tools > Developer Tools > Debug Addons > tbkeys > Inspect ``` browser.storage.local.get(null).then(function (aResult) {...

You can simulate a mouse click within the message pane. ``` (function () { var browser = window.document.getElementById('messagepane'); var rect = browser.getBoundingClientRect(); var x = rect.left + 10; var y...

Thunderbird 102: ``` window.MsgSortThreaded(); ``` ``` window.MsgGroupBySort(); ``` Thunderbird 115: ``` window.gTabmail.currentAbout3Pane.sortController.sortThreaded(); ``` ``` window.gTabmail.currentAbout3Pane.sortController.groupBySort(); ``` Or ``` window.goDoCommand('cmd_sort', {target:{value:'threaded'}}); ``` ``` window.goDoCommand('cmd_sort', {target:{value:'group'}}); ``` Reference (see handleCommand) http://searchfox.org/comm-esr115/source/mail/base/content/about3Pane.js Reference...

Try something like: ``` (function () { function selectWordUnderCursor() { if (!window.GetSelectionAsText()) { window.goDoCommand('cmd_charNext'); window.goDoCommand('cmd_wordPrevious'); window.goDoCommand('cmd_selectWordNext'); } } selectWordUnderCursor(); var s = window.GetSelectionAsText(); s = '' + s + '';...