Jump to content
UBot Underground

tee3141

Members
  • Content Count

    9
  • Joined

  • Last visited

Community Reputation

0 Neutral

About tee3141

  • Rank
    Newbie

Profile Information

  • Gender
    Not Telling

System Specs

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

Recent Profile Visitors

1896 profile views
  1. I have a bot executable that I usually launch it from command line and let it run automatically with 'autorun' option. It works fine for a few months until yesterday, it could be launched but not able to run anymore. I checked the ubot studio data folder (at C:\Users\<username>\AppData\Roaming\UBot Studio) and noticed a ubot_compiled.txt file, which has the following exception. Anyone knows what's going on and how to fix that? This is on a Windows 7 machine on which I am the administrator and have full control of the file and the related folders ERROR - Failed to load bot: Syste
  2. I have a following code that were working when on 4.2.16, but once upgrade to 5.0, not work anymore. add list to list(%lines, $list from file(#pidsFile), "Delete", "Local") set(#line, $list item(%lines, 0), "Local") I changed to do the following instead and it works set(#line, $read file(#pidsFile), "Global") I was not able to find any documentation about the change, anyone can help here? Also, for the following code, what shall I do to make it work? clear list(%pids) add list to list(%pids, $find regular expression(#line, "[0-9]+"), "Delete", "Local") set(#pi
  3. I have a following code that were working when on 4.2.16, but once upgrade to 5.0, not work anymore. add list to list(%lines, $list from file(#pidsFile), "Delete", "Local") set(#line, $list item(%lines, 0), "Local") I changed to do the following instead and it works set(#line, $read file(#pidsFile), "Global") I was not able to find any documentation about the change, anyone can help here? Also, for the following code, what shall I do to make it work? clear list(%pids) add list to list(%pids, $find regular expression(#line, "[0-9]+"), "Delete", "Local") set(#pi
  4. On a webpage that my bot is visiting, there is an select box with few options, like the below. How to write code to make a selection there? Say select 2012? <div class="label">year</div> <select name="birth_year" id="birth_year" class="req" tabindex="1"> <option value=""></option> <option value="2015">2015</option> <option value="2014">2014</option> <option value="2013">2013</option> <option value="2012">2012</option> <option value="2011">2011</option> <option value="2010">
  5. Hey there, Is there a command that we can use to minimize or hide the status pane? So it's more closer to the real browser window size... Thanks!
  6. So is it that only the javascript setting matters, or do you still need those set browser property commands at the beginning of this post? And also by saying turn off javascript, did you mean doing the following? allow javascript("No")
  7. The command will create a small thumbnail browser window along side the main browser window, the thumbnail window is so small such that the content within the window is hardly to be seen. Is there a way to make it bigger?
  8. I have one bot executable keep running (navigation to different sites) on my machine. After a while, the whole machine will slow down and I noticed that there are quite a few instances of browser.exe running. I wonder if there is a way to control that. Or is it simply because of my bad coding practice... anyone can provide some insights here?
×
×
  • Create New...