Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Execute URL
#1
Hi, I have a code that tells me when I have messages on myspace, the only problem is I need a code that can 'Execute' a URL, without my browser being open, kind of like refresh the URL... PLEASE HELP!
#2
Try IntGetFile function.
Macro
Code:
Copy      Help
str url="http://www.google.com"
IntGetFile url _s
#3
Anyway to Set the number of Sockets?
#4
"http://www.google.com:1280"
here 1280 is port number
#5
What I am trying to do is Send Several requests at once (which IntGetFile) does not seem to be allowing me to do, it's working great, but won't let me send more than one request.. I'm trying to get stats for (people who turned 50 today) from a website, & the # is changing on a whim... So i need to get it at a speed of about 0.1 without my browser opened though.

I tried

rep
,0.1
,intGetFile url _s

This does not seem to work.
#6
Many IntGetFile can work at the same time in multiple threads. Place the code in a function and run the function from the main macro using mac.

rep 10
,mac "Function"
#7
says 'error, function timed out' then stops bringing me back the data

tried adding

;err at the end, still doesn't bring back data
#8
Maybe the web server does not allow multiple connections from 1 computer. Then i don't know what you can do. With google for example works well.

Macro
Code:
Copy      Help
out
rep 25
,mac "Function27"
Function Function27
Code:
Copy      Help
str url="http://www.google.com"
IntGetFile url _s
out _s


Forum Jump:


Users browsing this thread: 1 Guest(s)