| Author |
Message |
Topic: Bringing window to foreground after removing from taskbar |
yume
Replies: 4
Views: 141
|
Forum: Ask for Help Posted: Tue Mar 16, 2010 4:36 pm Subject: Bringing window to foreground after removing from taskbar |
You can use Sean's program to remove the taskbutton and then use WinActivate if you need.But i only tried it in winXP
Maybe the title is misleading but the downloaded zipfile also contains taskbut ... |
Topic: NumpadEnter doesn't work |
yume
Replies: 3
Views: 44
|
Forum: Ask for Help Posted: Tue Mar 16, 2010 3:51 pm Subject: NumpadEnter doesn't work |
Hi Sinkfaze you beat me .........   |
Topic: NumpadEnter doesn't work |
yume
Replies: 3
Views: 44
|
Forum: Ask for Help Posted: Tue Mar 16, 2010 3:50 pm Subject: NumpadEnter doesn't work |
It paste the clipboard so are you sure that the content of your clipboard is not by coincidence {NumpadEnter}?
just a thought  |
Topic: Breaking or Pausing an infinite loop at any time? |
yume
Replies: 7
Views: 233
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 10:14 pm Subject: Breaking or Pausing an infinite loop at any time? |
If you want a totally different approach for instantly killing a loop:
you can make two programs
master that run's and kill's the loop with hotkey (F4) that toggles between run the loop or kill ... |
Topic: Lock script - doesn't delete window list file on exit |
yume
Replies: 2
Views: 38
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 9:45 pm Subject: Lock script - doesn't delete window list file on exit |
#Persistent
SetTimer, Hide_Windows, 900000 ; Run this every 15 minutes
Return
OnExit, OnnExit
return
remove the return like this:
#Persistent
SetTimer, Hide_Windows, 900000 ; Ru ... |
Topic: stop desktop background being changed? |
yume
Replies: 3
Views: 70
|
Forum: Ask for Help Posted: Sun Mar 14, 2010 9:16 pm Subject: stop desktop background being changed? |
you can set a policy by creating the reg entries:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\policies\ActiveDesktop]
"NoChangingWallPaper"=dword:00000001 |
Topic: add border on images |
yume
Replies: 1
Views: 57
|
Forum: Ask for Help Posted: Tue Mar 02, 2010 9:18 pm Subject: add border on images |
Creating a canvas that is 60pixels larger than the image and centering the image on it?
#SingleInstance, Force
#NoEnv
SetBatchLines, -1
#Include, Gdip.ahk
FileSelectFile, file1
If !pTo ... |
Topic: Right proportions - Images GUI |
yume
Replies: 3
Views: 113
|
Forum: Ask for Help Posted: Tue Mar 02, 2010 2:09 pm Subject: Right proportions - Images GUI |
calculate a bit?
FileSelectFile, image_file
gosub show_picture
return
show_picture:
Gui, destroy
gui,add,picture,hwndpic vmypic,%image_file%
ControlGetPos, ,,width,height,,ahk_id%pic ... |
Topic: Winset Transparency Color |
yume
Replies: 6
Views: 181
|
Forum: Ask for Help Posted: Mon Mar 01, 2010 10:39 am Subject: Winset Transparency Color |
am looking to primarily change the color of the white background
With gdi it is the brush parameters that give you the transparency/color (0x04000000) is black(000000) and transparency set to 04.
... |
Topic: Winset Transparency Color |
yume
Replies: 6
Views: 181
|
Forum: Ask for Help Posted: Sun Feb 28, 2010 6:47 pm Subject: Winset Transparency Color |
You can use gdi instead.You need the gdip.ahk library in the same dir or in your autohotkey lib dir.
http://www.autohotkey.net/~tic/Gdip.ahk
and i take this occasion to thank tic for his excelle ... |
Topic: Mouse Icon |
yume
Replies: 3
Views: 72
|
Forum: Ask for Help Posted: Sun Feb 28, 2010 4:40 pm Subject: Mouse Icon |
#persistent
SetTimer, alert,500
return
alert:
ToolTip, %A_Cursor%
return
esc::
ExitApp
You can see if the A_Cursor variable changes content and act upon it. |
Topic: change color if mouse is above text (like a menu or button) |
yume
Replies: 3
Views: 161
|
Forum: Ask for Help Posted: Tue Feb 23, 2010 9:49 am Subject: change color if mouse is above text (like a menu or button) |
I played around with this idea of changing text color when mouse_over and stumbled on a problem when using event mouse tracking.
It works well until you put a g-label then sometimes it does not wor ... |
Topic: File Creation Time and a frightful thing |
yume
Replies: 7
Views: 192
|
Forum: Ask for Help Posted: Fri Feb 19, 2010 7:07 pm Subject: File Creation Time and a frightful thing |
| If you look at the code you will see that the creation time is of the picture not of the file.The time is coded into the filename so copying the file will not change it.I did it because if i screengra ... |
Topic: File Creation Time and a frightful thing |
yume
Replies: 7
Views: 192
|
Forum: Ask for Help Posted: Fri Feb 19, 2010 11:11 am Subject: File Creation Time and a frightful thing |
If you use unix time it is easy to sort (and have a unique name)and you can always convert to "human time"
F4::
T = %A_Now%
T -= 1970,s
send,%T%.jpg
return
126657785 ... |
Topic: Recording Mouse |
yume
Replies: 8
Views: 215
|
Forum: Ask for Help Posted: Fri Feb 19, 2010 8:44 am Subject: Recording Mouse |
#persistent
SetTimer, alert,500
return
alert:
if A_Cursor=Unknown ;hand is identified as unknown on my PC
{
click 2 ;will activate the link by doubleclicking
Sleep, 5000 ;to pre ... |
| |