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 

Search found 47 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Zip/Unzip using native ZipFolder Feature in XP
..:: Free Radical ::..

Replies: 14
Views: 2777

PostForum: Scripts & Functions   Posted: Fri Feb 05, 2010 2:25 pm   Subject: Zip/Unzip using native ZipFolder Feature in XP
Mhh, your version, sadly, doesn't work, Free Radical. Sad

Function Name: "Namespace"
Error: The COM Object may not be a valid one!

Get the same error with "CopyHere".

work ...
  Topic: Zip/Unzip using native ZipFolder Feature in XP
..:: Free Radical ::..

Replies: 14
Views: 2777

PostForum: Scripts & Functions   Posted: Wed Feb 03, 2010 6:49 pm   Subject: Zip/Unzip using native ZipFolder Feature in XP
Noticed since most of us have moved to COM stdlib, it may help someone looking for an updated version


Zip(sDir, sZip)
{
If Not FileExist(sZip)
{
VarSetCapacity&# ...
  Topic: Yet another program launcher
..:: Free Radical ::..

Replies: 9
Views: 1505

PostForum: Scripts & Functions   Posted: Fri Jan 22, 2010 8:19 pm   Subject: Yet another program launcher
@tg3793
It doesn't as such catalog anything.
It just sifts through your history.
So even paths to removable drives (if they exist) are included.

Also, you may use the Right Windows key
or Wind ...
  Topic: Screen Capture with Transparent Windows and Mouse Cursor
..:: Free Radical ::..

Replies: 108
Views: 46618

PostForum: Scripts & Functions   Posted: Thu Dec 10, 2009 1:06 am   Subject: Screen Capture with Transparent Windows and Mouse Cursor
I added these


Else If aRect = 4
{
MouseGetPos, x1, y1
Sleep, 5000
MouseGetPos, x2, y2
nL := x1
nT := y1
nW := x2 - x1
nH := y2 - y1
}
Else If ...
  Topic: A simple clipboard stack/ kill ring,
..:: Free Radical ::..

Replies: 21
Views: 4758

PostForum: Scripts & Functions   Posted: Thu Oct 22, 2009 12:12 pm   Subject: Re: A simple clipboard stack/ kill ring,


Note that this only works for pure text, as I found that I couldn't store multiple ClipboardAll (looks like ClipboardAll can only be stored as a pointer to a single Clipboard object? Is that r ...
  Topic: How do select an item from the desktop context menu?
..:: Free Radical ::..

Replies: 14
Views: 660

PostForum: Ask for Help   Posted: Fri Oct 16, 2009 3:32 am   Subject: How do select an item from the desktop context menu?
PostMessage, 0x111, 415, 0,, ahk_class Shell_TrayWnd ; WinMinimizeAll
PostMessage, 0x111, 407, 0,, ahk_class Shell_TrayWnd ; Shows the desktop
  Topic: Yet another program launcher
..:: Free Radical ::..

Replies: 9
Views: 1505

PostForum: Scripts & Functions   Posted: Sat Oct 10, 2009 8:09 am   Subject: Persistent version
Here is a persistent variant which you can compile.
Right windows key toggles it.


#SingleInstance ignore
#NoEnv
#Persistent

SetBatchLines, -1
Process, Priority, , High
Menu, Tray, Icon, s ...
  Topic: Yet another program launcher
..:: Free Radical ::..

Replies: 9
Views: 1505

PostForum: Scripts & Functions   Posted: Thu Oct 08, 2009 11:08 am   Subject: Yet another program launcher
Fixed by sending command through %comspec%
  Topic: Yet another program launcher
..:: Free Radical ::..

Replies: 9
Views: 1505

PostForum: Scripts & Functions   Posted: Thu Oct 08, 2009 8:09 am   Subject: Yet another program launcher
I put Sleep, 5000 Razz when I was testing this
but, to no avail
  Topic: Yet another program launcher
..:: Free Radical ::..

Replies: 9
Views: 1505

PostForum: Scripts & Functions   Posted: Thu Oct 08, 2009 7:59 am   Subject: Yet another program launcher
Hi folks, I felt the need of a Program Launcher in XP which lacks good desktop search and I didn't want to use third party apps.

http://img3.imageshack.us/img3/3985/20091008180851.gif

Yep we alr ...
  Topic: Auto-raise / mouse hover
..:: Free Radical ::..

Replies: 73
Views: 15174

PostForum: Scripts & Functions   Posted: Sat Oct 03, 2009 8:03 pm   Subject: Auto-raise / mouse hover


WinMinimizeAllUndo doesn't work on my comp, so Send #d is the more solid way to go.

Try this
PostMessage, 0x111, 416, 0,, ahk_class Shell_TrayWnd
  Topic: Auto-raise / mouse hover
..:: Free Radical ::..

Replies: 73
Views: 15174

PostForum: Scripts & Functions   Posted: Thu Oct 01, 2009 9:22 pm   Subject: Auto-raise / mouse hover
for a translucent window, you may use winset, transparent

also, instead of sending win +d, you may even use WinMinimizeAllUndo Smile
  Topic: Auto-raise / mouse hover
..:: Free Radical ::..

Replies: 73
Views: 15174

PostForum: Scripts & Functions   Posted: Thu Oct 01, 2009 7:48 am   Subject: Auto-raise / mouse hover
Look at the post above yours. I used the TrayNotifyWnd1 Control for the same purpose. You may use "TrayClockWClass1" for hovering over the tray clock to achieve the same. Wink
  Topic: Auto-raise / mouse hover
..:: Free Radical ::..

Replies: 73
Views: 15174

PostForum: Scripts & Functions   Posted: Thu Oct 01, 2009 6:23 am   Subject: Auto-raise / mouse hover
yep i am lazy Wink

; Peek
MouseGetPos,,,, ctl
if (ctl = "TrayNotifyWnd1")
{
WinMinimizeAll
return
}
; Tabs & ...
  Topic: How to adjust display brightness? (I'm sure it's possible)
..:: Free Radical ::..

Replies: 12
Views: 604

PostForum: Ask for Help   Posted: Sat Sep 26, 2009 2:35 pm   Subject: How to adjust display brightness? (I'm sure it's possible)
Same output and no effect. Perhaps my LCD doesn't support backlight control.

Can anyone else test this too?
 
Page 1 of 4 Goto page 1, 2, 3, 4  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group