Jump to content

holyearth

Members
  • Posts

    8
  • Joined

  • Last visited

holyearth's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi Realm, thanks for that - where would I define the path of the file that should be checked for line count...
  2. Hello, I am looking to make a simple line counter - which has a simple GUI that shows a "counter" like a website hit counter.... The linux equivalent of "wc -l blah.txt" So if blah.txt has 450 lines the counter will show 450 ... except it auto-refreshes every 3 seconds because the file is always changing.... Thanks for the help on this!!
  3. I didn't see a paid project section so forgive me if this is in the wrong place. About this project: Pull username and password from a .txt file then log into a certain webmail provider (hotmail,aol,yahoo) - that's absolutely all. (show logged in user's inbox) Nothing else. As easy as this task may seem, I have consulted with a number of experts with autoit - some who are prominent members here - and not ONE has been able to successfully do this. The coding essentially involves: 1) Pull user:pass from .txt file 2) Place user:pass into the login form of the webmail provider 3) Mouse click on the login button Most coders are getting stuck on step 2 I do need the script to have a GUI as I do need to see the emails in the inbox. The budget for this project is somewhat open/generous as I am looking for someone who can just get it done. If you have the skills, I have the work =). PM me if you're the one!
  4. Tried this, and it works: While 1 $dif = TimerDiff ($begin) MouseMove(60, 400) MouseMove(222, 100) If $dif > 6000 then WinMove("Notepad", "", 216, 8) ; x , y $begin = TimerInit () EndIf WEnd
  5. I tried it, but it doesnt work: $begin = TimerInit () While 1 $dif = TimerDiff ($begin) MouseMove(60, 400) MouseMove(222, 100) While $dif > 6000 WinMove("Notepad", "", 216, 8) ; x , y $begin = TimerInit () WEnd WEnd
  6. How do I do that?
  7. I have a while loop that is going constantly. But -- every 30 minutes I want the loop to stop and close a running process then resume the loop... Here is my code that is not working: $begin = TimerInit () While 1 $dif = TimerDiff ($begin) MouseMove(60, 400) MouseMove(222, 100) if $dif > 1800000 then ;after 30 mins do this then go back to loop above MouseMove(444, 100) ExitLoop WEnd WEnd This is not working for me. Once the 444,100 mousemove starts it wont stop. Thanks for the help!
  8. Hey everyone, I apologize if this post is in the wrong section. I didn't see a "Paid projects" area... I need an AutoIt script that basically does the following: 1) Open up IE 2) Log into a yahoo email account 3) Take me to the inbox and sit there for X seconds (I'll set the sleep value) 4) Log out of the account 5) Start back at #2 6) Stop on a hot-key like ctrl-alt-x Basically the script will log into yahoo accounts that are provided by me in a .txt file called accounts.txt I need someone who really knows what they are doing because pulling the username and password from my text file and logging into Yahoo may be easy, but once you're logged in there's a sh!t load of AJAX going on. That's why I need someone who can really navigate their way around the javascript right into the inbox. (It's not really as easy as MouseClick). I've got a generous budget on this and I can pay by PayPal. Contact me for further details.
×
×
  • Create New...