RE: OT: text editor that allow a tab

2005-11-13 Thread Dave Merrill
In a very similar situation, I've allowed ^t to stand for a tab; just replace when the page is submitted. Some editors use that shorthand in replace dlogs, so it's not completely foreign. Dave Merrill From: Ryan Guill [mailto:[EMAIL PROTECTED] Well im looking for an actual tab character.

Re: OT: text editor that allow a tab

2005-11-11 Thread Matt Robertson
My copy of FCKEditor 1.6 does this by inserting BLOCKQUOTE dir=ltr style=MARGIN-RIGHT: 0pxblah blah blah/BLOCKQUOTE when I click the indent icon. Indents the left but not the right margin. -- --mattRobertson-- Janitor, MSB Web Systems mysecretbase.com

Re: OT: text editor that allow a tab

2005-11-11 Thread Ryan Guill
Well im looking for an actual tab character. See im working on a tool im wanting to release to the community, its a query browser that lets you test out queries in a page. I developed it for a company I am consulting for and they have found it pretty useful. It basically just has textarea, and

Re: OT: text editor that allow a tab

2005-11-11 Thread Cedric Villat
How about inserting some code behind the scenes yourself? For example, when they hit the tab key (you can use javascript to catch the tab key), insert the code span id=tabnbsp;nbsp;nbsp;nbsp;/span and then afterwards replacing each span with the tab id with a real tab? I assume these people