Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
Is it possible?
Could I highlight some text in a post, hit Alt + I or something and see that highlighted text magically surrounded by BBcode italics, thus saving me the effort of using the mouse while writing a long post?
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
Probably could use a macro if you're a full time forum user.
Offline
Offline
^ What am I supposed to do with that?
I use Edge.
One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.
Offline
get a different browser, I guess :b
or beg diff to add something like it. Currently your option is to go into the console and paste that in. Or make it a bookmarklet
edit:
I added ugly support for all buttons:
$("textarea").keypress("",function(e) {
var hotkeys = ['b', 'i', 'u', 's', 'h', '`', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '-' ,'='];
var index = hotkeys.indexOf(e.key);
if (e.altKey && index != -1){
$("#bbcodebar").children()[index].click();
}
});
Problem is, which keys do you give to which buttons? there's 17!
Offline
Pages: 1
[ Started around 1732668117.6234 - Generated in 0.033 seconds, 11 queries executed - Memory usage: 1.41 MiB (Peak: 1.53 MiB) ]