Monday, 2024-05-13, 2:15 PM
Welcome Guest

Blog

Main » 2011 » March » 25
This program is to unzip a zipped file into a selected directory via command line. This script needs unzip.exe installed in your Windows directory. Anyway, you can download that here or by using the script I made. If you find bugs, please do tell me.

By the way, this script only supports extracting files into a directory by overwriting the files or doing nothing to existing files with the same name in the extraction folder.

Code
; Thanks to Info-Zip's unzip.exe
; Vi ... Read more »
Views: 4245 | Added by: GarenaZero | Date: 2011-03-25 | Comments (0)

SciTE for AutoHotkey is a free editor for AutoHotkey scripts that offers:

  • Syntax highlighting
  • AutoIndent
  • AutoComplete
  • Calltips (also known as IntelliSense)
  • Code folding
  • Custom toolbar
  • Tools for AutoHotkey scripting

Based on PhiLho's AutoHotkey lexer for Scintilla, this provides a great script editor for both newbies and experienced AutoHotkey users.

Credits:

  • Neil Hodgson for making Scintilla and SciTE.
  • Chris Mallett, Steve Gray (Lexikos), Sean and jackieku for making AutoHotkey and AutoHotkey_L.
  • Philippe Lhoste for making the LexAHK1 lexer.
  • The AutoHotkey community ... Read more »
Views: 2199 | Added by: GarenaZero | Date: 2011-03-25 | Comments (2)

SmartGUI is a tool for AutoHotkey to create GUI for your applications easily. This is an object-oriented program made by Rajat.

Main Features:

  • Completely 'What You See Is What You Get' - Move / Resize / Rename / Modify controls to see what the generated GUI will look, in realtime.
  • GUI Stealer - make copies of existing windows
  • Grid background (optional) is skinnable
  • Existing GUI scripts created using SmartGUI are re-editable
  • GUI count can be set easily from within SmartGUI
  • Move a group of controls together while keeping their relative position intact!
  • Its FREE!!
  • Lots more...

Installation is not actually required. Unzip the file then run the program. Also a Manual is included to help you on making your GUI. What is good about this program is that you can copy a window, although not all the controls cannot be copied like from the GUI made in Visual Basic, but it's ... Read more »

Views: 5547 | Added by: GarenaZero | Date: 2011-03-25 | Comments (0)

Do you want to reduce the sizes of your compiled scripts? If yes, then this is for you.

First, download AutoHotkey_sc_bin_min_size.zip. Place the extracted file, AutoHotkeySC.bin, to your AutoHotkey Compiler installation directory, commonly "C:\Program Files\AutoHotkey\Compiler\", overwriting the existing file.

It says that it will reduce the size for about 20 kB only but not all the time. Sometimes it reduces about 300 kB.

Any compiled script produced in this fashion will be dependent on MSVCRT.dll. Although this DLL is always present on Windows 2000/XP or later, older operating systems do not necessarily have it.

Views: 1326 | Added by: GarenaZero | Date: 2011-03-25 | Comments (0)

Compiled AutoHokey scripts are possible to decompiler using a decompiler program designed for AutoHotkey itselft. You can read more about the decompiler scripts on this post.

There are lot of decompiler scripts available. I chose one of the bests decompiler I found. This is the modified script of sleepyy335.

Code
menu,utility, Add,Download the Exe2Ahk Decompile cmd utility,MenuHandler1  
menu, myMenuBar, Add,utility,:utility  
menu,help, Add,Help,MenuHandler2  
menu,help, Add,About,MenuHandler3 ... Read more »
Views: 7468 | Added by: GarenaZero | Date: 2011-03-25 | Comments (2)

AutoHotkey is not a common programming language yet a powerful programming language. You can simplify the codes with AutoHotkey, for example 10 lines of codes in C++ could be only a line of code with AutoHotkey.

What is AutoHotkey:
AutoHotkey is a free, open-source utility for Windows. With it, you can:

  • Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or use the macro recorder.
  • Create hotkeys for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.
  • Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".
  • Create custom data-entry forms, user interfaces, and menu bars. See GUI for details.
  • Remap keys and buttons on your keyboard, joystick, and mouse.
  • Respond to signals from hand-held remote controls via the WinLIRC client script.
  • Run existi ... Read more »
Views: 1270 | Added by: GarenaZero | Date: 2011-03-25 | Comments (0)