Dear all…
First I want to say sorry if you revisit this page, hope found something new but you don’t. Currently I’m still prepared for my final exam. So I can’t concern on this project. Maybe after 2-3 months I’ll continue this project.
thanks…
Dear all…
First I want to say sorry if you revisit this page, hope found something new but you don’t. Currently I’m still prepared for my final exam. So I can’t concern on this project. Maybe after 2-3 months I’ll continue this project.
thanks…
June 18th 2008. Bug Fix and New Features for Catapult:
Using Autohotkey, we can simplify the way we work on Windows. Here I show a simple example. We will made simpler way to access Microsoft Word, Excel, and PowePoint
First, open notepad or any text editor you prefer to use. Then write this scripts
#NoTrayIcon
#SingleInstance ignore
#Persistent
;code start here
^!w::
run winwordreturn
^!x::
run excelreturn
^!p::
run powerpntreturn
^!c::
ExitApp
;conde end here
Code explanations:
#NoTrayIcon: Disables the showing of a tray icon. Note that if you want to gain control of the script, don’t include this line.
#SingleInstance ignore: Make only one instance of application run. If you open new instance, it will be terminated automatically.
#Presistent: Keeps a script permanently running until the user closes it.
Line started with “;” are comment.
^![hotkey]: Means if we pressed Ctrl (representated with “^”)+Alt (”!”)+hotkeys (w,x,p), script will open application you’ve choose after the RUN command. In this case, winword are name of MS. Word executable file. Otherwise, Pressing Ctrl+Alt+C will terminate script (ExitApp command).
The return command means it will return from a subroutine and prevent multi command execution.
If you want to append another application to the hotkeys. Just specify the file location after RUN command. Exception, if your application located under Program files directory, use built in variable %A_ProgramFiles%. Example %A_ProgramFiles%\mIRC\mIRC.exe.
There’s many way we can simplify our work. Make your own way using Autohotkey.
On June 13 2008, I’ve released the 1.0.1 version of Catapult. This version include bug fix and added a feature.
QuicKill 0.1.3 is released. New features and bug fix:
Download from my downloads page.
Sincerely,
Bambang Catur
Catapult is my new application. It can help you launch many windows applications, hidden windows function, Control Panel items, Registry Editor, Task Manager,shut down, and log off from Windows. Visit my download pages to bring it home.
QuicKill version 0.1.2 released. Check out my downloads page to download it.