| View previous topic :: View next topic |
| Author |
Message |
Scott_Redmond Guest
|
Posted: Tue Nov 24, 2009 9:27 am Post subject: I will pay someone $50 to write me a simple script.... |
|
|
| At 6:00am every morning, my athletic club website makes tennis courts available. The courts for that day are gone by 6:05am. I want to write a script that launches automatically at 6:00am that reserves a court for me. The key strokes, mouse clicks and data entry are very predictable. If this can be done easily and you want to make some $, let me know. Thanks. |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 8255 Location: Maywood, IL
|
Posted: Tue Nov 24, 2009 10:36 am Post subject: |
|
|
have you tried the script recorder? you might be able to save some money. _________________
(Common Answers) |
|
| Back to top |
|
 |
Scott_Redmond Guest
|
Posted: Tue Nov 24, 2009 7:51 pm Post subject: |
|
|
| engunneer wrote: | | have you tried the script recorder? you might be able to save some money. |
I played around with a couple of recording options and couldn't get them to work the way I wanted. Plus, once I get that part down, I'll have to figure out how to schedule it at 6:00am. Since I only need this one application, I thought I'd save my time and offer some bucks to someone that can do this in their sleep. Any takers??? |
|
| Back to top |
|
 |
BoBoł Guest
|
Posted: Tue Nov 24, 2009 11:29 pm Post subject: |
|
|
| Code: | #Persistent
Time := 0600 ; time to go&getIt
SetTimer, Go&GetIt, 900
Return
Go&GetIt:
If InStr(SubStr(A_Now,-5,4),Time) {
SoundBeep, 523, 100
}
ToolTip
Return
!z::SetTimer, Go&GetIt, Off ; press ALT+z to stop the timer | For the reason that you didn't provide the URL, we have to create a wake-up-son-workarround  |
|
| Back to top |
|
 |
rtcvb32
Joined: 17 Feb 2008 Posts: 289
|
Posted: Wed Nov 25, 2009 3:00 am Post subject: |
|
|
Perhaps if you did a recording of what you wanted and posted it, someone could clean it up and prepare the 6am timer to fire it off. Anything sensitive or can't be shared can be replaced with %input1% and you can save that for later.
It would be harder to write the script without being able to test it though. |
|
| Back to top |
|
 |
SoLong&Thx4AllTheFish
Joined: 27 May 2007 Posts: 4999
|
|
| Back to top |
|
 |
n-l-i-d Guest
|
Posted: Wed Nov 25, 2009 5:41 pm Post subject: |
|
|
We would need the url. It might very well be **not allowed** to automate this, check on the site.
If you do get help, consider donating to AutoHotkey instead.
HTH |
|
| Back to top |
|
 |
hai Guest
|
Posted: Sat Nov 28, 2009 5:58 pm Post subject: |
|
|
| If its *your* website, why don't you set up a server side code that does that, or the website defaults to one court that is reserved for your self. |
|
| Back to top |
|
 |
|