| Author |
Message |
Topic: BlackJack - Game |
aCkRiTe
Replies: 19
Views: 3710
|
Forum: Scripts & Functions Posted: Wed Aug 26, 2009 8: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: 3710
|
Forum: Scripts & Functions Posted: Wed Aug 26, 2009 7: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: 276
|
Forum: Ask for Help Posted: Wed Apr 08, 2009 8: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: 177
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 6: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: 177
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 6: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: 177
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 5:44 pm Subject: Remove digits from a number |
Num = 800800022348
StringTrimLeft, Num, Num, 3
MsgBox, %Num%
|
Topic: Close Program |
aCkRiTe
Replies: 6
Views: 384
|
Forum: Ask for Help Posted: Fri Apr 03, 2009 2: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: 183
|
Forum: Ask for Help Posted: Tue Mar 31, 2009 3: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: 575
|
Forum: Ask for Help Posted: Tue Mar 31, 2009 2: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: 197
|
Forum: Ask for Help Posted: Mon Mar 30, 2009 10: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: 155
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 8: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: 505
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 7: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 ... |
Topic: Use "enter" key at the same time in two windows |
aCkRiTe
Replies: 20
Views: 505
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 6:57 pm Subject: Use "enter" key at the same time in two windows |
| I clearly understand what you meant by "old users" and understand that this might be your first day with AHK(and a warm welcome btw), but all Im saying is that you need to start somewhere as ... |
Topic: Macro connected to a window |
aCkRiTe
Replies: 11
Views: 759
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 6:45 pm Subject: Macro connected to a window |
Im not sure if I understand your question correctly, but if your looking for your script/macro to run only when a certain window exist or is active, you can take a look at the following:
[url=http: ... |
Topic: Use "enter" key at the same time in two windows |
aCkRiTe
Replies: 20
Views: 505
|
Forum: Ask for Help Posted: Fri Mar 27, 2009 6:28 pm Subject: Re: Need Script please ^^ |
I really dont know how to do it... I need Someone who can write the script for me ,i dont think its difficult for an old user of autohotkey
And neither did the "old users" when they first ... |
| |