Jump to content


Photo

Do you wish to have a GUI with AutoHotKey?


  • Please log in to reply
17 replies to this topic

Poll: Do you wish to have a GUI with AutoHotKey? (16 member(s) have cast votes)

Do you wish to have a GUI with AutoHotKey?

  1. Yes, I like a GUI with AutoHotKey (14 votes [87.50%])

    Percentage of vote: 87.50%

  2. No, leave it the way it is. (1 votes [6.25%])

    Percentage of vote: 6.25%

  3. I have no opinion. (1 votes [6.25%])

    Percentage of vote: 6.25%

Vote Guests cannot vote

#1 PenP

PenP
  • Members
  • 10 posts

Posted 15 July 2004 - 02:32 PM

Just to see how many people would like a GUI with AutoHotKey :?:

Please vote....

Grtz,
PenP

PS, I think AutoHotKey is great the way it is now, but maybe with some GUI options it would even be better. :roll:

#2 Rajat

Rajat
  • Members
  • 1886 posts

Posted 15 July 2004 - 03:20 PM

my vote for GUI.

#3 beardboy

beardboy
  • Members
  • 443 posts

Posted 15 July 2004 - 04:12 PM

I vote for GUI.

thanks,
beardboy

#4 Jon

Jon
  • Members
  • 349 posts

Posted 15 July 2004 - 04:53 PM

I voted for it as well. I'd find having GUI capabilities very useful.

#5 Payam

Payam
  • Members
  • 62 posts

Posted 15 July 2004 - 08:27 PM

GUI por favor :)

#6 WhiteCloud

WhiteCloud
  • Members
  • 68 posts

Posted 16 July 2004 - 01:23 AM

what would it do?

#7 Chris

Chris
  • Administrators
  • 10727 posts

Posted 16 July 2004 - 03:30 AM

There are some details at http://www.autohotke...topic.php?t=493

#8 compuboy_r

compuboy_r
  • Members
  • 68 posts

Posted 16 July 2004 - 11:29 AM

Here goes mine to AHK GUI !!!!

#9 WhiteCloud

WhiteCloud
  • Members
  • 68 posts

Posted 16 July 2004 - 10:50 PM

i still don't see what a gui in ahk would help us with...

i'd rather see a utility that makes a diagram of your keyboard and shows which keys you've mapped and what they do. Including multi-key mapings...

#10 Chris

Chris
  • Administrators
  • 10727 posts

Posted 17 July 2004 - 12:32 AM

jamestr made a script that will sort and report all your currently defined hotkeys: http://www.autohotke...topic.php?t=215

#11 WhiteCloud

WhiteCloud
  • Members
  • 68 posts

Posted 17 July 2004 - 04:44 AM

thanks

This gets into a larger topic...

If it were graphical with some multi-colored arrows, some shading etc. depending on how you mapped the keys, you could even print it out and use it as you play the game. That would help a lot more users want to use this program.

My gaming friends want to be able to configure their keys in ways that aren't possible using the game menus or configuration files. Unfortunately they don't have the patience and discipline to learn AHK even if it is wonderfully powerful.

There are so many gaming communities out there whose players are well connected through forums and irc channels. Once AHK appeals to the "average gamer", it'll spread like wild fire. I guess it's just my opinion but it seems like word of mouth between other groups of computer users takes a lot longer to circulate around.

Also, to me at least, having a jpg diagram of all my keys would be rewarding after having gone thru all the trials of learning the program. For my mappings for games, I could share the picture with my friends when they ask me how i play.

#12 BoBo

BoBo
  • Guests

Posted 17 July 2004 - 07:16 AM

:idea:
Make a screenshot of your keyboard (run: osk.exe at the command line). Split into pieces (key's). Name that images following an order 1.gif; 2.gif; ... . Create a script

Loop, Read *.ahk
{
If Hotkey = a::
Run, ezclip copy 1.gif,,Hide
ControlSend, ControlName, %Hotkey% = %Clipboard%,Wordpad - Untitled
}

#13 Chris

Chris
  • Administrators
  • 10727 posts

Posted 17 July 2004 - 01:11 PM

If it were graphical with some multi-colored arrows, some shading etc. depending on how you mapped the keys, you could even print it out and use it as you play the game. That would help a lot more users want to use this program.

Thanks for being persistent and describing the idea in more detail. I will add this to the to-do list, though due to the many possible keyboard layouts (different languages, multimedia keyboards, etc.) supporting them all might be a challenge.

Maybe it would be better to build in something like jamestr's script so that in a script's main window, you can view the hotkeys sorted by their suffix key and with a short, optional description next to each. I know it wouldn't be graphical, but it'd be much easier to develop.

run: osk.exe at the command line

Thanks for mentioning this, it's pretty cool and hopefully it adapts to the user's actual keyboard (including multimedia keys, etc.).

#14 BoBo

BoBo
  • Guests

Posted 17 July 2004 - 03:37 PM

[Keyboard Layout]

Maybe usefull if to create a printable HotKey-Quik-Instruction.

8)

#15 Chris

Chris
  • Administrators
  • 10727 posts

Posted 17 July 2004 - 04:07 PM

Thanks.