From: Fernando Rodr�guez
Subject: WebBrowser that doesn't accept any commands
Date: 
Message-ID: <h3qv70de3l9a2214vln9ut6fqfki81pbtb@4ax.com>
Hi,

How can I make a WebBrowser object ignore all user commands such as the
backspace key, arrow keys, etc...?  

I want the current url to be only modified programmaticaly.

From: Hannah Schroeter
Subject: Re: WebBrowser that doesn't accept any commands
Date: 
Message-ID: <c5p2hk$lqj$1@c3po.use.schlund.de>
Hello!

Fernando Rodr�guez  <·····················@fernando-rodriguez.com> wrote:

>How can I make a WebBrowser object ignore all user commands such as the
>backspace key, arrow keys, etc...?  

>I want the current url to be only modified programmaticaly.

(defclass webbrowser ()
  ((url :accessor url :initarg :url :initform "about:blank")))

(defmethod keystroke ((widget webbrowser) key)
  nil)

You can change the URL with (setf (url webbrowser-object) ...).

SCNR and kind regards,

Hannah.
From: Fernando Rodr�guez
Subject: Re: WebBrowser that doesn't accept any commands
Date: 
Message-ID: <rv4080hj4m5mfu6e46ki90gd3g7vjeneaq@4ax.com>
 Wrong NG, sorry.