geekhack
geekhack Community => Keyboards => Topic started by: MyNameIsFinn on Wed, 22 February 2012, 20:08:58
-
Can I make this bring mwe to geekhack?
If So, How?
-
*sigh* more details would help. Like what OS, what browser, and do you mean the Home button above the End buttom or the little house button on multimedia KBs ?
-
You can remap the key with autohotkeys (macro scripting) or try 3rd party software ( http://www.makeuseof.com/tag/remap-keyboard-free-tools-windows/ )
-
Why not make a keyboard shortcut like "control-alt-G" or "control-alt-H" ?
Create the shortcut, right-click on it, choose "properties" and select "shortcut key"
I used to like single dedicated buttons, but, after all, I do have multiple hands and even more multiple fingers, so it is instantaneous even if 3 fingers are involved.
-
*sigh* more details would help. Like what OS, what browser, and do you mean the Home button above the End buttom or the little house button on multimedia KBs ?
Windows 7, Google Chrome (However willing to switch) And I mean home btton above the end.
-
Why not make a keyboard shortcut like "control-alt-G" or "control-alt-H" ?
Create the shortcut, right-click on it, choose "properties" and select "shortcut key"
I used to like single dedicated buttons, but, after all, I do have multiple hands and even more multiple fingers, so it is instantaneous even if 3 fingers are involved.
Because I will be getting a geekhack home button and i want it to go to this website with just one button
-
Install Autohotkey and put this script in your startup:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Home::
Run http://www.geekhack.org/
return
This will cause your default browser to open GH.
-
I did this and nothing happened.. what am I doing wrong?
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Home::
Run http://www.geekhack.org/
return
-
Install Autohotkey and put this script in your startup:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Home::
Run http://www.geekhack.org/
return
This will cause your default browser to open GH.
Oh wow it works, thanks a lot