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
| DetectHiddenWindows, On | |
| OnExit, Exit | |
| If !(A_OSVersion~="WIN_(\d|\w{5})\b") | |
| { | |
| Msgbox, 0x10, Whoops!, Cannot run on this version of Windows!`nThe script will now exit. | |
| ExitApp | |
| } | |
| Else If !FileExist(A_WinDir "\System32\" srcd := "SoundRecorder.exe") | |
| { |
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
| Worksheet := A_ScriptDir "\Test.xls" ; << change this to your source worksheet | |
| SaveXLValue(Worksheet, A_ScriptDir "\newfile.xls") | |
| Return | |
| SaveXLValue(_wrksht,_xls,_vis=0) ; << source worksheet, ouput worksheet, optional visible for debugging | |
| { | |
| xlObj:=ComObjCreate("Excel.Application"), xlObj.Visible:=_vis | |
| xlObj.Workbooks.Open(_wrksht), xlObj.ActiveSheet.UsedRange.Select |
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
| For Process in (ComObjGet("winmgmts:").ExecQuery("Select * from Win32_Process"), Processes := []) | |
| (Process.ExecutablePath?Processes.Insert(Process.ExecutablePath):"") | |
| Loop % Processes.MaxIndex() | |
| Msgbox % Processes[A_Index] |
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
| layouts := [ 12345,12354,12435,12453,12534,12543,13254,13245,13452,13425,13542,13524 | |
| , 14235,14253,14325,14352,14523,14532,15243,15234,15342,15324,15432,15423 | |
| , 21534,21543,21354,21345,21453,21435,23541,23514,23145,23154,23415,23451 | |
| , 24513,24531,24153,24135,24351,24315,25431,25413,25134,25143,25314,25341 | |
| , 31452,31425,31542,31524,31245,31254,32415,32451,32514,32541,32154,32145 | |
| , 34251,34215,34521,34512,34125,34152,35214,35241,35412,35421,35142,35124 | |
| , 41235,41253,41325,41352,41523,41532,42153,42135,42351,42315,42531,42513 | |
| , 43125,43152,43215,43251,43512,43521,45132,45123,45231,45213,45321,45312 | |
| , 51423,51432,51243,51234,51342,51324,52431,52413,52134,52143,52314,52341 | |
| , 53412,53421,53142,53124,53241,53214,54321,54312,54123,54132,54213,54231 ] |
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
|   Space | |
| ! ! Exclamation mark | |
| " " Quotation mark | |
| # # Number sign | |
| $ $ Dollar sign | |
| % % Percent sign | |
| & & & Ampersand | |
| ' ' Apostrophe | |
| ( ( Opening/Left Parenthesis | |
| ) ) Closing/Right Parenthesis |
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
| ; FantomX, change all below instances found in your script | |
| ; from | |
| IfExist, WormKitModules\wkPackets.dll | |
| IfExist, WormKitModules\wkWormNAT2Ex.dll | |
| ; to | |
| If (FileExist("WormKitModules\wkPackets.dll") && FileExist("WormKitModules\wkWormNAT2Ex.dll")) | |
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
| ; EXPAND ZERO WIDTH COLUMNS | |
| ExpandColumns: | |
| ; LVM_GETCOLUMNWIDTH := (LVM_FIRST + 29) | |
| ; LVM_FIRST := 0x1000 ; ListView messages | |
| GuiControl, 1:, SizeCol, % Chr((i:=!i) ? 0xFE:0xA8 ) | |
| Gui, 99: Add, Text,, Select the items to expland in listview heading. | |
| Gui, 99: Add, ListView, Checked r20 w300 , |Item | |
| Gui, 99: Add, Button, gDoExpand, Expand |
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
| Global GUIHwnd | |
| OnMessage(0x201,"GuiMove") | |
| Gui, -border hwndGUIHwnd ; feel free to change this but LEAVE hwndGUIHwnd! | |
| ; INSERT CODE BELOW | |
| Gui, Add, Text, , Move GUI | |
| Gui, Show | |
| ; INSERT CODE ABOVE | |
| Return |
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
| (function($, Edge, compId){ | |
| var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes | |
| //Edge symbol: 'stage' | |
| (function(symbolName) { | |
| Symbol.bindTriggerAction(compId, symbolName, "Default Timeline", 0, function(sym, e) { | |
| // Lookup the Edge Animate Symbol Javascript Object from an element that is | |
| // an instance of a symbol. The symbol object can be used to invoke |