Jump to content

Recommended Posts

Posted

Hello guys,

i need an help about coding a page refreshing bot every day at 02:00 am (a bot that clicks F5 at that hour every day)

Can you help me?

Best regards

Posted

you can try this :

$_Title= ; find title and text with AutoIt Window Info
$_Text=  ;

While 1
    If @HOUR = 2 And @MIN = 0 And @SEC = 0 Then
        WinWait  ( $_Title, $_Text )    
        WinActivate ( $_Title, $_Text ) 
        WinWaitActive ( $_Title, $_Text )   
        Send ( "{F5}" ) 
        Sleep ( 1000 )
    EndIf
    Sleep ( 20 )
WEnd

AutoIt 3.3.18.0 X86 - SciTE 5.5.7WIN 11 24H2 X64 - Other Examples Scripts

Posted

ok but it's not 2:00 am ! Posted Image

That would probably depend on where in the world he currently is, for its 2:00 am somewhere at every hour toll ;)

My Contributions: Unix Timestamp: Calculate Unix time, or seconds since Epoch, accounting for your local timezone and daylight savings time. RegEdit Jumper: A Small & Simple interface based on Yashied's Reg Jumper Function, for searching Hives in your registry. 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...