AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Can you recommend any excellent software ???
Goto page Previous  1, 2, 3
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> General Chat
View previous topic :: View next topic  
Author Message
nonov
Guest





PostPosted: Tue Jun 10, 2008 11:25 am    Post subject: Reply with quote

i only uses tiny utilities when it can't be accomplished by myself with AutoHotkey

PowerMenu - Inserts "Always On Top" / "Minimize To Tray" / "Window Transparency" / "Process Priority" to the System Menu which have not ever done in ahk yet.

and bunch of command line tools which is another hole of AutoHotkey
Back to top
imapow



Joined: 13 Mar 2008
Posts: 162
Location: Trøndelag, Norway

PostPosted: Tue Jun 10, 2008 12:49 pm    Post subject: Re: Can you recommend any excellent software ??? Reply with quote

AHKFun" wrote:
Total Commander - for file management


enybody know if there is an total comander version hwo vista suport?? i tryed my version and it all went to hell
_________________
-._.-¨¯¨-._.-IM@PΩW-._.-¨¯¨-._.-
Back to top
View user's profile Send private message
m^2



Joined: 28 Feb 2008
Posts: 56
Location: Krk, PL

PostPosted: Tue Jun 10, 2008 2:17 pm    Post subject: Re: Can you recommend any excellent software ??? Reply with quote

imapow wrote:
AHKFun" wrote:
Total Commander - for file management


enybody know if there is an total comander version hwo vista suport?? i tryed my version and it all went to hell

7.0+ should be ok.
Some users have problems with configuration files b/c (Only in some cases? Don't remember, I don't use Vista) you need to add your user write rights to them, Vista doesn't give them even to admins.
_________________
Waiting for Windows 8...
Back to top
View user's profile Send private message
nonov
Guest





PostPosted: Wed Jun 11, 2008 1:12 pm    Post subject: Reply with quote

self quoting wrote:
bunch of command line tools which is another hole of AutoHotkey

oh i missed it
http://www.autohotkey.com/forum/topic30759.html
Back to top
Red Hat Boy



Joined: 10 Apr 2008
Posts: 113

PostPosted: Sat Jun 14, 2008 8:49 am    Post subject: Reply with quote

Using AHK I've set up hotkeys for always on top and adjusting window transparency functionality. I don't know about minimizing to the system tray, but I'm pretty sure process priority can be done by AHK.

Code:

WinTransparency := 255
TaskbarTransparency := 255

; transparency and remapping media keys

; GUI Transparency
Numpad0 & Up::
WinGetActiveTitle, Title
WinTransparency += 50
if ( WinTransparency >= 250 ) {
WinTransparency := 255
WinSet, Transparent, 255, %Title%
WinSet, Transparent, Off, %Title%
}
else {
WinSet, Transparent, %WinTransparency%, %Title%
}
return

Numpad0 & Down::
WinGetActiveTitle, Title
if ( WinTransparency <= 0 ) {
WinTransparency := 0
WinSet, Transparent, 0, %Title%
}
else {
WinTransparency -= 50
WinSet, Transparent, %WinTransparency%, %Title%
}
return

; Taskbar Transparency
Numpad0 & Left::
TaskbarTransparency += 50
if ( TaskbarTransparency >= 250 ) {
TaskbarTransparency := 255
WinSet, Transparent, 255, ahk_class Shell_TrayWnd
WinSet, Transparent, Off, ahk_class Shell_TrayWnd
}
else {
WinSet, Transparent, %TaskbarTransparency%, ahk_class Shell_TrayWnd
}
return

Numpad0 & Right::
if ( TaskbarTransparency <= 0 ) {
TaskbarTransparency := 0
WinSet, Transparent, 0, ahk_class Shell_TrayWnd
}
else {
TaskbarTransparency -= 50
WinSet, Transparent, %TaskbarTransparency%, ahk_class Shell_TrayWnd
}
return

Launch_Mail::
WinGetActiveTitle, TitleA
WinSet, AlwaysOnTop, Toggle, %TitleA%
return

Browser_Favorites::
WinGetActiveTitle, HideThisWin
Msgbox, 1, %HideThisWin%, Do you want to hide this window?`nYou might not get it back.
IfMsgBox OK
WinHide, %HideThisWin%
return

It only acts finicky when you've adjusted one window ( and WinTransparency is set to a low number), then trying to adjust another window.

You've got some pretty good stuff listed here.
Among my favorites are:
Firefox & Opera (yes in that order :p)
xplorer2
Free Download Manager (I'm on dialup and Flashget doesn't seem to stay up to speed...)
Oh, and AHK of course!
I have three desktop clocks, Clock! being my favorite because it's the only one with a built-in alarm. It lacks a built-in transparency feature, but I've already wrote an ahk launcher for it to fix that little issue.
7-zip -- I have Peazip too, but never use it. I think I got it because 7zip doesn't support those rare-but-damn-annoying ace files.
MWSnap - desktop screenshot utility
CamStudio - Finally! A Good, Freeware screen video capture utility!!!
GIMP - image editing
Foobar2000 - Couldn't live without Metallica!
MP3Gain - fixing volumes of mp3 files
EAC & Audiograbber - ripping CDs
What? What DVD Decrypter? I don't know what you're talking about!
AP Tuner - good guitar tuner, with only one annoying gag, I mean nag screen!
Proxy Switcher Lite, for when I don't use FoxyProxy
Both ISO Producer and ISO Buster have their merits.
ResHack
Auslogics Disk Defrag
KeePass
Resolution Changer
Security Process Explorer
Lots of stuff from PortableApps.com, most notably:
Firefox
Notepad++
Abiword
Gimp
Thunderbird
InfraRecorder - for simple burning of cds/dvd/iso images and the like. I don't even bother installing Nero anymore.
PNotes

Sorry, it would take me over an hour to look up all the url's for these. Oh, and keep in mind that this is nowhere near a complete list. Heh. These are just my favorites. And this is one big reason I keep coming back to XP instead of sticking with Linux.
_________________
I slit the sheet, the sheet I slit,
and on the slitted sheet I sit. ;~}
Back to top
View user's profile Send private message Send e-mail
Rhys



Joined: 17 Apr 2007
Posts: 722
Location: Florida

PostPosted: Sun Jun 15, 2008 6:48 am    Post subject: Reply with quote

redhatboy wrote:
...And this is one big reason I keep coming back to XP instead of sticking with Linux.
Misnomer alert! Very Happy
_________________
[Join IRC!]
Back to top
View user's profile Send private message
AllanIsKing



Joined: 27 Jun 2008
Posts: 1

PostPosted: Fri Jun 27, 2008 4:25 am    Post subject: Directory Report Reply with quote

Directory printer, find duplicate files, rename files and maintain your files - all in 1 tool
http://www.file-utilities.com/downloads/wdir.zip[/url]
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> General Chat All times are GMT
Goto page Previous  1, 2, 3
Page 3 of 3

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group