Jump to content
UBot Underground

IRobot

Members
  • Content Count

    508
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by IRobot

  1. I believe that true Windows multi-threading will be available in Ubot Pro/Dev. The current 'thread' command is mainly used for clicking on dialog buttons.
  2. Not sure what the functions of a sitebuilder template are; so it may help if you list the functions. Ubot can perform most functions that you can do via a normal web browser.
  3. Regarding your first question, it's not a good coding practise to make recursive calls, as you could end up in an infinite loop or be resource intensive. Questions two and three: Ubot does not currently support true Windows multi-threading. This will be available in Ubot Pro/Dev; which are out soon.
  4. Welcome dude! Thanks for the tip.
  5. I could not reproduce this. Ubot just ran through the script.
  6. Yes, as post #6 implies; it seems to be some sort of Ubot UI bug. I'd suggest that admin. take a look at it. You could PM LillyT if there's no response to this thread.
  7. Yes, use something like: while not search page("phrase")
  8. I've had a look, and it seems that the Ubot UI status is incorrect, i.e. the Play button should be displayed instead of the Pause button (at the sub's pause). However, you can still click on the Pause button, and the correct sequence is followed.
  9. Hello mate, The problem was you inserted a %list into the number of cycles instead of a $list total (easy beginners mistake). Also, its better not to hard code file paths (I was modifying all of 'em!) and use a system constant like $my documents, which will now save all files in the My Documents folder. I've modified your bot, to run with no errors. Try this: scraper.ubot
  10. What's the error message? Can you post the .ubot file?
  11. To run the compiled ubot script by command line or .bat file, use the following command: ubot.exe /auto
  12. I think this is a known issue with some OS's like Windows XP. A workaround is to uninstall Ubot, then reinstall from the download link in your registration email.
  13. How are you getting a return value from this command? If you set a variable to the table in the "create table from file" command, it will contain nothing if the file does not exist, and Ubot will throw an error. See the discussion here on possible solutions to return values and error/exception handling: http://ubotstudio.com/forum/index.php?/topic/5338-exception-handling/
  14. IRobot

    $eval example

    There's nothing wrong with the code. Try running this: eval.ubot
  15. IRobot

    var1 != var2

    Yes, use: if not evaluate var1 = var2
  16. IRobot

    $eval example

    Are you running in Ubot studio or a compiled .exe? Have you navigated to a site that supports javascript, e.g. google.com?
  17. As Ubot's embedded browser is IE, then if this option to disable the context menu is available in IE settings, this should be reflected in Ubot.
  18. Should be a straightforward <if... then... else>, but difficult to advise unless you post some code and a URL.
  19. The error is displayed because you're trying to save two tables to file (as in your 'save to file' command), when what is required is one table with two columns.
  20. In Ubot Studio, in the Toolbox on the left hand side, under 'Variable Commands' drag the 'parameter' command (4th command down) into the sub (just like you would with a 'set').
  21. The first image shows that you've not added parameters to the rss submitter sub. To add a parameter, select it from under variable commands.
  22. No.Please read my post again. You will need to add parameters to bot 1, in order to see the included bot's sub's parameters in the main bot.
  23. In the included bot add a sub. In that sub, add parameters (under the variable command). In the main bot, use 'run sub' to run the included bot's sub, and fill in the parameter's (variable's) values.
  24. Just drag it into the ui window. Refresh, and access it via the Ubot Settings menu. Yes.
  25. You could set the variable in the main bot and pass it to the included bot via sub parameters.
×
×
  • Create New...