Left Sided Windows Scrollbars?
Skin and Blister asks: "Years ago mouse manufacturers realized that not everyone is right handed and (thankfully) created the option of reversing the mouse buttons to accommodate left handed users. Now that laptops (and obviously tablets) have integrated touch technology, the new challenge for south paws is to use a stylus in the left hand to manipulate a scroll bar on the right side of an open window. Does anyone know if there is a way to move scroll bars to the left side of a window in Microsoft Windows XP Pro?"
then create and use a TTF font that is "upside-down", and set your text direction as right-to-left.
!em rof skroW
@interface NostalgicScrollView : NSScrollView
, NSMinY(contentFrame))];
{
}
@end
@implementation NostalgicScrollView
- (void)tile
{
[super tile];
id contentView = [self contentView];
id scroller = [self verticalScroller];
NSRect contentFrame = [contentView frame];
NSRect scrollerFrame = [scroller frame];
[scroller setFrameOrigin:NSMakePoint(0.0, NSMinY(scrollerFrame))];
[contentView setFrameOrigin:NSMakePoint(NSWidth(scrollerFrame)
}
@end
The only title of honor that a tyrant can grant is "Enemy of the State."
Yeah, I tell people that I hate using right handed pencils.....Ned Flanders rules!
s /LeftScroll-7380.shtml
per the Question:
Use FireFox for your browser:
http://geckotip.mozdev.org/index.html
For your Palm (well, your computer kind):
http://handheld.softpedia.com/get/System-Utilitie
Layne
actually, Objective C allows you to add new methods (or override existing ones) without access to the original source code. So you could compile the above code (well, override NSScrollView tile) into a .so and use the LD_PRELOAD variable to specify it be loaded. Thus,any Cocoa program would be modified. Carbon wouldn't be affected.
Do you even lift?
These aren't the 'roids you're looking for.
I read left-to-right, and my second finger sits on the mouse's middle scroll-wheel/button (so I can roll it up or down). It all just works.
:-) for choosing sides. Alternatively, just watch to see which buttons get clicked when a user logs in.
WRT handedness-sensitive PDAs, hain't knowingly seen one yet.
Handing a mouse is easy, just ask for some weird combination (Ctrl-Alt-Button for example, and wait for the cursing from 'Doze users
Got time? Spend some of it coding or testing
What's the problem? Just write in them starting from the back. It'll be backwards for us righties, but then, so is your writing style ;)
The cesspool just got a check and balance.
A quick google search finds:
s tID=98910&SiteID=1
http://forums.microsoft.com/MSDN/ShowPost.aspx?Po
So, at least in Vista, the answer will be no.