| Author |
Message |
Topic: HotKeys |
aCkRiTe
Replies: 1
Views: 74
|
Forum: Ask for Help Posted: Fri Oct 28, 2011 12:50 pm Subject: HotKeys |
| If you look under Send / SendRaw / SendInput / SendPlay / SendEvent in the help file, its says "Since the operating system does not allow simulation of the CTRL-ALT-DELETE combination, doing some ... |
Topic: Alarm Clock Program (File) Activation Script |
aCkRiTe
Replies: 8
Views: 1213
|
Forum: Scripts & Functions Posted: Fri Jul 15, 2011 10:54 am Subject: Alarm Clock Program (File) Activation Script |
@bruno
Nice to see you like using other peoples code Glad you liked it.
http://www.autohotkey.com/forum/viewtopic.php?t=12220alarm+clock |
Topic: « What's on your mind? » |
aCkRiTe
Replies: 1229
Views: 48204
|
Forum: General Chat Posted: Thu Feb 03, 2011 1:36 pm Subject: « What's on your mind? » |
| Its been forever since I have visited the forum. Had some down time at work today and decided to browse around it. I still use AHK daily, its just been a while since Ive been back here. Hope everyone ... |
Topic: BlackJack - Game |
aCkRiTe
Replies: 19
Views: 4875
|
Forum: Scripts & Functions Posted: Wed Aug 26, 2009 7:21 pm Subject: BlackJack - Game |
I have uploaded the script back to autohotkey.net. The link is now working.
http://www.autohotkey.net/~ackrite/BlackJack.rar |
Topic: BlackJack - Game |
aCkRiTe
Replies: 19
Views: 4875
|
Forum: Scripts & Functions Posted: Wed Aug 26, 2009 6:30 pm Subject: BlackJack - Game |
The download link isn't working for me. Has this file been removed?
Im not sure what happened to my autohotkey.net page, none of my scripts are on there. Its been a while since I have logged in. Le ... |
Topic: MsgBox |
aCkRiTe
Replies: 5
Views: 460
|
Forum: Ask for Help Posted: Wed Apr 08, 2009 7:05 pm Subject: MsgBox |
Gui, +ToolWindow
Gui, Add, Button, , About
Gui, Add, Button, wp hp ym, Ok
Gui, Show, w110 h35
Return
ButtonOk:
MsgBox, You pressed the Ok button
Return
ButtonAbout:
Run, www.a ... |
Topic: Remove digits from a number |
aCkRiTe
Replies: 6
Views: 345
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 5:41 pm Subject: Remove digits from a number |
SubStr does perform faster than StringTrimLeft, even if the increase in speed doesn't make a significant difference in this instance.
That I am not sure about, but I dont doubt that you are correct ... |
Topic: Remove digits from a number |
aCkRiTe
Replies: 6
Views: 345
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 5:06 pm Subject: Remove digits from a number |
Not as readable but shorter and faster:
Num = 800800022348
Num:=SubStr(Num,3)
MsgBox, %Num%
Needs to be:
Num = 800800022348
Num:=SubStr(Num,4)
MsgBox, %Num%
an ... |
Topic: Remove digits from a number |
aCkRiTe
Replies: 6
Views: 345
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 4:44 pm Subject: Remove digits from a number |
Num = 800800022348
StringTrimLeft, Num, Num, 3
MsgBox, %Num%
|
Topic: Close Program |
aCkRiTe
Replies: 6
Views: 1608
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 1:26 pm Subject: Close Program |
| Im assuming your Moffsoft script is just keyboard shortcuts, which has no gui so there is really no window to close. Why dont you just assign a hotkey like the following in your Moffsoft script to exi ... |
Topic: (SOLVED - TY) Would this need a loop? |
aCkRiTe
Replies: 3
Views: 346
|
Forum: Ask for Help Posted: Tue Mar 31, 2009 2:29 pm Subject: (SOLVED - TY) Would this need a loop? |
| No need to put it in a loop. The CheckTime subroutine runs continuously every second. |
Topic: Set desktop background |
aCkRiTe
Replies: 6
Views: 807
|
Forum: Ask for Help Posted: Tue Mar 31, 2009 1:33 pm Subject: Set desktop background |
| Try doing a search for wallpaper or wallpaper changer. There are a few scripts here in the forum that do something similar to what you are looking for. Maybe they can help you out. |
Topic: How can I detect that a listbox item was "double clicke |
aCkRiTe
Replies: 6
Views: 441
|
Forum: Ask for Help Posted: Mon Mar 30, 2009 9:10 pm Subject: How can I detect that a listbox item was "double clicke |
Here is an example that might help you, but its just a single click, not double.
Gui, Add, ListBox, vColorChoice gSubroutine, Red|Green|Blue|Black|White
Gui, Show
Return
Subroutine:
Gui ... |
Topic: Add item to .txt file if it does not exist in the file |
aCkRiTe
Replies: 4
Views: 335
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 7:33 pm Subject: Add item to .txt file if it does not exist in the file |
another example that might help you
IfNotExist, UserList.txt
FileAppend, Computer1`,Computer2`,Computer3`,, UserList.txt
FileRead, List, UserList.txt
If A_ComputerName not in %List%
FileApp ... |
Topic: Use "enter" key at the same time in two windows |
aCkRiTe
Replies: 20
Views: 862
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 6:59 pm Subject: Re: Need Script please ^^ |
please i need help ,can someone write the script fo me ,i really need it thx all
How do you expect someone to just write you a script when you have not provided any information at all! Do you jus ... |
| |