Jump to content
UBot Underground

littledevil

Members
  • Content Count

    13
  • Joined

  • Last visited

Community Reputation

0 Neutral

About littledevil

  • Rank
    Member

System Specs

  • OS
    Windows 8
  • Total Memory
    < 1Gb
  • Framework
    v3.5
  • License
    Community Edition

Recent Profile Visitors

1073 profile views
  1. it does same as save orwser image, not taking the ful page screenshot...the link i m trying is http://www.templatemonsterpreview.com/67614.html
  2. i changed the application folder to d:\ and saved but it saves ony the part of webpage visible on the screen not the full page
  3. is there any way to take the full screenshot of the whole webpage, using save browser image only the part visible on the screen gets saved not the part below which gets revealed on scrolling....how do i get the full page saved as image....plz guide thanx
  4. taking twitter as example in the status i post the the message ... but to upload a image i have to either drag and drop the image or put its path on the add photo button ...manually when i click on add photo an then i put the external link for the image in the filename and click open. it uploads the image but while scripting i am unable to automatically fill the filename it doesn't even let me do type text or click on the pop...any solution . set(#mylinktweet, "http://mysitelink.com", "Global") set(#mypictweet, "http://mypiclink.com", "Global") type text(<id="tweet
  5. yes delete was the culprit ...thanx
  6. i have a csv file with dept names in separate lines lik MOVIES BEAUTY BOOKS i have a variable called list count which gets randomly generated with a value btwen 0 and 5. no based on this number i m trying to create a new list and repeat the dept above in different rows on the list . e.g listcount=3 %dept= [0]->dept [1]->MOVIES [2]->MOVIES listcount=4 [3]->BEAUTY [4]->BEAUTY [5]->BEAUTY and so on but it doesnt add the items to create the list as above ...instead it creates he list as %dept [0]->dept
  7. i subscribed but didn't get the plugin as yet in my email
  8. i want to add the string in the variable seconds to the date and get the new date/timestamp set(#dt, $date, "Global") set(#seconds, "00:15:08", "Global") set(#diff, $add(#dt, #seconds), "Global")but its not working. it just attaches it to end of the dt e.g and gives something like #diff: 01/12/2016 00:37:1800:15:08
  9. e.g http://www.amazon.in/gp/goldbox/ref=nav_topnav_deals...under today's lighting deals are the items with time in each
  10. how to scrape the data from googlesheet?
  11. i have 5 items on a page now each item has time displayed below it with html i m trying to scrape the time for each item <span class="ticker">04</span>h<span class="ticker">35</span>m<span class="ticker">04</span>smy bot is set(#itemoffset, 0, "Global") loop(5) { set(#hrs, $scrape attribute($element offset($element offset(<class="ticker">, 0), #itemoffset), "innertext"), "Global") set(#mins, $scrape attribute($element offset($element offset(<class="ticker">, 1), #itemoffset), "innertext"), "Global")
  12. my html is someting like <li id="book1"> <div class="title"> alice in wonderland</div> <div class="price"> $5</div> </li> <li id="book3"> <div class="title"> lionking</div> <div class="price"> $9</div> </li> <li id="book4"> <div class="title"> three little pigs</div> <div class="price"> $3</div> </li> how do i get it to check the li id and then extract the corresponding title..currently i have as below set(#count, 0, "Global") loop(6) { set(#booki
  13. i have bot to post links to various facebook groups/pages. it works fine...but the problem is when it types the link into the white box "write something" using type text the link doesn't not automatically show the image basically the preview etc as it does when we do it manually...any way to fix it?
×
×
  • Create New...