On Sat, Aug 31, 2002 at 10:48:39PM +0300, Shachar Shemesh wrote:
> Ilya Konstantinov wrote:
> 
> >Hi,
> >
> >I've coded up some simple key bindings for Mozilla to allow switching
> >the direction of the input box, just like (Left/Right)Ctrl-Shift
> >does in Windows / Qt.
> >
> >Get it from:
> >http://toast.unwind.co.il/hacks/mozBidiBindings.tar.gz
> >(installation instructions inside)
> >
> > 
> >
> No go.
> 
> Can't open new mail composer. Notice, however, that it doesn't have full 
> HTML composer capabilities. Have any ideas?

The Mail Composer and the HTML Composer are the same widgets, with
different menus. So they behave just the same with my addition.

You simply have the editor area missing? Make sure the URL you've given
in -moz-binding is correct. Do input fields on web sites (like Google's
search) work? If so, copy the -moz-binding URL from
userContent.css to the 'editor' tag in userChrome.css -- just make sure
you change #bidiInputFields to #bidiEditor.

If you'll have the URL wrong (including simple typos, like forgetting a
slash or a dot or a quote), Mozilla simply won't know how to display
the editor.

e.g. if you placed bidiBindings.xbl in /home/shahar, then that's what
you should have in userChrome.css:

input
{
        -moz-binding: url("file:/home/shahar/bidiBindings.xbl#bidiInputFields") 
!important;
}

editor
{
        -moz-binding: url("file:/home/shahar/bidiBindings.xbl#bidiEditor") !important;
}

=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to