Thank you both for the response

Alan - This is my first python program (actually first anything, besides
simple one line shell scripts) and if I broke protocol I do apologize.

eryksun - that did it after pulling out the indention after I copy pasted
:) BUT it is missing the (right click suggested spellings menu)
Now off to find that :) if you happen to know of some docs on where I could
find that I would appreciate a lead.

Thank you again
Darin





On Thu, Jun 27, 2013 at 7:07 PM, eryksun <eryk...@gmail.com> wrote:

> On Thu, Jun 27, 2013 at 5:57 PM, Darin Lawson Hosking <dari...@gmail.com>
> wrote:
> >
> > I also tried this and it appears to run ie no errors BUT does not
> highlight
> > misspellings?
> >
> > settings = webkit.WebSettings()
> > settings.set_property('enable-spell-checking', True)
>
> Try:
>
>     web = webkit.WebView()
>     web.open('...')
>     settings = web.get_settings()
>     settings.set_property('enable-spell-checking', True)
>     settings.set_property('spell-checking-languages', 'en_GB')
>
> Replace 'en_GB' with your desired language_country code.
>
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to