In Mac Lion, the scroll bar hides itself after a few seconds if no activity occurs. I have written an apple script to modify that behavior. I have to turn on the radio button every time my app launches. My question is, I have a cocoa application. Is it possible to keep the scroll enabled for the application always with out having to change the settings in system preferences.I don't want to enable for all the other apps always. And is the only way via the applescript. Or is there a defaults write to enable the scroll bars in lion ?.
|
I don't know about a defaults key to set up the style. When you change the Appearance preference panel's "Show scroll bars", all the NSScrollView instances are notified and receive a You can achieve the same result by explictly calling |
|||
|
|
|
You can write to defaults to accomplish this. The key is
To set it system-wide from the command line, you could do:
It can also be done programmatically by modifying preferences in any of various ways. It can get a little tricky depending on application sandboxing. This blog post explains it in more detail. |
|||||||||||
|
