AutoHotkey Community

It is currently May 26th, 2012, 8:23 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
PostPosted: June 22nd, 2008, 1:13 am 
My ISP provides me with a dynamic IP address. I live in Sweden and usually get Swedish IP addresses. But sometimes I get russan and german IP addresses. Or at least so it seems. Some applications I have warn me that I can only log in from my registered country.

I'd like to avoid those warnings. I'd like to do that by automatically reconnecting when I get a foreign IP address. Is there any easy way I can check if whether my IP address is Swedish or foreign?

Thanks


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 22nd, 2008, 1:24 am 
I kind of solved this. Not the most elegant solution. If anyone knows of a better solution I'd like that. Otherwise this will work:

Code:
   Run, firefox
   Sleep, 10000

   SetTitleMatchMode, 2
   if(WinExist("Mozilla Firefox startsida"))
   {
      WinClose
   }
   else if (WinExist("Mozilla Firefox"))
   {
      WinClose
      Disconnect()
   }


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 22nd, 2008, 10:35 am 
Offline

Joined: February 18th, 2008, 8:26 pm
Posts: 442
You can use free services e.g.

Code:
file = %A_Temp%\geoip
UrlDownloadToFile, *0 http://geoip.co.uk/, %file%
FileRead, html, %file%
FileDelete, %file%
StringMid, html, html, InStr(html, "id=""mapinfo"""), 1000
RegExMatch(html, "<div class=""textright"">(?:[^:]*:){3}\s*([A-Z]{2})", country)

MsgBox, Your IP is in: %country1%


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 20th, 2008, 9:07 am 
You can also try IP Mailer. It constantly monitors your IP, and once you connect with your modem or your IP changes for some other reason, it will detect it automatically.


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: BrandonHotkey, Google [Bot], poserpro, RaptorX, sjc1000 and 62 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group