Kickstarter for AHK
#1
Guests
Posted 31 May 2012 - 08:42 AM
Isn't there some missing big AHK feature which would need full time attention of a developer for several months and which could be funded via Kickstarter?
#2
Guests
Posted 31 May 2012 - 08:44 AM
#3
Guests
Posted 31 May 2012 - 08:45 AM
#4
Posted 31 May 2012 - 09:48 AM
#5
Guests
Posted 31 May 2012 - 03:20 PM
#6
Guests
Posted 04 June 2012 - 12:19 PM
Here's an example of a software project which aimed to collect enough money to work on a git extension for a few months and so many people donated that now the goal is funding for a year of development:
<!-- m -->http://www.kickstart... ... -your-own/<!-- m -->
#7
Guests
Posted 04 June 2012 - 12:25 PM
It maybe big work, but it's exactly the thing which could be funded via Kickstarter. Someone could work on it for half a year or a year full time. There would be enough interest from users that it could be funded easily.
#8
Posted 04 June 2012 - 01:36 PM
#9
Guests
Posted 04 June 2012 - 02:29 PM
E.g. in python it could be something like that:
hotkey("keyname" (given as a string), function to be called, "options")
There is no need to stick to the current AHK syntax for other language bindings.
#11
Posted 04 June 2012 - 04:05 PM
The hotkey command/function can of course be available to other languages, I was specifically talking about the key:: syntax.Simple: the library would provide a function with all the necessary parameters which defines a hotkey and it would be up to the specific language implementation what syntax it provides for defining hotkeys
E.g. in python it could be something like that:
hotkey("keyname" (given as a string), function to be called, "options")
There is no need to stick to the current AHK syntax for other language bindings.
#12
Guests
Posted 04 June 2012 - 05:06 PM
#13
Guests
Posted 04 June 2012 - 05:09 PM
#n::Run Notepad
Could look like in Python like this:
def myfunc():
run("notepad")
hotkey("n", myfunc)
#14
Guests
Posted 04 June 2012 - 05:11 PM
hotkey("#n", myfunc)
#15
Guests
Posted 04 June 2012 - 06:05 PM




