Report Help File Issues Here
#141
Posted 08 November 2011 - 03:46 PM
yes from the exe details 3.3.6.1
#142
Posted 08 November 2011 - 04:42 PM
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
#143
Posted 08 November 2011 - 05:11 PM
Example List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _DesktopDimensions() • _DisplayPassword() • _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() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _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() • _StringIsValid() • _StringReplaceWholeWord() • _StringStripChar() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • AutoIt Search • AutoIt3 Portable • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • FileInstallr • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIGetBkColor() • LockFile() • PasteBin • SciTE Jump • Signature Creator • WM_COPYDATA • More Examples...Updated: 11/04/2013
#144
Posted 08 November 2011 - 06:09 PM
#Include <Crypt.au3>
is there a list in this section anywhere of the possible encyption types?
ie $CALG_RC4 etc etc
I couldn't find that in helpfile too in almost latest beta (3.3.7.18).
Finally I found all these algoritms in sources of Crypt UDF.
#145
Posted 08 November 2011 - 07:37 PM
#146
Posted 08 November 2011 - 07:55 PM
Except that Encryption Management would make most people think of encrypting both ways, while Crypt Management would make it harder to find if you're looking for encryption help, even to decrypt. Just my thoughts on the matter, it doesn't affect me either way, just was curious as to why it was changed and changed to what it was changed to.The name change is most likely for accuracy sake. If the file were named encryption but decrypted too, that would be wrong. If it is name crypt, that includes both directions.
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
#147
Posted 16 November 2011 - 10:24 PM
Check if key has been pressed
I think _IsPressed is an instantaneous test whether a key is pressed, not test if it has been pressed. So "has been" should say "is". (or change the function to _HasBeenPressed())
Richard
#148
Posted 16 November 2011 - 11:02 PM
But you are right that it is misleading. It is far easier to say "is currently pressed". Or even just "is pressed"
To go by msdn: "Determines whether a key is up or down at the time the function is called"
Edited by Mat, 16 November 2011 - 11:04 PM.
I don't know where I'm going, but I'm on my way.
#149
Posted 16 November 2011 - 11:26 PM
Functions beginning with _Is (or Is) return 1 or 0 (True or False respectively). This gives the language a certain degree of consistancy. The coder knows what results to expect since the syntax follows a logical and familiar pattern.
Edited by czardas, 16 November 2011 - 11:44 PM.
#150
Posted 17 November 2011 - 12:16 AM
You could argue that but you'd look pretty silly. That would mean when the code is executing it would read in English terms that it wants to detect a keystroke in the future. That doesn't make any sense. Remember, when you are writing code your frame of reference for time is always the present. The present is defined in coding terms as time of execution, not time of authoring. Therefore _WillBePressed() does not make sense in the context of detecting something that is happening at execution time. With that in mind it is not hard for anybody who understands the basics of tense in English to write functions named correctly with reference to time.You could argue that, at the time of writing the script, it should be _WillBePressed. Trying to map English syntax onto a scripting language is going to get kind of messy, however you do it, IMO.
#151
Posted 17 November 2011 - 12:25 AM
#152
Posted 22 November 2011 - 12:09 PM
Binary($str) behaves like StringToBinary($str), that is converts the string to ANSI first. The issue is that if $str contains characters which don't have an equivalence in the current ANSI codepage, they are silently replaced by '?', which is certainly not what users expect.
My ISP doesn't allow me to connect to the repository (filtering on protocol I guess). Hence I'm unable to do anything there.
#153
Posted 22 November 2011 - 04:00 PM
But we connect through https, surely your isp can't mess with that. How do you do your banking, buying stuff online or even read your webmail?My ISP doesn't allow me to connect to the repository (filtering on protocol I guess). Hence I'm unable to do anything there.
#154
Posted 22 November 2011 - 06:03 PM
I'm forced to use cooperative puclic hotspot, authenticating via a 3G access, but direct 3G would cost me a leg and 3 arms a day.
#155
Posted 23 November 2011 - 09:42 PM
seems to be missing info.#include <INet.au3>
_INetGetSource ( $s_URL ) <- Does not mention optional parameter.
Parameters
$s_URL (The URL of the site.) eg 'www.autoitscript.com'
$bString [optional] If True the data is returned in string format, otherwise binary format.
Return Value
<- Has no return info
Remarks
None.
Edited by JohnOne, 23 November 2011 - 09:44 PM.
Run('hh mk:@MSITStore:'&StringReplace(@AutoItExe,'.exe','.chm')&'::/html/tutorials/helloworld/helloworld.htm','',@SW_MAXIMIZE)
#156
Posted 23 November 2011 - 09:47 PM
Example List: _AdapterConnections() • _AlwaysRun() • _AppMon() • _AppMonEx() • _BinaryBin() • _CheckMsgBox() • _CmdLineRaw() • _ContextMenu() • _DesktopDimensions() • _DisplayPassword() • _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() • _GUISetIcon() • _Icon_Clear()/_Icon_Set() • _InetGet() • _InetGetGUI() • _InetGetProgress() • _IPDetails() • _IsFileOlder() • _IsGUID() • _IsHex() • _IsPalindrome() • _IsRegKey() • _IsStringRegExp() • _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() • _StringIsValid() • _StringReplaceWholeWord() • _StringStripChar() • _Temperature() • _TrialPeriod() • _UKToUSDate()/_USToUKDate() • _WinAPI_CreateGUID() • _WMIDateStringToDate()/_DateToWMIDateString() • AutoIt Search • AutoIt3 Portable • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • FileInstallr • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIGetBkColor() • LockFile() • PasteBin • SciTE Jump • Signature Creator • WM_COPYDATA • More Examples...Updated: 11/04/2013
#157
Posted 09 December 2011 - 02:20 AM
In the remarks for the Number function - "If input value after conversation fits 32bit" that should be conversion.
How to ask questions the smart way!
Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.
Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.
_FileGetProperty - Retrieve the properties of a file SciTE Toolbar - A toolbar demo for use with the SciTE editorGUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.
GUIToolTip UDF Demo - Demo script to show how to use the GUIToolTip UDF to create and use customized tooltips.
#158
Posted 09 December 2011 - 03:17 AM
It's my English.
eMyvnE
#159
Posted 09 December 2011 - 08:12 AM
Edited by 131738, 09 December 2011 - 08:13 AM.
#160
Posted 09 December 2011 - 08:18 AM
They have, only not where it should be. Will be fine for the next version.New functions have no income documentation
"Search" (the help file) too see them.
Edited by trancexx, 09 December 2011 - 10:50 AM.
eMyvnE
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users




This topic is locked

