Jump to content

AutoIt3HelpFiles.zip


Jos
 Share

Helpfile suggestion  

16 members have voted

  1. 1. Introduce also Syntax Colors for the SYNTAX block in the Helpfile?

    • Yes
      6
    • No
      10


Recommended Posts

  • Developers

File Name: AutoIt3HelpFiles.zip

File Submitter: Jos

File Submitted: 13 Jul 2013

File Category: Beta

As suggested by AZJIO, I have looked at converting the SYNTAX section of each helpfile page by loading it into SciTE and saving the HTML code which will result in using the SciTE Color scheme for this section.

Let me know what you all think whether it is worth making the update to the helpfile and its buildscripts.

 

Click here to download this file

Edited by Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Replies 50
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Syntax section is not AutoIt code. It's pseudocode meant to describe the principle in human readable fashion.

For example, array access in AutoIt is represented by [] and in "syntax" section [] has completely different meaning. This could create unnecessary confusion.

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

Jos
Here is the correction for some files.

Func _Correct()
$sLog = ''

Local $aFileName[4] = [3, 'ProgressOn', 'SplashImageOn', 'SplashTextOn']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">opt</span>', '<span class="S0">opt</span>')

Local $aFileName[9] = [8, 'FileOpenDialog', 'FileSaveDialog', 'FileSelectFolder', 'InputBox', 'MsgBox', 'PixelChecksum', 'PixelGetColor', 'PixelSearch']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">hwnd</span>', '<span class="S0">hwnd</span>')

Local $aFileName[3] = [2, 'PixelChecksum', 'PixelSearch']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">step</span>', '<span class="S0">step</span>')

Local $aFileName[6] = [5, 'BinaryLen', 'BinaryMid', 'ConsoleRead', 'StderrRead', 'StdoutRead']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">binary</span>', '<span class="S0">binary</span>')

Local $aFileName[8] = [7, 'FileOpenDialog', 'FileSaveDialog', 'InetGet', 'InetGetSize', 'InetRead', 'ToolTip', 'GUICtrlSetTip']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S13">options</span>', '<span class="S0">options</span>')

Local $aFileName[4] = [3, 'FileCreateShortcut', 'GUICtrlSetTip', 'ToolTip']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S13">icon</span>', '<span class="S0">icon</span>')

Local $aFileName[2] = [1, 'FileCreateShortcut']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">number</span>', '<span class="S0">number</span>')

Local $aFileName[4] = [3, 'Exit', 'SetError', 'SetExtended']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">return</span>', '<span class="S0">return</span>')

Local $aFileName[3] = [2, 'Eval', 'Execute']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">string</span>', '<span class="S0">string</span>')

Local $aFileName[2] = [1, 'GUICtrlSetData']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">default</span>', '<span class="S0">default</span>')

Local $aFileName[2] = [1, 'IfElseEndIf']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">elseif</span><span class="S0"> statements </span>', '<span class="S0">elseif statements </span>')
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">else</span><span class="S0"> statements</span>', '<span class="S0">else statements</span>')
EndFunc

Func _Replase($aFileName, $sSearch, $sReplase)
    Local $sText, $hFile, $sPath = @ScriptDir & '\tmpTest\', $sExt = '.htm'
    For $i = 1 To $aFileName[0]
        $sText = FileRead($sPath & $aFileName[$i] & $sExt)
        $sText = StringReplace($sText, $sSearch, $sReplase)
        $extended = @extended
        $hFile = FileOpen($sPath & $aFileName[$i] & $sExt, 2)
        FileWrite($hFile, $sText)
        FileClose($hFile)
    Next
    Return $extended
EndFunc   ;==>_Replase

.

Edited by AZJIO
Link to comment
Share on other sites

  • Developers

Syntax section is not AutoIt code. It's pseudocode meant to describe the principle in human readable fashion.

For example, array access in AutoIt is represented by [] and in "syntax" section [] has completely different meaning. This could create unnecessary confusion.

Agree it is partly pseudocode and am on the fence whether or not this is an good idea too, that is why I am looking for opinions and posted the initial result.

 

Jos

Here is the correction for some files.

Func _Correct()
$sLog = ''

Local $aFileName[4] = [3, 'ProgressOn', 'SplashImageOn', 'SplashTextOn']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">opt</span>', '<span class="S0">opt</span>')

Local $aFileName[9] = [8, 'FileOpenDialog', 'FileSaveDialog', 'FileSelectFolder', 'InputBox', 'MsgBox', 'PixelChecksum', 'PixelGetColor', 'PixelSearch']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">hwnd</span>', '<span class="S0">hwnd</span>')

Local $aFileName[3] = [2, 'PixelChecksum', 'PixelSearch']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">step</span>', '<span class="S0">step</span>')

Local $aFileName[6] = [5, 'BinaryLen', 'BinaryMid', 'ConsoleRead', 'StderrRead', 'StdoutRead']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">binary</span>', '<span class="S0">binary</span>')

Local $aFileName[6] = [5, 'FileOpenDialog', 'FileSaveDialog', 'InetGet', 'ToolTip', 'GUICtrlSetTip']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S13">options</span>', '<span class="S0">options</span>')

Local $aFileName[4] = [3, 'FileCreateShortcut', 'GUICtrlSetTip', 'ToolTip']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S13">icon</span>', '<span class="S0">icon</span>')

Local $aFileName[2] = [1, 'FileCreateShortcut']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">number</span>', '<span class="S0">number</span>')

Local $aFileName[4] = [3, 'Exit', 'SetError', 'SetExtended']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">return</span>', '<span class="S0">return</span>')

Local $aFileName[3] = [2, 'Eval', 'Execute']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S4">string</span>', '<span class="S0">string</span>')

Local $aFileName[2] = [1, 'GUICtrlSetData']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">default</span>', '<span class="S0">default</span>')

Local $aFileName[2] = [1, 'IfElseEndIf']
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">elseif</span><span class="S0"> statements </span>', '<span class="S0">elseif statements </span>')
$sLog &= @CRLF & _Replase($aFileName, '<span class="S5">else</span><span class="S0"> statements</span>', '<span class="S0">else statements</span>')
EndFunc

Func _Replase($aFileName, $sSearch, $sReplase)
    Local $sText, $hFile, $sPath = @ScriptDir & '\tmpTest\', $sExt = '.htm'
    For $i = 1 To $aFileName[0]
        $sText = FileRead($sPath & $aFileName[$i] & $sExt)
        $sText = StringReplace($sText, $sSearch, $sReplase)
        $extended = @extended
        $hFile = FileOpen($sPath & $aFileName[$i] & $sExt, 2)
        FileWrite($hFile, $sText)
        FileClose($hFile)
    Next
    Return $extended
EndFunc   ;==>_Replase

When we would move ahead with this, the process has to be that we read the FuncName.txt and run it through our Gen_txt2htm.au3 script to produce the output helpfile page.

We can work on refining the process later but now want to hear from you all if this is something to pursuit or not.

Jos

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Agree it is partly pseudocode and am on the fence whether or not this is an good idea too, that is why I am looking for opinions and posted the initial result.

I know that. Probably just as you know that there will always be people who would think bad ideas are good ideas. Still, that doesn't make bad ideas good ideas.

...At least it shouldn't.

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

  • Developers

I know that. Probably just as you know that there will always be people who would think bad ideas are good ideas. Still, that doesn't make bad ideas good ideas.

...At least it shouldn't.

Your opinion was clear in the first post and am trying to understand the added value of the rest in this post in this discussion.

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

It's good when you have floats, macros, numbers & string literals but then SciTE colours optional [] brackets which may be confusing considering the nature of what [] brackets do in AutoIt.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

Yellow box has no elements of the array. It is special syntax for a yellow box so everything is lawful.

Brackets are a symbol, which it isn't in the case of this. Therefore it shouldn't be orange.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

True True, I'm not against it.

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

Using a different colour scheme might be more acceptable, but the confusion factor still remains. Every time I see syntax highlighting, I'm given the impression that the code will work as it is written when I copy/paste it into my script.

Edited by czardas
Link to comment
Share on other sites

Yellow background and the position of the block in the description does not give the impression that this is another code?

4 years ago I have not used this block, although I knew what it meant. Later, when I began to use UDF, this block was useful for seeing the default values. There was one shortcoming: poor readability. Try to use standard Notepad to edit the scripts. Hopefully now I do not need to prove that the color coding makes it easier to perceive the elements in the script code.

Link to comment
Share on other sites

I like this idea, but yellow background and red code is hurting my eyes :P

Default SciTE editor's background color is #F0F4F9, how about it?

It helps to see the difference between red and orange. On yellow background it looks the same.
Have a look:

JxVDjW2.png

Edited by VixinG

[indent=3][/indent]

Link to comment
Share on other sites

Try to use standard Notepad to edit the scripts. Hopefully now I do not need to prove that the color coding makes it easier to perceive the elements in the script code.

 

I have used notepad for lots of scripting tasks before (until I started using my own editor which has no syntax highlighting) - it all depends on the task at hand. Anyway if people like it, then change it, although it seems unecessary - it's mostly a design choice. If something can be done in a simple way rather than being done in a more complicated way with little, or no, added benefit; I would opt for the simpler solution. In this case I see only added complication.

Edit

I have just compaired the old and new versions. I really do prefer the older version. It is instantly clear to the eye which code is the example to run, and the difference between various sections on the page stand out. If you're not careful everything will start to look the same. Perhaps black on yellow is a bit boring - that's all.

Edited by czardas
Link to comment
Share on other sites

VixinG,

I like that. I never understood why yellow was chosen?!

UDF List:

 
_AdapterConnections()_AlwaysRun()_AppMon()_AppMonEx()_ArrayFilter/_ArrayReduce_BinaryBin()_CheckMsgBox()_CmdLineRaw()_ContextMenu()_ConvertLHWebColor()/_ConvertSHWebColor()_DesktopDimensions()_DisplayPassword()_DotNet_Load()/_DotNet_Unload()_Fibonacci()_FileCompare()_FileCompareContents()_FileNameByHandle()_FilePrefix/SRE()_FindInFile()_GetBackgroundColor()/_SetBackgroundColor()_GetConrolID()_GetCtrlClass()_GetDirectoryFormat()_GetDriveMediaType()_GetFilename()/_GetFilenameExt()_GetHardwareID()_GetIP()_GetIP_Country()_GetOSLanguage()_GetSavedSource()_GetStringSize()_GetSystemPaths()_GetURLImage()_GIFImage()_GoogleWeather()_GUICtrlCreateGroup()_GUICtrlListBox_CreateArray()_GUICtrlListView_CreateArray()_GUICtrlListView_SaveCSV()_GUICtrlListView_SaveHTML()_GUICtrlListView_SaveTxt()_GUICtrlListView_SaveXML()_GUICtrlMenu_Recent()_GUICtrlMenu_SetItemImage()_GUICtrlTreeView_CreateArray()_GUIDisable()_GUIImageList_SetIconFromHandle()_GUIRegisterMsg()_GUISetIcon()_Icon_Clear()/_Icon_Set()_IdleTime()_InetGet()_InetGetGUI()_InetGetProgress()_IPDetails()_IsFileOlder()_IsGUID()_IsHex()_IsPalindrome()_IsRegKey()_IsStringRegExp()_IsSystemDrive()_IsUPX()_IsValidType()_IsWebColor()_Language()_Log()_MicrosoftInternetConnectivity()_MSDNDataType()_PathFull/GetRelative/Split()_PathSplitEx()_PrintFromArray()_ProgressSetMarquee()_ReDim()_RockPaperScissors()/_RockPaperScissorsLizardSpock()_ScrollingCredits_SelfDelete()_SelfRename()_SelfUpdate()_SendTo()_ShellAll()_ShellFile()_ShellFolder()_SingletonHWID()_SingletonPID()_Startup()_StringCompact()_StringIsValid()_StringRegExpMetaCharacters()_StringReplaceWholeWord()_StringStripChars()_Temperature()_TrialPeriod()_UKToUSDate()/_USToUKDate()_WinAPI_Create_CTL_CODE()_WinAPI_CreateGUID()_WMIDateStringToDate()/_DateToWMIDateString()Au3 script parsingAutoIt SearchAutoIt3 PortableAutoIt3WrapperToPragmaAutoItWinGetTitle()/AutoItWinSetTitle()CodingDirToHTML5FileInstallrFileReadLastChars()GeoIP databaseGUI - Only Close ButtonGUI ExamplesGUICtrlDeleteImage()GUICtrlGetBkColor()GUICtrlGetStyle()GUIEventsGUIGetBkColor()Int_Parse() & Int_TryParse()IsISBN()LockFile()Mapping CtrlIDsOOP in AutoItParseHeadersToSciTE()PasswordValidPasteBinPosts Per DayPreExpandProtect GlobalsQueue()Resource UpdateResourcesExSciTE JumpSettings INISHELLHOOKShunting-YardSignature CreatorStack()Stopwatch()StringAddLF()/StringStripLF()StringEOLToCRLF()VSCROLLWM_COPYDATAMore Examples...

Updated: 22/04/2018

Link to comment
Share on other sites

VixinG,

I like that. I never understood why yellow was chosen?!

 

I don't know. Yellow is mostly used to highlight stuff, like ctrl+f in browsers. It's also used in SciTE to see current line: 

caret.line.back=#FFFED8 // au3.properties file

Regards :)

Edited by VixinG

[indent=3][/indent]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...