-
Content Count
3279 -
Joined
-
Last visited
-
Days Won
68
Everything posted by JohnB
-
Just use the change file field command and it loads your image. pretty cool, actually since it's not presented as an open file element (although it is). John
-
Silverlight is similar to flash. You need to use image recognition on those sites. John
-
Basic question about lists and unique usernames from a file
JohnB replied to ubotfanner's topic in Scripting
Try this: List of Names.ubot -
Here, run this: captcha.ubot
-
Fran, whenever code gets pasted here from code view, it needs to be pasted back into code view because sometimes it contains extra characters (escapes) that are not visible in node view. In the example for left and right side you posted above those extra characters are there and should not be if you are placing those strings in node view. That is why the code does not work. I ran the code I posted about 100 times and it worked every time, bar none. Here is the actual left side string for node view: <p id="awpcp-form-spacer">Enter the value of the following sum: <b> And
-
Here is another one (of the condensed variety- all in a single node): type text(<name="checkhuman">, $eval($page scrape("<p id=\"awpcp-form-spacer\">Enter the value of the following sum: <b>", "</b><br><input type=\"text\" name=\"checkhuman\"")), "Standard") John
-
How do I write a # without it changing to a variable?
JohnB replied to Ghoast's topic in General Discussion
Click the little quotes button before closing the node. John -
Please finish editing all nodes before....
JohnB replied to AutomationNinja's topic in General Discussion
Here it is... http://ubotstudio.com/forum/index.php?/topic/7886-please-finish-editing-all-nodes-before-changing-to-code-view/page__view__findpost__p__40302 John -
Please finish editing all nodes before....
JohnB replied to AutomationNinja's topic in General Discussion
There is a thread on this, but I can't find it at the moment. The solution is something close to: Open a new tab, switch to node view and then switch back to the original tab. That may or may not be exact, but it is something very close to that. I'll post back as soon as I find it. John -
Got Regex Buddy / Edit Padpro | Anything else ?
JohnB replied to Security's topic in Regex (Regular Exp<b></b>ressions) 101
Thanks Security...unfortunately we no longer accept zip files due to a serious problem we had earlier this year. We also don't accept links to public file sharing on the forum anymore, as everything needs to be transparent for the security of the members. You can either post the videos in the thread, or you can contact me (via PM), send me the zip file (I'll give you a link), I'll check it over and add it to this thread once I clear it. Another option would be to send it via skype to interested parties, however, I think it's too useful to just disallow so by all means contact me so we can g -
Best way to scrape a password out of block of text..
JohnB replied to Ghoast's topic in General Discussion
Here, try this: blogigo.ubot -
Another thing you can do is open a blank instance of Ubot...switch to code view and THEN load your bot...when switching between tabs, do so in code view. One thing you need to understand about ubot is that it is a visual scripting editor. When you switch tabs or load bots you are loading command nodes which are "visual" they load as images and not text. The same applies when you switch tabs. The commands are not yet loaded visually when the tab is not active (They loaded as text). But when you switch tabs it needs to load them visually...unles, of course, you are in code view. The more
-
Private Bot bank stores the commands and functions locally just for you to see and use. John
-
That's a nice and useful service! thank you. john
-
You do understand that I work for the company, and when the company or product is misrepresented I will respond accordingly. Your statement was inaccurate and required clarification. Which is exactly what I did. I would appreciate not being told how to answer posts. I know exactly what I am saying and why I am saying it.. But the short answer you are looking for right now is no. There are no current plans to make it optional. But it's irrelevant because it does not interfere with anything non-users are doing inside UBot. I hope I've cleared this up for you. John
-
Eddie has tested it extensively and it uses less than 2MB. There is no significant overhead at all. If you don't like it, just don't use it. John
-
Have you tried changing your useragent to IE? It is located under the settings commands. John
-
Unable to continue with UI html panel & some features
JohnB replied to peak_positions's topic in General Discussion
Hi. Ok... 1) The ui html panel is essentially a webpage. Any techniques one would use to display a progressbar on a webpage would apply here. There are several threads in this forum regarding progressbars. 2) The slow switching is in developer mode only. Once you compile the bot they switch freely. 3)There are no "sockets" in v4. you can use threading in new browsers and adjust several settings (i.e allow images, javascript, etc) 4/5) You have no control over the existing buttons (play/stop) but you can create your own buttons inside the ui html panel and have the users run the b -
If / then command and wild card [Solved]
JohnB replied to AutomationNinja's topic in General Discussion
Why are you going to the emails? Why not connect to the server with the email commands, add them to a table and scrape from the table?(column 4) It's a whole lot easier and faster. John -
Does anyone else have this 'wait for browser event' skip problem?
JohnB replied to Ghoast's topic in General Discussion
Yes, it does...just for future reference... ANY button click that cause a page navigation REQUIRES a delay...the click command does not inherently have a delay, so you need to make sure it has one...in your case, a perfect example, the page action took longer to execute (the button click), so a delay would naturally solve that. John -
Does anyone else have this 'wait for browser event' skip problem?
JohnB replied to Ghoast's topic in General Discussion
I have never experienced that. If you want to send your script to me, I'll take a look at it and see if I can find something... John -
I type it every time. John
-
You need to use add list to list, not add item to list. John
-
One thing we found early on was that v4 executes commands very quickly. Having said that, it IS possible that a command is being executed before the page is ready for them so delays are always a good first test to see if that is the issue. John