Mat Posted February 27, 2009 Posted February 27, 2009 In the installation package, there is Syntax highlighting addons for a few programs. But notepad is not included. Is there a download for this, or is it possible to make one? thanks Mdiesel AutoIt Project Listing
James Posted February 27, 2009 Posted February 27, 2009 Notepad is a normal textbox. There is no way you can add highlighting without deleting this control and adding your own. I think you mean Notepad++. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
Mat Posted February 27, 2009 Author Posted February 27, 2009 Thanks, that is what i meant. Mdiesel AutoIt Project Listing
Zedna Posted February 27, 2009 Posted February 27, 2009 (edited) Use forum search.Here is one old post about Notepad++ syntax:http://www.autoitscript.com/forum/index.ph...st&p=278619 Edited February 27, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
avery Posted February 27, 2009 Posted February 27, 2009 Use forum search. Here is one old post about Notepad++ syntax: http://www.autoitscript.com/forum/index.ph...st&p=278619 I think the new version already has au3 highlighting. I use a portableapps version [portableapps.com] and could have sworn it highlighted stuff -- perhaps it thought it was another language or something though. www.abox.orgAvery HowellVisit My AutoIt Websitehttp://www.abox.org
Mat Posted February 28, 2009 Author Posted February 28, 2009 Thanks for all the replies that worked great Zedna I'm on WinXP so I might not have the new one - Mine definitely did not highlight anything... Mdiesel AutoIt Project Listing
GEOSoft Posted February 28, 2009 Posted February 28, 2009 Remember that there are also several other editors available. Try Scite4AutoIt3 if you want a good editor with a lot of AutoIt specific functionality.http://www.autoitscript.com/cgi-bin/getfil...iTE4AutoIt3.exe George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Mat Posted February 28, 2009 Author Posted February 28, 2009 Remember that there are also several other editors available. Try Scite4AutoIt3 if you want a good editor with a lot of AutoIt specific functionality.http://www.autoitscript.com/cgi-bin/getfil...iTE4AutoIt3.exeis there a way to make that the default text editor as well? mdiesel AutoIt Project Listing
GEOSoft Posted February 28, 2009 Posted February 28, 2009 is there a way to make that the default text editor as well? mdieselNever fear. Jos wouldn't miss that one. On installation it will become the default for AU3 files. and you can make it the default for other types yourself. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
Developers Jos Posted February 28, 2009 Developers Posted February 28, 2009 This script contains all info you need. Its a script to fix all settings for AutoIt3/Helpfile and SciTE: expandcollapse popup; Scriptname: Fix_Setup_AutoIt3_SciTE.au3 ; Script to fix Registry setting for SciTE/AutoIt3/Helpfile Open Button ; If Not FileExists(@ScriptDir & '\Autoit3.exe') then MsgBox(16,"Autoit3.exe error",'File Autoit3.exe not found. Place this script in the AutoIt3 program directory and run it again.') Exit EndIf If Not FileExists(@ScriptDir & '\SciTE\SciTE.exe') then MsgBox(16,"SciTE.exe error",'File ..\SciTE\SciTE.exe not found. Something is not installer the standard way. Exiting.') Exit EndIf $Open_SciTe = '"' & @ScriptDir & '\SciTE\SciTE.exe" "%1"' $Edit_SciTe = '"' & @ScriptDir & '\SciTE\SciTE.exe" "%1"' $Run_SciTe = '"' & @ScriptDir & '\AutoIt3.exe" "%1" %*' $Open = RegRead("HKCR\AutoIt3Script\Shell\Open\Command", "") $Edit = RegRead("HKCR\AutoIt3Script\Shell\Edit\Command", "") $Run = RegRead("HKCR\AutoIt3Script\Shell\Run\Command", "") $Default = RegRead("HKCR\AutoIt3Script\Shell", "") $FixedOpen = RegRead("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.au3", "Application") ConsoleWrite("+****************************************************************************************" &@CRLF) ConsoleWrite("+* Current setting: " &@CRLF) ConsoleWrite("+* Default action:" & $Default & @CRLF) ConsoleWrite("+* Run:" & $Run & @CRLF) ConsoleWrite("+* Open:" & $Open & @CRLF) ConsoleWrite("+* Edit:" & $Edit & @CRLF) ConsoleWrite("+* Always open with:" & $FixedOpen & @CRLF) ConsoleWrite("+****************************************************************************************" &@CRLF) ; Check for "Always open with settings If $FixedOpen <> "" Then If MsgBox(4, "Override setting for Open on .AU3", 'You have specified to "Always Open" with:' & @CRLF & $FixedOpen & _ @CRLF & " But this should be removed and the standard setting should be used!" & _ @CRLF & @CRLF & "Click Yes to Remove this Keys") = 6 Then $rc = RegDelete("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.au3", "Application") ConsoleWrite('-RegDelete ("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.au3", "Application") $rc = ' & $rc & " @Error=" & @error & @CRLF) Else ConsoleWrite('! Override setting for Open on .AU3 not removed' & @CRLF) EndIf Else ConsoleWrite('+No Open override on .au3.' & @CRLF) EndIf ; Check Edit Settings If $Edit <> $Edit_SciTe Then If MsgBox(4, "Edit Settings for AU3", 'Your "Edit" settings are currently:' & @CRLF & $Edit & @CRLF & " But should be:" & @CRLF & $Edit_SciTe & @CRLF & @CRLF & " Update?") = 6 Then $rc = RegWrite("HKCR\AutoIt3Script\Shell\Edit\Command", "", "REG_SZ", $Edit_SciTe) ConsoleWrite('-RegWrite Edit $rc = ' & $rc & " @Error=" & @error & @CRLF) EndIf Else ConsoleWrite('+Edit already set to default = ' & $Edit & @CRLF) EndIf ; Check Open Settings If $Open <> $Open_SciTe Then If MsgBox(4, "Open Settings for AU3", 'Your "Open" settings are currently:' & @CRLF & $Open & @CRLF & " But should be:" & @CRLF & $Open_SciTe & @CRLF & @CRLF & " Update?") = 6 Then RegWrite("HKCR\AutoIt3Script\Shell\Open\Command", "", "REG_SZ", $Open_SciTe) ConsoleWrite('-RegWrite Open $rc = ' & $rc & " @Error=" & @error & @CRLF) EndIf Else ConsoleWrite('+Open already set to default = ' & $Open & @CRLF) EndIf ; Check Run Settings If $Run <> $Run_SciTe Then If MsgBox(4, "Run Setting for AU3", 'Your "Run" settings are currently:' & @CRLF & $Run & @CRLF & " But should be:" & @CRLF & $Run_SciTe & @CRLF & @CRLF & " Update?") = 6 Then RegWrite("HKCR\AutoIt3Script\Shell\Run\Command", "", "REG_SZ", $Run_SciTe) ConsoleWrite('-RegWrite Run $rc = ' & $rc & " @Error=" & @error & @CRLF) EndIf Else ConsoleWrite('+Run already set to default = ' & $Run & @CRLF) EndIf ;Fix default action if needed. If MsgBox(4, "Default action for AU3", 'Your current "Default" action for au3 is:' & '"' & $Default & '"' & @CRLF & @CRLF & "Do you want to change that? ") = 6 Then If MsgBox(4, "Default action for AU3", 'Click Yes for "Edit" ' & @CRLF & ' or No for "Run"') = 6 Then RegWrite("HKCR\AutoIt3Script\Shell", "", "REG_SZ", "Edit") ConsoleWrite('+Changed Default action to "Edit" ' & @CRLF) Else RegWrite("HKCR\AutoIt3Script\Shell", "", "REG_SZ", "Run") ConsoleWrite('+Changed Default action to "Run" ' & @CRLF) EndIf EndIf ; ;Ensure hhctrl is properly registered $rc = RunWait(@ComSpec & " /c /s regsvr32 hhctrl.ocx", "", @SW_HIDE) ConsoleWrite('+regsvr32 hhctrl.ocx $rc = ' & $rc & @CRLF) 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.
GEOSoft Posted February 28, 2009 Posted February 28, 2009 What took you so long? George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
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