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.
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.