| Author |
Message |
Topic: Any loop hole with aborting program via URLdownloadtofile? |
Uminnsky
Replies: 4
Views: 85
|
Forum: Ask for Help Posted: Thu Feb 18, 2010 11:38 pm Subject: Any loop hole with aborting program via URLdownloadtofile? |
If the program downloaded a file doesn't have the matching string, they can't run the program.
Of course, if they can de-compile your program and get the validation code, then they can run the prog ... |
Topic: Any loop hole with aborting program via URLdownloadtofile? |
Uminnsky
Replies: 4
Views: 85
|
Forum: Ask for Help Posted: Thu Feb 18, 2010 1:54 am Subject: Any loop hole with aborting program via URLdownloadtofile? |
| except the file is deleted both before and after the urldownload command, so the program would have to be suspended somehow after the download for them to change the contents of the text file. |
Topic: Any loop hole with aborting program via URLdownloadtofile? |
Uminnsky
Replies: 4
Views: 85
|
Forum: Ask for Help Posted: Thu Feb 18, 2010 1:45 am Subject: Any loop hole with aborting program via URLdownloadtofile? |
Upon launching, my program runs the below...
FileDelete %A_programfiles%\config.txt
URLDownloadToFile,http://..../config.txt, c:\Program Files\config.txt
FileRead,validate,%A_programf ... |
Topic: URLDownloadToFile still downloads non-existent file |
Uminnsky
Replies: 5
Views: 127
|
Forum: Ask for Help Posted: Wed Nov 25, 2009 7:33 pm Subject: URLDownloadToFile still downloads non-existent file |
You may use If HttpQueryContentLength( URL )
URLDownloadToFile, %URL%, %File%
it isn't just creating a file with the same name, it has the content of the file).
What version of A ... |
Topic: URLDownloadToFile still downloads non-existent file |
Uminnsky
Replies: 5
Views: 127
|
Forum: Ask for Help Posted: Wed Nov 25, 2009 1:15 pm Subject: URLDownloadToFile still downloads non-existent file |
| I have loaded a simple text file to my website, built a program to download that file. Everythinng works fine so far. I then delete the file off my webiste, re publish it with the changes, and yet t ... |
Topic: Script speed on different computers |
Uminnsky
Replies: 9
Views: 317
|
Forum: Ask for Help Posted: Wed Sep 30, 2009 2:48 am Subject: Re: Script speed on different computers |
| The program does some basic text file manipulationAs I know from an earlier post your program does some hundred thousend basic text file manipulation. Your problem on the very slow computer is the dis ... |
Topic: Script speed on different computers |
Uminnsky
Replies: 9
Views: 317
|
Forum: Ask for Help Posted: Fri Sep 25, 2009 3:56 am Subject: Script speed on different computers |
| Would anyone have any suggestions on why a script would run extremely slow on one computer (XP, 1.6 Ghz Duo) and fast on the other (vista)? The program does some basic text file manipulation, and run ... |
Topic: Making an hour glass type progress bar |
Uminnsky
Replies: 9
Views: 495
|
Forum: Ask for Help Posted: Fri Sep 25, 2009 12:12 am Subject: Re: Making an hour glass type progress bar |
I have given up trying to actually time my script with the progress barDon't give up! Doesn't the thread I linked to help with this?
I am sure it should , but I am not easily following how t ... |
Topic: Making an hour glass type progress bar |
Uminnsky
Replies: 9
Views: 495
|
Forum: Ask for Help Posted: Thu Sep 24, 2009 11:38 pm Subject: Making an hour glass type progress bar |
| Thanks for the help...concerning the timer, I have never played with this before, but it still seems to stick on the label like a loop would. In the code below how can I get beyond the label to my co ... |
Topic: Making an hour glass type progress bar |
Uminnsky
Replies: 9
Views: 495
|
Forum: Ask for Help Posted: Thu Sep 24, 2009 7:31 pm Subject: Making an hour glass type progress bar |
| Thanks for the reply. It appears that it is still trying to base the progress bar in accordance with progress of the script and or its "time." I want a completely unintelligent progress ba ... |
Topic: Making an hour glass type progress bar |
Uminnsky
Replies: 9
Views: 495
|
Forum: Ask for Help Posted: Thu Sep 24, 2009 6:25 pm Subject: Making an hour glass type progress bar |
| I have given up trying to actually time my script with the progress bar, to many files and dozens of loops. Is there a simple way to code the progress bar to just loop from 0-100% continuously until ... |
Topic: New Window Placement Upon Open |
Uminnsky
Replies: 2
Views: 559
|
Forum: Ask for Help Posted: Mon Aug 24, 2009 12:12 am Subject: New Window Placement Upon Open |
Check out WinMove
Run, calc.exe
WinWait, Calculator
WinMove, 0, 0 ; Move the window found by WinWait to the upper-left corner of the screen. |
Topic: How can I reset variables |
Uminnsky
Replies: 8
Views: 225
|
Forum: Ask for Help Posted: Sun Aug 23, 2009 10:34 pm Subject: How can I reset variables |
Ok, I got it...
I added this to the beginning of the script to clear the variables. Thanks for all the help...
Loop 150 ; Clear all TestVar variables
{
if (A_Index=1)
... |
Topic: How can I reset variables |
Uminnsky
Replies: 8
Views: 225
|
Forum: Ask for Help Posted: Sun Aug 23, 2009 9:59 pm Subject: How can I reset variables |
Thanks Hubert,
The file will usually only have about 157k comma delimated fields, I put 150 just to make sure it doesn't stop short of looping through everything...I understand your point...
How ... |
Topic: How can I reset variables |
Uminnsky
Replies: 8
Views: 225
|
Forum: Ask for Help Posted: Sun Aug 23, 2009 8:09 pm Subject: How can I reset variables |
| Thanks, I need the variables to hold there data until the loop is finished so I can't. It works fine during the initial execution, its just when I run it a second time on a new file that it carries o ... |
| |