it would be nice for the crazy code tab to go where the cursor is when i hit the buttonright now it goes at the end of the text
6/14/2005 9:47:59 PM
it doesn't do that for any of the fucking buttons
6/14/2005 11:12:21 PM
yeah, he's rightit would be nice to get it so it does it at the cursor
6/15/2005 12:38:31 AM
With the quote and image tags, especially.
6/15/2005 1:57:26 AM
aint going to happenjust like all the other suggestions
6/15/2005 1:12:32 PM
makes me so mad...i could FDT all up in this joint
6/15/2005 1:39:33 PM
yet another thing that wouldnt be too hard to fixgiven any effort
6/19/2005 4:50:06 AM
They could add this in like 5 minutes.
function insertAtCursor(myField, myValue) { //IE support if (document.selection) { myField.focus(); sel = document.selection.createRange(); sel.text = myValue; } //MOZILLA/NETSCAPE support else if (myField.selectionStart || myField.selectionStart == ‘0') { var startPos = myField.selectionStart; var endPos = myField.selectionEnd; myField.value = myField.value.substring(0, startPos) + myValue + myField.value.substring(endPos, myField.value.length); } else { myField.value += myValue; }}
6/21/2005 2:44:23 AM
^ looks really easy to do...
6/21/2005 8:58:31 AM
it is
6/24/2005 5:28:52 PM
bttt
6/27/2005 2:15:28 PM
LOOK HERESOMEONE DONATED SOME TIME TO HELP TWWNOW IF WE CAN GET IT IMPLEMENTED.........
6/27/2005 2:18:48 PM
7/12/2005 8:39:17 PM