Jump to content


Photo

AHK Live-Manual (Code Generator Collection v1.2)


  • Please log in to reply
8 replies to this topic

#1 Lucid_Method

Lucid_Method
  • Members
  • 146 posts

Posted 19 January 2011 - 04:20 PM

AHK Live-Manual - Code Generator Collection (v1.2)

AHK "Live-Manual" is my collection of code generators based on the AutoHotkey manual. Use the "Code Generators" drop down menu to select from the current list of generators. This is the first release as I develop the templates, I intend to make a bunch of these things broken down into individual generators.

Posted Image

[ Current Live-Manual Index: ]

* Built_in_Variables
* ControlGet (Frankie)
* FileSelectFile
* FileSelectFolder
* FormatTime
* InputBox
* Loop_FilePattern
* MsgBox (Thalon)
* SoundBeep

Download AHK Live-Manual (v1.2) - Includes Source and Required Lib

Posted Image

v1.2
-Added ControlGet - Thanks to Frankie for being the first to add a plugin and doing a great job :-)
-Added a basic updater under Help - loads the latest library entry from the autohotkey.net server


If you like the concept please help out! Take a function you use on a regular basis and put together a gui using the collection as examples. You can combine related sections from the manual to make a single plugin.

*See ControlGet as an example of the template format, I'm still cleaning some of the others.

#2 stevel

stevel
  • Members
  • 132 posts

Posted 19 January 2011 - 04:49 PM

Excellent!! :)

#3 stevel

stevel
  • Members
  • 132 posts

Posted 19 January 2011 - 05:47 PM

One pet peeve. If you get a chance, could you add to the InputBox screen a checkbox for 'Always on Top'?

#4 Lucid_Method

Lucid_Method
  • Members
  • 146 posts

Posted 19 January 2011 - 06:29 PM

Done. Updated to v1.1. Added a global AlwaysOnTop option that saves your saving between generators.

#5 stevel

stevel
  • Members
  • 132 posts

Posted 19 January 2011 - 06:55 PM

Lucid_Method,

I saw your fix. Quick turnaround!! :)

Actually, you read my mind, since that was going to be my second suggestion. What I meant concerning Inputbox is that it can be very annoying to have an Inputbox that does not always stay on top. So a checkbox for that particular code generator that sets the generated Inputbox itself to 'Always On Top' would be helpful. So far, I have been using the following to do this:
Gui +OwnDialogs +AlwaysOnTop
InputBox, OutVar [, Title, Prompt, HIDE, 375,189, X, Y, Font, Timeout, Default]
Having a checkbox to set this 'Always on Top' behavior for an Inputbox could be useful, particularly to a new AHK user.

#6 Lucid_Method

Lucid_Method
  • Members
  • 146 posts

Posted 19 January 2011 - 07:34 PM

Check the "+Owns Dialogs" checkbox (middle of the screen) to generate :-)

#7 stevel

stevel
  • Members
  • 132 posts

Posted 19 January 2011 - 07:49 PM

I did. Check the different behavior of each of the following to see what I mean:
;Gui +OwnDialogs
;or
;Gui +OwnDialogs +AlwaysOnTop
InputBox, OutVar [, Title, Prompt, HIDE, 375,189, X, Y, Font, Timeout, Default]


#8 Lucid_Method

Lucid_Method
  • Members
  • 146 posts

Posted 19 January 2011 - 08:16 PM

Oh I see what you mean now :-) Yeah with the other one having alwaysontop that puts the input box behind it. I'll put that on the next update

#9 Lucid_Method

Lucid_Method
  • Members
  • 146 posts

Posted 20 January 2011 - 06:00 AM

Just updated to v1.2 with Frankie's plugin for ControlGet - the first plugin for Live-Manual :-) If you're able to please think about helping out - a library of these things would make coding so much faster/easier for many