guinness Posted February 1, 2012 Posted February 1, 2012 OK, no problem, was just pointing it out. 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 parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018
wakillon Posted February 23, 2012 Author Posted February 23, 2012 New Version ! AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
Loz Posted February 27, 2012 Posted February 27, 2012 New Version !Thanks for the update. A must have addon I use all the time. .... GOTOs? We don't need no stinkin' GOTOs! ....
wakillon Posted February 29, 2012 Author Posted February 29, 2012 (edited) Thanks for the update. A must have addon I use all the time.Glad you find it usefull !Thanks . Edited August 29, 2012 by wakillon AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted September 15, 2012 Author Posted September 15, 2012 Finally Updated ! More stable and more powerfull ! See first Post. AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted September 22, 2012 Author Posted September 22, 2012 (edited) Updated due to few omissions. Edit : for those who don't understand the new add on : _SciTESetAutoItCodeLayout it transforms a poorly presented au3 code : Func _SciTEGetAnchors ( ) Local $_TmpValueF, $_TmpValueR, $_TmpValueU, $Anchors, $_Tmpline For $x = 1 To UBound ( $_FileLinesArray ) -1 $_Tmpline = StringStripWS ( $_FileLinesArray[$x], 3 ) If StringLeft ( $_Tmpline, 4 ) = 'Func' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then Local $SS = StringSplit ( StringTrimLeft ( StringStripWS ( $_FileLinesArray[$x], 4 ), 5 ), '(' ) If $SS[0] >= 1 Then $_TmpValueF &= $SS[1] & '^' EndIf If StringLeft ( $_Tmpline, 8 ) = '#Region ' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then _ $_TmpValueR &= StringTrimLeft ( $_Tmpline, 8 ) & ' #R' & '^' Next $_TmpValueU = StringTrimRight ( $_TmpValueU, 1 ) $_TmpValueF = StringTrimRight ( $_TmpValueF, 1 ) $_TmpValueR = StringTrimRight ( $_TmpValueR, 1 ) $Anchors &= '#User(' & @UserName & ')-0%' & $_TmpValueU & '@' $Anchors &= 'Functions-1%' & $_TmpValueF & '@' $Anchors &= 'Regions-2%' & $_TmpValueR Return $Anchors EndFunc ;==> _SciTEGetAnchors ( ) to this correctly presented au3 code ! ( for a function or entire script ) Func _SciTEGetAnchors ( ) Local $_TmpValueF, $_TmpValueR, $_TmpValueU, $Anchors, $_Tmpline For $x = 1 To UBound ( $_FileLinesArray ) -1 $_Tmpline = StringStripWS ( $_FileLinesArray[$x], 3 ) If StringLeft ( $_Tmpline, 4 ) = 'Func' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then Local $SS = StringSplit ( StringTrimLeft ( StringStripWS ( $_FileLinesArray[$x], 4 ), 5 ), '(' ) If $SS[0] >= 1 Then $_TmpValueF &= $SS[1] & '^' EndIf If StringLeft ( $_Tmpline, 8 ) = '#Region ' And StringRight ( $_FileLinesArray[$x], 2 ) <> '//' Then _ $_TmpValueR &= StringTrimLeft ( $_Tmpline, 8 ) & ' #R' & '^' Next $_TmpValueU = StringTrimRight ( $_TmpValueU, 1 ) $_TmpValueF = StringTrimRight ( $_TmpValueF, 1 ) $_TmpValueR = StringTrimRight ( $_TmpValueR, 1 ) $Anchors &= '#User(' & @UserName & ')-0%' & $_TmpValueU & '@' $Anchors &= 'Functions-1%' & $_TmpValueF & '@' $Anchors &= 'Regions-2%' & $_TmpValueR Return $Anchors EndFunc ;==> _SciTEGetAnchors ( ) handy, in one click it do the job regardless of the huge number of lines ! And don't forget, if you are not satisfied : use ctrl+z until script is restored ! Edited September 22, 2012 by wakillon AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted October 3, 2012 Author Posted October 3, 2012 (edited) Updated. Several functions improved and now more fast. New functions added : one for Remove Debug Lines and an other for set all your functions in Alphabetic order ( in your script, not just in the treeview ! ) ( func headers and regions ( in fact, all lines between functions ) are not supported.) If you have other suggestions... Edited October 4, 2012 by wakillon AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted June 25, 2013 Author Posted June 25, 2013 Updated. Some bugs corrected. Added script size in statistics panel. Edit with SciTE added in Options. All files were updated and embedded in script. Can be added minimized to windows Start. New Tray Menu with easy access to AutoIt&SciTE forums/docs and some other Coder Websites. More stable and use less CPU ! AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted June 27, 2013 Author Posted June 27, 2013 Thank you, use this tool everytime. So do I, he's so handy ! That's why too, i have added the possibility to add it to the Windows start. Ah... if ashalshaikh could see what his creation is became ! Glad you like it and thanks for your feedback. AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted September 12, 2013 Author Posted September 12, 2013 Updated. TinyAu3FileSearch re-compressed correctly. RegJumper Updated. SpecialCharactersViewer added (available in Tray menu). AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
wakillon Posted December 23, 2013 Author Posted December 23, 2013 Updated for AutoIt 3.3.10.0 due to ControlGetText Fix. AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
t0nZ Posted September 26, 2014 Posted September 26, 2014 HELP ! Download Links not working ! Seems to be a link to a Google Drive page, but Google tells there is a virus (false positive I hope..) and refuses access to file. My scitehopper stopped working (not pointing to functions) with last update and SciteJump is clearly worse....
guinness Posted September 26, 2014 Posted September 26, 2014 (edited) Clearly SciTE Jump is worse. If both don't work it's something your end. I would gladly help you but you haven't given us much to go by. Edited September 26, 2014 by guinness 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 parsing • AutoIt Search • AutoIt3 Portable • AutoIt3WrapperToPragma • AutoItWinGetTitle()/AutoItWinSetTitle() • Coding • DirToHTML5 • FileInstallr • FileReadLastChars() • GeoIP database • GUI - Only Close Button • GUI Examples • GUICtrlDeleteImage() • GUICtrlGetBkColor() • GUICtrlGetStyle() • GUIEvents • GUIGetBkColor() • Int_Parse() & Int_TryParse() • IsISBN() • LockFile() • Mapping CtrlIDs • OOP in AutoIt • ParseHeadersToSciTE() • PasswordValid • PasteBin • Posts Per Day • PreExpand • Protect Globals • Queue() • Resource Update • ResourcesEx • SciTE Jump • Settings INI • SHELLHOOK • Shunting-Yard • Signature Creator • Stack() • Stopwatch() • StringAddLF()/StringStripLF() • StringEOLToCRLF() • VSCROLL • WM_COPYDATA • More Examples... Updated: 22/04/2018
t0nZ Posted September 26, 2014 Posted September 26, 2014 Re-tested now from two different machines with different browsers and users (I used also IE ) on different connections, same result. I obtain https://dl.dropboxusercontent.com/u/3880290/scitehopperdown.JPG It seems that any other person except the owner of this Gdrive (you?) is receiving this message. Google keep think there is a virus.....
wakillon Posted September 26, 2014 Author Posted September 26, 2014 @t0nZ Sorry to disappoint you, I'm not talented enough to create a shit virus It's yet a false positive ! An updated version will be posted soon. AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
t0nZ Posted September 26, 2014 Posted September 26, 2014 We are Google 4 business clients and I know very well bigG gettin' paranoid sometimes ! Thank you wakillon
wakillon Posted September 26, 2014 Author Posted September 26, 2014 (edited) We are Google 4 business clients and I know very well bigG gettin' paranoid sometimes ! Thank you wakillon You're welcome meanwhile, you can try this Beta version Edited September 26, 2014 by wakillon AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
JohnOne Posted September 26, 2014 Posted September 26, 2014 I get that sometimes with google chrome, I just download with IE and it works fine. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
wakillon Posted September 26, 2014 Author Posted September 26, 2014 I get that sometimes with google chrome, I just download with IE and it works fine. Hi JohnOne ! What's bizarre, those files are stored on Google Drive without any alarm or warning from them, and Google 4 business returns a false positive !!! They must be a little tired at google AutoIt 3.3.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
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