-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By water
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
-
By water
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 OutlookEX-CHM.zip TaskScheduler TaskScheduler-CHM.zip WebDriver Webdriver-CHM.zip
Preliminary release of the WebDriver help file.
This release is for you to play with. Please tell us what you like, what is missing or just what you think about it. For download please see the top of this post. Other CHM help files come with existing UDFs:
WinHTTP The integration of these help files in SciTE is now done with the tool presented here.
Advanced.Help
This tool, created by BugFix from the german forum, allows custom CHM help files to be included in SciTE.
The existing help key is used to call either the AutoIt help or the corresponding custom help. Depending on which keyword the cursor is currently on. For unknown keywords the AutoIt help is called. For AutoIt a separate window is opened and for the user-defined UDFs another window is opened, so you can work with both helps at the same time.
The ZIP file contains an installation guide in German (Install_Deutsch.txt) and English (Install_English.txt) in which the installation and configuration is described in detail.
For download please check the download forum.
-
By seadoggie01
I went to go edit my Au3Check parameters today, opened the SciTE4AutoIt3 helpfile to review the options, and could only find this:
#AutoIt3Wrapper_Au3Check_Parameters= ;Au3Check parameters...see SciTE4AutoIt3 Helpfile for options Am I missing them elsewhere in the helpfile, or is this a circular reference? (My helpfile was last updated in the history on 23-3-2021)
-
By DagSa
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 this way. I have not found any way to resize it to specific size when open up.
5. Use of IE.au3 lib. Well it could open mht files ,but always got question about use it as default browser or not. Think this also make IE browser lose control so I could not resize.
6. Look at making a .CHM file, but I don't think its the future do use that format. (.hlp is no no and old)
Any tips of do it in autoit or make a call to open up in some nice format working everywhere.
-
By oceanwind
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)
Else
ConsoleWrite(">--|$result:=" & $result[0] & "|--<")
ConsoleWrite(@LF)
EndIf
EndFunc
Can someone give some advices?
tks in advance
-
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now