Search found 574 matches

by ahk7
21 Jan 2014, 14:34
Forum: Scripts and Functions (v1)
Topic: pAHKlight - Your Lightweight Guide to AHK libs+classes+tools
Replies: 72
Views: 40607

Re: pAHKlight - Your Lightweight Guide to AHK libs+classes+t

I think AHK also needs real standard library not only collection of scripts. Many people discussed it, one person actually did it (Tuncay) and it didn't stick. I don't think the AHK installer itself should include a "standard library" but a central repository in one form or another is nice. This is...
by ahk7
20 Jan 2014, 15:01
Forum: Scripts and Functions (v1)
Topic: pAHKlight - Your Lightweight Guide to AHK libs+classes+tools
Replies: 72
Views: 40607

Re: pAHKlight - Your Lightweight Guide to AHK libs+classes+t

Yes it could be on the Wiki - downloading the Wiki page(s) and parsing them would be quite easy as you can simply have the "database" displayed as a code block which would mean it is plain text which is easy to extract from a downloaded html file. (I just tried to make an example but the Wiki is clo...
by ahk7
20 Jan 2014, 12:12
Forum: Scripts and Functions (v1)
Topic: pAHKlight - Your Lightweight Guide to AHK libs+classes+tools
Replies: 72
Views: 40607

Re: pAHKlight - Your Lightweight Guide to AHK libs+classes+t

@joedf: The problem I have with that solution is that the script is no longer simple to maintain (I haven't seen it of course but you may be using httprequests etc which is rather complicated for newbies*) which is one my design goals AND although there is plenty to be found on GH there is far more ...
by ahk7
17 Jan 2014, 15:23
Forum: Scripts and Functions (v1)
Topic: pAHKlight - Your Lightweight Guide to AHK libs+classes+tools
Replies: 72
Views: 40607

Re: pAHKlight - Your Lightweight Guide to AHK libs+classes+t

I really miss the old Standard Library Collection ... It had a very informative and easy to use gui and you could launch included examples and browse notes to get a quick idea of what each lib did. Maybe you can use it as an inspiration? :) pAHKlight is a very bare bones version of Tuncay's Standar...
by ahk7
01 Jan 2014, 11:49
Forum: Scripts and Functions (v1)
Topic: pAHKlight - Your Lightweight Guide to AHK libs+classes+tools
Replies: 72
Views: 40607

pAHKlight - Your Lightweight Guide to AHK libs+classes+tools

pAHKlight - Your Lightweight Guide to AutoHotkey libraries, classes, functions and tools https://raw.github.com/hi5/_resources/master/pahklight.png Note: this is just to see if there is sufficient interest in setting up and maintaining something like this. The database currently only has 10 entries ...
by ahk7
07 Dec 2013, 15:46
Forum: Wish List
Topic: Adding tooltip to Menu cmd (like Icon)
Replies: 0
Views: 1366

Adding tooltip to Menu cmd (like Icon)

I'm not sure if it it is actually possible to have a tooltip on a AHK menu - but this is a wishlist section so here goes. Perhaps make it easy to add a tooltip to a menu item in the same manner as it now is to add an icon to a menu entry Menu, MyMenu, Add, Item1, MenuHandler ; similar to Icon, a Too...
by ahk7
03 Dec 2013, 12:20
Forum: Scripts and Functions (v1)
Topic: CL3 clipboard utility (text only) with menu, search, quick paste, cycle/step, plugins, API, ...
Replies: 59
Views: 33268

Re: CL3 minimal clipboard caching utility

Thanks for reporting it. My bad. I forgot that *.bak files are ignored by default and the script relies on res\history.bak to be there at first startup, I added it as res\history.bak.txt and it should work now. I will add additional safety checks as well later on.
by ahk7
30 Nov 2013, 18:10
Forum: Ask for Help (v1)
Topic: [request] indexing all words in a word file
Replies: 12
Views: 5145

Re: [request] indexing all words in a word file

If you create make it a PDF, you can then get the text from the PDF using PDFTK which will includes a form feed char between pages which would allow you to actually split / find / use each page. So you have the text per page and then you can count the words from there.
by ahk7
30 Nov 2013, 12:11
Forum: Wish List
Topic: Ahk2Exe - CLI switch to show the GUI
Replies: 4
Views: 2879

Re: Ahk2Exe - CLI switch to show the GUI

Of course. I only changed a few lines in Ahk2Exe.ahk you can compare with the original (via GH as well) if it works for you and fincs likes the idea he can just "pull it" (or whatever its called)
by ahk7
30 Nov 2013, 08:07
Forum: Wish List
Topic: Ahk2Exe - CLI switch to show the GUI
Replies: 4
Views: 2879

Re: Ahk2Exe - CLI switch to show the GUI

@just me: you can try my attempt here https://github.com/hi5/Ahk2Exe/tree/guicli

use ahk2exe ... /forcegui 1 to show the gui after passing options via CLI
by ahk7
30 Nov 2013, 05:23
Forum: Scripts and Functions (v1)
Topic: CL3 clipboard utility (text only) with menu, search, quick paste, cycle/step, plugins, API, ...
Replies: 59
Views: 33268

CL3 clipboard utility (text only) with menu, search, quick paste, cycle/step, plugins, API, ...

CL3 is a lightweight clone of the CLCL clipboard caching utility which can be found at http://www.nakka.com/soft/clcl/index_eng.html written in AutoHotkey, source at https://github.com/hi5/CL3 It is not meant to compete with the many clipboard caching utilities that are (freely) available, but merel...
by ahk7
10 Nov 2013, 06:16
Forum: Scripts and Functions (v1)
Topic: [library] TF: Text files & Variables (strings) v3.8
Replies: 61
Views: 37845

[library] TF: Text files & Variables (strings) v3.8

TF v3.8 - AutoHotkey library for Text files & Variables (strings) Library and documentation at https://github.com/hi5/TF As the name suggest this is a AHK Library with a number of functions to "manipulate" text, both files such as *.txt, *.ahk, *.html, *.css etc AND Strings (or variables). It is NO...
by ahk7
07 Nov 2013, 15:23
Forum: Scripts and Functions (v1)
Topic: InsertTOCintoMD - Insert table of contents in Markdown file
Replies: 0
Views: 2034

InsertTOCintoMD - Insert table of contents in Markdown file

AutoHotkey script to add a Table of Contents to a Markdown document. https://github.com/hi5/InsertTOCintoMD/ GitHub automatically inserts anchors into your Markdown files when browsing a GH repository. This AutoHotkey script inserts a table of contents into your Markdown file - a table of contents c...
by ahk7
07 Nov 2013, 14:48
Forum: Scripts and Functions (v1)
Topic: [func] Touch() - set, store and restore file datetime stamp
Replies: 0
Views: 2257

[func] Touch() - set, store and restore file datetime stamp

A function to set, store and restore the datetime stamp of a file or folder. Useful when you are modifying files and you want to keep the original datetime stamp. The datetime stamp properties are stored in a static object. Function and documentation at https://github.com/hi5/Touch Example: ; Touch(...

Go to advanced search