Last active
April 26, 2021 15:45
-
-
Save JoeGlines/00040bbb1e5c9fd58584b1b39d8c778a to your computer and use it in GitHub Desktop.
Scite Messages used with AutoHotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
;***********List of SciTE messages******************* | |
;~ oSci.Message(0x111,101) ;create new tab | |
;~ oSci.Message(0x111,102) ;Open File | |
;~ oSci.Message(0x111,103) ;Open selected file name | |
;~ oSci.Message(0x111,104) ;Revert file | |
;~ oSci.Message(0x111,105) ;Close file | |
;~ oSci.Message(0x111,106) ;Save file | |
;~ oSci.Message(0x111,110) ;Save As | |
;~ oSci.Message(0x111,111) ;Export as HTML | |
;~ oSci.Message(0x111,112) ;Export as RTF | |
;~ oSci.Message(0x111,113) ;Export as PDF | |
;~ oSci.Message(0x111,115) ;Export as LaTeX | |
;~ oSci.Message(0x111,116) ;Save a copy | |
;~ oSci.Message(0x111,118) ;Copy path of this file | |
;~ oSci.Message(0x111,130) ;Page Setup | |
;~ oSci.Message(0x111,131) ;Print | |
;~ oSci.Message(0x111,132) ;Load Session | |
;~ oSci.Message(0x111,133) ;Save current Session | |
;~ oSci.Message(0x111,140) ;Quit SciTE | |
;~ oSci.Message(0x111,150) ;clear encoding? | |
;~ oSci.Message(0x111,151) ;UTF-16 Big Endian | |
;~ oSci.Message(0x111,152) ;UTF-16 Little Endian encoding | |
;~ oSci.Message(0x111,153) ;UTF-8 with BOM | |
;~ oSci.Message(0x111,154) ;UTF-8 | |
;~ oSci.Message(0x111,201) ;Undo | |
;~ oSci.Message(0x111,202) ;Redo? | |
;~ oSci.Message(0x111,203) ;Cut | |
;~ oSci.Message(0x111,204) ;Copy Highlighted text | |
;~ oSci.Message(0x111,205) ;Paste? | |
;~ oSci.Message(0x111,206) ;Delete | |
;~ oSci.Message(0x111,207) ;Highlight all text in main window / Select All | |
;~ oSci.Message(0x111,208) ;Paste text | |
;~ oSci.Message(0x111,230) ;Match to brace (finds matching brace | |
;~ oSci.Message(0x111,232) ;Show Calltip | |
;~ oSci.Message(0x111,234) ;Complete word | |
;~ oSci.Message(0x111,240) ;UPPERCASE selected text | |
;~ oSci.Message(0x111,241) ;Lowercase selected text | |
;~ oSci.Message(0x111,242) ;Block Comment (toggle on multiple lines) | |
;~ oSci.Message(0x111,244) ;Stream comment */text/* | |
;~ oSci.Message(0x111,245) ;Copy as RTF | |
;~ oSci.Message(0x111,246) ;Box comment */ mutliple lines`n /* | |
;~ oSci.Message(0x111,248) ;Join Paragraph | |
;~ oSci.Message(0x111,303) ;run (F5) | |
;~ oSci.Message(0x111,304) ;Stop | |
;~ oSci.Message(0x111,401) ;output - verticle split- toggle | |
;~ oSci.Message(0x111,402) ;View whitespace | |
;~ oSci.Message(0x111,403) ;View End of Line | |
;~ oSci.Message(0x111,404) ;??????????? | |
;~ oSci.Message(0x111,405) ;View extra space after number | |
;~ oSci.Message(0x111,406) ;View Margin | |
;~ oSci.Message(0x111,407) ;View linenumbers | |
;~ oSci.Message(0x111,408) ;View Toolbar | |
;~ oSci.Message(0x111,409) ;View output bar | |
;~ oSci.Message(0x111,410) ;View Tab bar | |
;~ oSci.Message(0x111,411) ;View statusbar | |
;~ oSci.Message(0x111,412) ;View parameters | |
;~ oSci.Message(0x111,414) ;Wrap | |
;~ oSci.Message(0x111,415) ;Wrap output | |
;~ oSci.Message(0x111,420) ;Clear output | |
;~ oSci.Message(0x111,421) ;Switch pane | |
;~ oSci.Message(0x111,461) ;Open SciTEUser.Properties filew | |
;~ oSci.Message(0x111,960) ;Always on top | |
;~ oSci.Message(0x111,1118) ;Open new SciTE window | |
;~ oSci.Message(0x1000+2) ;reload utilities? | |
;****** end of SciTE editor via COM objects***** |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment