| Author |
Message |
Topic: Separating a String Variable by Line Feed |
wooly_sammoth
Replies: 4
Views: 44
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 5:42 pm Subject: Separating a String Variable by Line Feed |
Loop, Parse, myTextVar, `n
{
MyTextVar%A_Index% = %A_LoopField%
}
Edit: Or StringSplit of course |
Topic: copying text from TitleMatchMode |
wooly_sammoth
Replies: 4
Views: 45
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 5:22 pm Subject: copying text from TitleMatchMode |
Try running this and see if the text you are after appears at all.
My gut tells me that the problem is with the break command if A_Index > 2
SetTitleMatchMode, 2
SetTitleMatchMode, slow
Detec ... |
Topic: Help with INI file |
wooly_sammoth
Replies: 5
Views: 102
|
Forum: Ask for Help Posted: Wed Mar 17, 2010 4:39 pm Subject: Help with INI file |
Alternatively you can read the existing Ini entry to a variable, append the new text to the end and then write it back to the Ini File
IniRead, Existing_Entry, c:\stats\%A_UserName%.ini, 1, cnt ... |
Topic: GUI for canned answers in email - help with concept needed |
wooly_sammoth
Replies: 7
Views: 112
|
Forum: Ask for Help Posted: Tue Mar 16, 2010 5:06 pm Subject: GUI for canned answers in email - help with concept needed |
You are definately on the right track. A couple of things to mention would be that in your if statements you don't need the small v
If Caned="How to register
Send, BIG BLOCK OF TE ... |
Topic: dropdown list - setting value |
wooly_sammoth
Replies: 3
Views: 98
|
Forum: Ask for Help Posted: Tue Mar 16, 2010 11:27 am Subject: dropdown list - setting value |
I'd use GuiControl, ChooseString
There's this in the Documentation
GuiControl, ChooseString, ControlID, String: Sets the selection (choice) in a ListBox, DropDownList, ComboBox, or Tab control to ... |
Topic: Auto updating progress bar |
wooly_sammoth
Replies: 1
Views: 58
|
Forum: Ask for Help Posted: Mon Mar 15, 2010 5:55 pm Subject: Auto updating progress bar |
You know with Var1 how many minutes there are until 1700, so you can set up a progress bar with a range 0-var1 and have a timer set to increase the progress bar by 1 every minute
#Persistent
P ... |
Topic: Gui to use ImgBurn in command line |
wooly_sammoth
Replies: 4
Views: 138
|
Forum: Ask for Help Posted: Thu Mar 11, 2010 6:02 pm Subject: Gui to use ImgBurn in command line |
OK so the first thing you'll want to do is assign variables to each of the controls in your Gui.
that will look something like this
Gui, Add, Radio, vSpeed_2X, 2x
Gui, Add, Radio, vSpeed_4x, 4X ... |
Topic: Ledger - Keep track of your finances |
wooly_sammoth
Replies: 5
Views: 1540
|
Forum: Scripts & Functions Posted: Thu Mar 11, 2010 3:16 pm Subject: Ledger - Keep track of your finances |
| It was written as UTF-8 so should be kept as that. Not sure why the Unicode message came up. Maybe someone else will have experienced the same thing and will know why |
Topic: How to disable Mobsync.exe on window vista? |
wooly_sammoth
Replies: 4
Views: 102
|
Forum: General Chat Posted: Wed Mar 10, 2010 5:05 pm Subject: How to disable Mobsync.exe on window vista? |
Gonna be moved but i thought i'd get in here anyway.
#Persistent
SetTimer, Kill_Mobsync, 1000
Return
Kill_Mobsync:
Process, Exist, Mobsync.exe ;Change Mobsync.exe to the actual proces ... |
Topic: Hotkey Activation help |
wooly_sammoth
Replies: 3
Views: 51
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 2:12 pm Subject: Hotkey Activation help |
Try putting the Hotkey at the bottom of the script.
Currently the script is running up to the return after the hotkey and then not running any more.
Pop the hotkey at the end then the Gui will ... |
Topic: Get data from screen problem |
wooly_sammoth
Replies: 3
Views: 60
|
Forum: Ask for Help Posted: Wed Mar 10, 2010 1:25 pm Subject: Get data from screen problem |
| Use the AutoIt windows spy program that comes with AutoHotkey to see if the co-ordinate text shows up in there. If it does, you could use the ControlGetText command to retrieve the co-ordinates withou ... |
Topic: Which one is better? AMD or Intel |
wooly_sammoth
Replies: 13
Views: 228
|
Forum: General Chat Posted: Wed Mar 10, 2010 1:22 pm Subject: Which one is better? AMD or Intel |
I don't know, there's nothing I like more than a rapidly expanding pool of molten silicon seeping out of the bottom of my case.
Simple pleasures |
Topic: Which one is better? AMD or Intel |
wooly_sammoth
Replies: 13
Views: 228
|
Forum: General Chat Posted: Wed Mar 10, 2010 12:37 pm Subject: Which one is better? AMD or Intel |
depends what you're after
AMD is beter for overclocking as the Intel chips turn themselves off when they get too hot. |
Topic: SCRIPT REQUIRED FOR PRINTING |
wooly_sammoth
Replies: 3
Views: 87
|
Forum: Ask for Help Posted: Tue Mar 09, 2010 11:24 am Subject: SCRIPT REQUIRED FOR PRINTING |
a simple loop should sort it for you
SetTitleMatchMode, 2
FileSelectFolder, Folder, , , Please choose the folder to loop through
Loop, %Folder%\*.pdf
{
Run, %A_LoopFileFull ... |
Topic: iniread fails - allways get "ERROR" Value?! |
wooly_sammoth
Replies: 6
Views: 71
|
Forum: Ask for Help Posted: Tue Mar 09, 2010 11:17 am Subject: iniread fails - allways get "ERROR" Value?! |
Also works fine for me.
(I saved both the ini and the script to my desktop |
| |