Search the Community
Showing results for tags 'chm'.
-
The F1 key in SciTE displays the documentation for the word on which the cursor is located. Up to now this was only available for AutoIt. But times change and we change with them With the "Simple Library Docs Generator" created by MrCreatoR and customized by me, any CHM help file (Compressed HTML Help) can be created (more about this later in a separate thread). The only prerequisite: All function names have to start with the same identifier (like _AD_, _OL_ etc.). We have already created CHM help files for the following UDFs: Active Directory AD-CHM.zip Outlook
- 53 replies
-
- advanced.help
- udfs
-
(and 1 more)
Tagged with:
-
Version 0.1.0
148 downloads
ATTENTION! THIS IS STILL WORK IN PROGRESS! This is the modified version of MrCreatoR's "Simple Library Docs Generator". It allows to create CHM help files that look like the AutoIt help file. In additon this CHM files can then be used with Advanced.Help. This a very early alpha version - so it is miles away from being perfect. It's just something for you to play with. The documentation is in the making and will be published as soon as possible. BTW: If you like this UDF please click the "I like this" button. This tells me where to next put my development effort-
- simple library docs generator
- chm
-
(and 1 more)
Tagged with:
-
Due to corona I have a lot of spare time at the moment. So I started to create a "real" help file fo the AD UDF (MS Active Directory). This help file should look/work like the AutoIt help file. Attached you find the first beta of the AD help file. Done so far: Similar functions have been assigned to a group (example: mail, mailbox and Exchange related functions have been assigned to the "EMail" group) Content, Search and Index tabs work Formatting is similar to the AutoIt help file Introduction page ToDo: Fill index tab Use fold
-
Try to find a solution for help files to my autoit executable. Its installed from simple XP-POS cash computers to desktop with windows 7, 8, 10. The compiled AutoIt program itself work everywhere, but the help file?? I need a help file called from from the program and I don't really know what working best in all OS platforms. 1. A wordfile is helpful enough, but word is not installed everywhere. 2. RTF is very big files with pictures. 3. I could save it as pdf, but not all have it either. 4. Tried .MHT file, but downside is browser could cover hole screen if browser closed th
-
Want to call .net func _Help::ShowHelpIndex.Here is the link in msdn:https://msdn.microsoft.com/en-us//library/system.windows.forms.help.showhelpindex. I wrote the script below: $dll = DllOpen("C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Windows.Forms.dll") $result = DllCall($dll, "none", "ShowHelpIndex","HWND", 0,"wstr","D:\Program Files\AutoIt3\AutoIt3CHS.chm") _check_result() DllClose($dll) Func _check_result() If @error Then ConsoleWrite(">--|error:=" & @error & "|--<") ConsoleWrite(@LF) E