I am developing a web browser for a touch-screen kiosk and the scrollbars on the WebView are impractically small for being able to scroll using them on a touch-screen.
Is there anyway to increase the size of them?
I can get a reference to the vertical scroller using
[[[[[webView mainFrame] frameView] documentView] enclosingScrollView] verticalScroller]
So it turns out you can use categories to override the scroller width method for all NSScrollers.
Eg. In NSScroller-MyScroller.h:
In NSScroller-MyScroller.m: