Jump to content

Recommended Posts

Posted

Hi all,

I want to make this script loop.

$FILE = FileOpen(@Homedrive & "wanip.txt", 0)
$LINE1 = FileReadLine($FILE, 22)
$IP = INetGet ("http://whatsmyip.net/", @Homedrive & "wanip.txt")
$FILE = FileOpen(@Homedrive & "wanip.txt", 0)
$LINE = FileReadLine($FILE, 22)
FileClose(@Homedrive & "wanip.txt")
If $Line1 = $Line Then
    Exit
Else
RunWait(@ScriptDir & "\Email.exe")
EndIf

I played with

For...Next

While...WEnd

Do...Until

For...In...Next

and i couldn`t figured out how to make it loop.

Thank you in advanced

Posted

What do you want to achieve?

I don't get why you read the same line two times?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted

im trying to email IP address.

i found the script when searching for something that will email me when my IP changed.

the problem was that it didnt work so i created another Email script thats run if line in the the wanip.txt is changed.

what im trying to achive is that the script will continue to check if the line changed every 30 min or so...

if the line changed i want it to run the email script.

i want it to continue runing until i close it.

Posted

Use

While 1 ;infinite loop

...

Code here

...

Sleep(60000) ;sleeps for 1 minute. Change as needed

WEnd

Thanks alot Kidney

That solved my problem :D

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...