Announcement

Collapse
No announcement yet.

Web Object help!

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Web Object help!

    Hello,

    I have a web object that loads "http://www.iplocation.net/" Once the pages loads, I want to save all the data to HTML or text file (IP, Location. Log & Lat etc.). I could not figure how to do this and could not find anything in the forums. Can someone point me in the right direction? Thanks

  • #2
    Originally posted by Widget View Post
    Hello,

    I have a web object that loads "http://www.iplocation.net/" Once the pages loads, I want to save all the data to HTML or text file (IP, Location. Log & Lat etc.). I could not figure how to do this and could not find anything in the forums. Can someone point me in the right direction? Thanks
    Well this is very possible but why would it be in the forum, not really what the software was designed for the default object I don't think can do it but you could it with the IE object by Reteset of use luasockets what I say would be the better no need for a browser object

    also look in the help file at HTTP

    Example:
    ggg = HTTP.Submit('http://www.iplocation.net', {}, SUBMITWEB_GET, 15, 80, nil, nil);
    --Check to see if an error occurred.
    error = Application.GetLastError();
    -- If an error occurred, display the error message.
    if (error ~= 0) then
    Dialog.Message("Error", _tblErrorMessages[error], MB_OK, MB_ICONNONE);
    else
    Dialog.Message('', ggg, MB_OK, MB_ICONNONE);
    end
    Help File
    string HTTP.Submit (
    string URL,

    table Values,

    number Method = SUBMITWEB_GET,

    number Timeout = 20,

    number Port = 80,

    table AuthData = nil,

    table ProxyData = nil )
    Plugins or Sources MokoX
    BunnyHop Here

    Comment

    Working...
    X