| Author |
Message |
Topic: How to rename some files with sequencial name? |
ILL.1
Replies: 11
Views: 686
|
Forum: Ask for Help Posted: Thu Mar 24, 2005 1:48 pm Subject: How to rename some files with sequencial name? |
Look under the index in the help file for A_Now and Rename. They should give you a hint on how to rename files and also use variables within filenames.
Simple example of variable usage:
Word1 = T ... |
Topic: random or sequencial name or number |
ILL.1
Replies: 4
Views: 320
|
Forum: Ask for Help Posted: Wed Mar 23, 2005 2:09 pm Subject: random or sequencial name or number |
Use a variable name for the filename and then increment the counter.
count = 1
Mbutton::
FileAppend, %Clipboard%, F:\Hotkey\File Append %count%.txt
count++
Return
Look at SetFo ... |
Topic: pixelsearch help |
ILL.1
Replies: 1
Views: 218
|
Forum: Ask for Help Posted: Fri Mar 18, 2005 2:20 pm Subject: pixelsearch help |
Perhaps something like this:
PixelSearch, Px, Py, 333, 84, 341, 91, Green
if ErrorLevel = 0
{
MsgBox, Green was found in the specified region.
Return
}
PixelSearch, Px, Py, 333, ... |
Topic: ListBox for pictures !! |
ILL.1
Replies: 5
Views: 354
|
Forum: Ask for Help Posted: Fri Mar 18, 2005 2:16 pm Subject: ListBox for pictures !! |
Bobo, I believe he wants a listbox that shows images instead of text. Sort of like a file save when in thumbnail view.
new_g, there isn't a way to do that yet. You might make a request to Chris ... |
Topic: Gui text Help/tip |
ILL.1
Replies: 3
Views: 282
|
Forum: Ask for Help Posted: Fri Mar 18, 2005 1:56 pm Subject: Gui text Help/tip |
| You could make "Current Process:" static text so that only the filename will flicker. |
Topic: Open a new IE window |
ILL.1
Replies: 6
Views: 531
|
Forum: Ask for Help Posted: Thu Mar 10, 2005 8:50 pm Subject: Open a new IE window |
| Just change the the program path to the exe for firefox and it should work. |
Topic: Open a new IE window |
ILL.1
Replies: 6
Views: 531
|
Forum: Ask for Help Posted: Thu Mar 10, 2005 4:56 pm Subject: Open a new IE window |
| A return is not needed for one line hotkeys, but it doesn't hurt as a good programming practice. Also putting {} around all conditional statements helps a bunch when debugging. |
Topic: Open a new IE window |
ILL.1
Replies: 6
Views: 531
|
Forum: Ask for Help Posted: Thu Mar 10, 2005 2:03 pm Subject: Open a new IE window |
For this to work, you need to open a new instance of IE and pass the page as a parameter.
^F1::Run, "C:\Program Files\Internet Explorer\iexplore.exe" http://www.google.com |
Topic: How i can make a systray text (like the windows clock) |
ILL.1
Replies: 8
Views: 933
|
Forum: Ask for Help Posted: Thu Mar 10, 2005 1:53 pm Subject: How i can make a systray text (like the windows clock) |
| Look under Menu in the help file. There is a section on how to change the icon and tooltip. Also there are a few examples at the bottom of that help page. Give it a go and see if this is what you'r ... |
Topic: Progress Bar HELP |
ILL.1
Replies: 7
Views: 490
|
Forum: Ask for Help Posted: Wed Mar 09, 2005 9:19 pm Subject: Progress Bar HELP |
| Look at the GUI command in the help file. GUI, Add, Progress... |
Topic: WheelUp/Down Lock Windows Problem |
ILL.1
Replies: 3
Views: 308
|
Forum: Ask for Help Posted: Wed Mar 09, 2005 5:39 pm Subject: WheelUp/Down Lock Windows Problem |
| Perhaps it is an intellipoint problem. It is my work computer (Dell XP Pro SP1) so I don't have rights to uninstall things. It also logs me out every time the screen saver comes on. If I had the cho ... |
Topic: WheelUp/Down Lock Windows Problem |
ILL.1
Replies: 3
Views: 308
|
Forum: Ask for Help Posted: Wed Mar 09, 2005 3:30 pm Subject: WheelUp/Down Lock Windows Problem |
| I have a problem with a WheelUp/Down script I made. Whenever I lock my screen, those two hotkeys stop working until I restart my computer. That is the only way I can get the hotkeys to start working ... |
Topic: Search multiple files |
ILL.1
Replies: 4
Views: 332
|
Forum: Ask for Help Posted: Tue Mar 08, 2005 1:44 pm Subject: Search multiple files |
| On a *nix machine, you use grep, so I'm sure if you searched for windows and grep you could find a command line tool. I just don't know of one to recommend. This is Bobo's field. |
Topic: copy newest file to an other directory |
ILL.1
Replies: 5
Views: 479
|
Forum: Ask for Help Posted: Wed Mar 02, 2005 5:45 pm Subject: copy newest file to an other directory |
| Set the flag in filecopy to 1, overwrite. |
Topic: How to do devided with round up? |
ILL.1
Replies: 2
Views: 241
|
Forum: Ask for Help Posted: Mon Feb 21, 2005 2:34 pm Subject: How to do devided with round up? |
Is this what you're looking for?
t1 = 19
t2 = 19.0
Loop, 5
{
t1 /= 3
t2 /= 3
Transform, t2, Ceil, %t2%
MsgBox, t1 = %t1%`nt2 = %t2%
}
|
| |