Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

iSee

macrumors 68040
Original poster
Oct 25, 2004
3,539
272
I wrote a little utility for the Mac that converts the 'enter' key on your keyboard to a right mouse button.

This would be useful to Apple laptop owners who never use that key but wish they had a right mouse button instead.

If you are curious about the technical details, it uses the "event tap" API introduced in 10.4 and is installed as a launchd daemon.

Anyway, I thought I'd release it as open source and I'm not quite sure where to do that. I guess I'd also like to release it to end users who may find it useful, and I'm not sure where to do that either. (I did make an installer package for it, so it's fairly painless to install--there's an uninstaller, too).
 

HiRez

macrumors 603
Jan 6, 2004
6,250
2,576
Western US
Open source is not a bad idea...perhaps http://www.sourceforge.net ? I like http://www.versiontracker.com (you need to sign up as a developer), don't know if that's the best place if you want to open-source it though (but you could still put it up there). On versiontracker, you can keep multiple versions, see how many people download it, and it has builtin feedback forums. Good luck.
 

whooleytoo

macrumors 604
Aug 2, 2002
6,607
716
Cork, Ireland.
You could go the shareware route, and still release the source if you like.

I'm of the opinion if you spend your precious time writing something which people find useful, you've every right to make a little money out of it.

I know most people don't make a lot from shareware, but I do know know one ex-colleague who made a small fortune from it.
 

djbahdow01

macrumors 6502a
Jan 19, 2004
569
0
Northeast, CT
I wrote a little utility for the Mac that converts the 'enter' key on your keyboard to a right mouse button.

This would be useful to Apple laptop owners who never use that key but wish they had a right mouse button instead.

If you are curious about the technical details, it uses the "event tap" API introduced in 10.4 and is installed as a launchd daemon.

Anyway, I thought I'd release it as open source and I'm not quite sure where to do that. I guess I'd also like to release it to end users who may find it useful, and I'm not sure where to do that either. (I did make an installer package for it, so it's fairly painless to install--there's an uninstaller, too).


Intersting concept but when you can ctrl/click to get a right click, is it really worth it. Its pretty easy to do this already. And if you really need a right click that bad you could just pick up a 2 button mouse.

I'm not trying to bash the program or concept, but it just seems a little redundant.
 

iSee

macrumors 68040
Original poster
Oct 25, 2004
3,539
272
Well, yeah, it's of minor use, I admit.

I got used to using the enter key as a right mouse button under Boot camp using InputRemapper, so I thought I'd try to implement the same functionality on my Mac.

A more useful version might allow you to map the enter key to more interesting things... Hmm....

* Some other key - some people might like a ctrl or option key on the right-hand side. Or maybe some of the keys that don't appear on the laptop keyboards like F13.
* Perhaps it could trigger a key-combo.
* Perhaps it could trigger an entire key macro sequence.
* Maybe it could launch a favorite program.
 

0007776

Suspended
Jul 11, 2006
6,473
8,170
Somewhere
A more useful version might allow you to map the enter key to more interesting things... Hmm....

* Some other key - some people might like a ctrl or option key on the right-hand side. Or maybe some of the keys that don't appear on the laptop keyboards like F13.
* Perhaps it could trigger a key-combo.
* Perhaps it could trigger an entire key macro sequence.
* Maybe it could launch a favorite program.

What would be more usefull to me is if it had the option to make it act as a middle mouse button, since I already use the two finger right click.
 

djbahdow01

macrumors 6502a
Jan 19, 2004
569
0
Northeast, CT
Well, yeah, it's of minor use, I admit.

I got used to using the enter key as a right mouse button under Boot camp using InputRemapper, so I thought I'd try to implement the same functionality on my Mac.

A more useful version might allow you to map the enter key to more interesting things... Hmm....

* Some other key - some people might like a ctrl or option key on the right-hand side. Or maybe some of the keys that don't appear on the laptop keyboards like F13.
* Perhaps it could trigger a key-combo.
* Perhaps it could trigger an entire key macro sequence.
* Maybe it could launch a favorite program.

Thats a cool start. A key-combo using one key wouldn't be a bad idea. Sometimes I forget which keys to press on certain things.
 

Mernak

macrumors 6502
Apr 9, 2006
435
16
Kirkland, WA
What would be more usefull to me is if it had the option to make it act as a middle mouse button, since I already use the two finger right click.

That would be nice, I miss scrolling on my iBook. Ctrl + Click is easy enough for right click, bu the functionality for scrolling in missing.
 

PlaceofDis

macrumors Core
Jan 6, 2004
19,241
6
Well, yeah, it's of minor use, I admit.

I got used to using the enter key as a right mouse button under Boot camp using InputRemapper, so I thought I'd try to implement the same functionality on my Mac.

A more useful version might allow you to map the enter key to more interesting things... Hmm....

* Some other key - some people might like a ctrl or option key on the right-hand side. Or maybe some of the keys that don't appear on the laptop keyboards like F13.
* Perhaps it could trigger a key-combo.
* Perhaps it could trigger an entire key macro sequence.
* Maybe it could launch a favorite program.

see that would be sweet. i'd really like to have an option key there instead of the enter key. so being able to freely re-map it would be gravy.
 

iSee

macrumors 68040
Original poster
Oct 25, 2004
3,539
272
What would be more usefull to me is if it had the option to make it act as a middle mouse button, since I already use the two finger right click.

That one's an easy change to the source code... But... To make it an option, I'd have to make a prefs panel. Although to get started, I could just create a parameter in the associated .plist...
 

abhibeckert

macrumors 6502
Jun 2, 2007
429
592
Cairns, Australia
That one's an easy change to the source code... But... To make it an option, I'd have to make a prefs panel. Although to get started, I could just create a parameter in the associated .plist...

A parameter in the plist is easy enough for now, people can just run defaults write com.isee.mygreatkeyremapper mouseButton middle in terminal.

Definitely go for releasing it as open source. Could be only a few people will use the app, but I bet plenty of people are interested in seeing the source code.

I've worked with SourceForge before, and found it a total pain in the ass. Google's project hosting looks really nice, but I haven't used it.
 

mkrishnan

Moderator emeritus
Jan 9, 2004
29,776
15
Grand Rapids, MI, USA
Open source is not a bad idea...perhaps http://www.sourceforge.net ? I like http://www.versiontracker.com (you need to sign up as a developer), don't know if that's the best place if you want to open-source it though (but you could still put it up there). On versiontracker, you can keep multiple versions, see how many people download it, and it has builtin feedback forums. Good luck.

Definitely get listed in Versiontracker and Macupdate at a minimum. My personal take is that your best bet is probably to use Sourceforge, because it has so many OSS support tools (you can easily indicate different versions of GPL, you get forums and bugtrackers, version management, etc), and then simply list with VT and MU.

iSee said:
A more useful version might allow you to map the enter key to more interesting things... Hmm....

* Some other key - some people might like a ctrl or option key on the right-hand side. Or maybe some of the keys that don't appear on the laptop keyboards like F13.
* Perhaps it could trigger a key-combo.
* Perhaps it could trigger an entire key macro sequence.
* Maybe it could launch a favorite program.

FWIW DoubleCommand already does some of these things. The mouse-replacing ideas are really interesting, though.
 

kalisphoenix

macrumors 65816
Jul 26, 2005
1,231
1
Some people don't have a left arm, and they might like this, seeing as how there are no right control keys on MBs.

I'm kinda surprised that Apple doesn't enable this possibility, actually. It might seem like a rather rare situation, but...
 

Eraserhead

macrumors G4
Nov 3, 2005
10,434
12,250
UK
@Software sites, the site I get most hits from Apple's download site, in fact I generally get more than MacUpdate/Versiontracker. I submit to MacUpdate/Versiontracker/Apple/Softpedia (Who are really nice), and occasionally to download.com and macgamefiles.

Download.com are total jokes though and take 14 days to submit anything.
 

iSee

macrumors 68040
Original poster
Oct 25, 2004
3,539
272
Thanks for all this info and the suggestions.
I got a little contract job to occupy my evenings for a little while, but I'll get back to this. Heh, I have bigger plans than this little app, but it's nice to go through all this with something small and unimportant...
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.