I meant to paste with 'ctrl+v' and I hit 'b'and [-B][-/B]!!!!! (no '-', can't disable bbc) The BOLD tags!This would have been a good thing to knowwhen I couldn't use scripts here. To have thisimplimented wouldn't be by accident. Is there a list of shortcutsfor Akiba? This doesn't work on the rest of the net.Bookmarks pops up.Ctrl+U = [-U][-/U]: SampleCtrl+I / Ctrl+9 = [-I][-/I]: SampleCtrl+2 = [-B][-/B] : SampleThe ctrl keys aren't documented in our forum software, however I think they are all fairly standard for wysiwyg editors e.g. word processors.ezepietro has it right.Ctrl+b = boldi = italicu = underlineThese are the formatting options and are controlled by javascript (vB_Text_Editor_Events.prototype.editdoc_onkeypres s = function(e))Code:if (e.ctrlKey) { var code = e.charCode ? e.charCode : e.keyCode; switch (String.fromCharCode(code).toLowerCase()) { case 'b': cmd = 'bold'; break; case 'i': cmd = 'italic'; break; case 'u': cmd = 'underline'; break; default: return; } e = do_an_e(e); vB_Editor[this.editorid].apply_format(cmd, false, null); return false; }Some other keyboard shortcuts:Ctrl+c = copyx = cutz = undoy = redoThese work on the browser level.