Jump to content
UBot Underground

ron3000

Members
  • Content Count

    2
  • Joined

  • Last visited

Community Reputation

2 Neutral

About ron3000

  • Rank
    Newbie

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    < 1Gb
  • Framework
    v3.5 & v4.0
  • License
    Professional Edition

Recent Profile Visitors

1473 profile views
  1. this will get you started: allow javascript("Yes") allow popups("Yes") allow flash("Yes") readinilogin() navigate("http://socialmediaexplode.com", "Wait") wait for browser event("Everything Loaded", "") wait(4) type text(<username field>, $replace($list item(%login, 0), "user ", ""), "Standard") wait for browser event("Everything Loaded", "") type text(<password field>, $replace($list item(%login, 1), "password ", ""), "Standard") wait for browser event("Everything Loaded", "") wait(1) click(<login link>, "Left Click", "No") wait for browser event("Everything Loaded", "")
  2. this is how i'm doing it: define $file_exists(#if_exists_filename) { clear list(%fileslist) add item to list(%fileslist, $get files($special folder("Application"), "No"), "Delete", "Local") if($contains(%fileslist, #if_exists_filename)) { then { set(#file_exist_found, $true, "Global") } else { set(#file_exist_found, $false, "Global") } } return(#file_exist_found) }
×
×
  • Create New...