<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>UBot DevStudio &#187; UBot News</title> <atom:link href="http://www.ubotdevstudio.com/category/ubot-news/feed/" rel="self" type="application/rss+xml" /><link>http://www.ubotdevstudio.com</link> <description>Bot Creation Software</description> <lastBuildDate>Fri, 03 Sep 2010 05:31:11 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.1</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>UBot Studio: The UI Commands and the Flow Commands</title><link>http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/</link> <comments>http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/#comments</comments> <pubDate>Fri, 03 Sep 2010 05:31:11 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[qualifier]]></category> <category><![CDATA[tutorial]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/</guid> <description><![CDATA[ In this tutorial we are going to go over UI Commands and the Flow Commands UI Elements- Drag the UI text box command into your script window. Give it a label and a variable. A UI text box will appear at the top of your screen. Anything you put into that text box will be your variable. Drag over the field that you wish to fill and apply the UI variable that you just created. So whatever you type in the box at the top will appear in the field you chose to fill. You can load files from your computer or create a file and save it. Just drag over the UI open file into your script. After you give it a label and apply the variable, any file you load into the UI open file will go into the field you wish to fill. This is good if you want to upload a video to a website. UI list box - You can create a list of words to choose from. When the parameter window pops up, type the words you want a list of into the values box separated by commas. Your list will appear at the top of the window. Drag the field you wish to fill into the script window and apply the variable you created for the UI list box . Now, whatever word you choose in the list, will be filled into the field. For a block of text, use the UI block text element. I will explain the UI Stat Monitor later in this tutorial. Wait Finish Command allows a page to load before moving on with the rest of the script. If you forget to add in a wait finish, it will continue to go on with the script before everything can load. This can create problems with what you are trying to accomplish.  So always try and remember that anytime you are going to click a button to go to another page, add a wait finish command. The Wait Finish Command will wait until a page loads to continue on with the script. For example, you click a link and the website navigates to a different page.  It would be wise to wait for the new page to finish loading before everything else proceeds within the script.  The Wait Finish Command would solve that problem for you. The Navigate command has a built in wait command. The time out option works so that if a page takes longer than 30 seconds to load, it will just continue on with the script. The Delay command delays the script for however long you want. This works if you want to look over the page, or wait to see if anything pops up before continuing on with your script. There are also stop script and pause script commands. These are good if you are having troubles with your bot. You can add the stop or pause command into your script so it will stop it at a certain point and not run through the whole bot and you can diagnose problems. The Run Script command runs a script from anywhere thing your bot, while the Run Sub command runs whatever Sub (in which you place whatever commands you want)  you have within the script. Another handy tool is the Include Command , which allows you to use the subs and scripts from other .ubot files. If you want to call a Sub from within the .ubot file you placed within the include command , you would go to the Flow Commands in the toolbox and choose the Run Sub command . Click on the name of the bot you placed in the Include command and choose the sub you want use in your bot. If there is no sub in the bot file, then no subs will be displayed under &#8220;Which Sub?&#8221;. If you want to use a script from the bot file, you would use the Run Script command and choose the script you want the same way you chose the sub with the Run Sub command . Rub Sub Run Script The Loop command - is a very useful tool. It will repeat whatever action you tell it to as many times as you want. When you drag the loop into the script window, it will ask you how many cycles you want it to loop for. You can put a variable, a constant, tell it to do one loop cycle for one thing in a list, or just have it loop for a certain number of times in a row. For example, maybe you want to create 10 different user names with 5 different first and last names. So drag all of your commands that you created in the loop. In order to get the user names, names, passwords, etc to change you have to use the create account command .  Drag the create account command into your script window. Put it at the very top and choose the gender you want the user names to be. This tool randomizes all of the account constants and what they are going to output. Make sure when you create a loop, that you don&#8217;t forget to add a wait finish command after it clicks submit and before it cycles into the next loop. Another type of loop is the while loop. This continues to run the loop as long as some condition is met. Create a variable, give it a label and set the content to 1. For this example we are also going to see how the UI stat monitor works. So drag the UI stat monitor into your script window and have it watch the variable that you just created. The UI stat monitor will watch your loop command and display which loop it is on at the top of your page. Drag the while loop into your script.  Right click on the qualifier place holder and choose evaluate. We are going to tell it to continue looping as long as the variable is below 5. So this will make 5 the second value. In order for your loop to continue on to the next loop, instead of staying in an endless cycle of 1, you have to add in an Inc command.  Drag the inc command to the bottom of your script. This increments the variable count by 1. The search page qualifier allows you to have UBot search for a certain word on a page. As long as this word is available on the page, it will continue to loop. Or you can tell it to continue doing the loop until a certain word  is found on the page. Once it finds that word, the loop will stop. There is also the If command .  The If Command considers a piece of data  and then  a decision is made based on that data. So if a certain condition is met then a task is performed. If the condition is not met, then a different task can be performed in the Else command attached to the If command. Go to www.ubotstudio.com/playground.  We can tell UBot to search the page for the &#8220;Simple Form&#8221; link, and  if it finds this, then we want it to click the link. If it can&#8217;t find it then it means we are already on the Simple Forms page (in this case we can assume that) and we want it to fill in the about me section on the page. For this example, I am going to show what you can do when you click a link and it navigates to a different page. Since you are on a different page after clicking the link, the same conditions won&#8217;t be met, so you have to tell UBot to do something else. To do this, right click on the simple form link and choose search page. You can highlight what you want it to look for. Drag over the simple form link into the &#8220;Then&#8221; node. This will tell it to click the simple form link. After we click the simple form link, we are going to be on a different page. Since we are on a different page now, the same conditions won&#8217;t be met.  So we have to tell it to do something else. Drag the About Me section into the &#8216; Else&#8217; node. Fill it in with whatever commands you want. When you run it a second time, it will fill in the about me section. Thread command - anything that goes inside of this, will happen independently from the rest of the script. It follows it&#8217;s own rules, it&#8217;s like a script that is running at the same time as the main script. Sometimes a dialog window will pop up and stop the script from continuing to run. The solution to this problem is using the thread command. Put the click chosen button for the button that causes the window to pop up,  in it&#8217;s own thread. Then drag a delay command into the script window. This delay gives the pop up enough time to pop up before moving on. Use click dialogue button on the left hand side and drag it under the delay command . Enter the command that you have to click on the pop up (ex: OK) This will click the button in the thread, and because it does this, it is free to move on with the script. In sub window command- it does everything you put inside it, in another pop up window. Anything you put in your script will happen in a pop up window. When it finishes with the commands that are included in the sub window, it will close the window. The divider- is just something that you can put into your script to make it look organized. If you want, you can divide things into groups, but the flow has to remain the same. In the next tutorial, we will cover the different ways you can work with lists. ]]></description> <content:encoded><![CDATA[<p><p>In this tutorial we are going to go over<strong> UI Commands</strong> and the <strong>Flow Commands</strong></p><p><span
id="more-257"></span></p><p><strong>UI Elements-</strong></p><p>Drag the<strong> UI text box</strong> command into your script  window. Give it a label and a variable. A UI text box will appear at the  top of your screen.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/df968ac00aextbox.png.png"><img
title="UItextbox" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/df968ac00aextbox.png.png?w=300" alt="" width="300" height="292" /></a></p><p>Anything you put into that text box will be your variable. Drag over  the field that you wish to fill and apply the UI variable that you just  created.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/c4ed5fb9eeoxfill.png.png"><img
title="UItextBoxfill" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/c4ed5fb9eeoxfill.png.png?w=300" alt="" width="300" height="162" /></a></p><p>So whatever you type in the box at the top will appear in the field you chose to fill.</p><p>You can load files from your computer or create a file and save it. Just drag over the <strong>UI open file</strong> into your script. After you give it a label and apply the variable, any  file you load into the<strong> UI open file</strong> will go into the field you wish to  fill. This is good if you want to upload a video to a website.</p><p><strong>UI list box</strong>- You can create a list of words to choose from.  When the parameter window pops up, type the words you want a list of  into the values box separated by commas. Your list will appear at the  top of the window. Drag the field you wish to fill into the script  window and apply the variable you created for the <strong>UI list box</strong>. Now,  whatever word you choose in the list, will be filled into the field.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/1d75c9e527ox_001.png.png"><img
title="UIListbox_001" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/1d75c9e527ox_001.png.png?w=300" alt="" width="300" height="163" /></a><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/0d702ffe87stbox4.png.png"><img
title="UIlistbox" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/0d702ffe87stbox4.png.png?w=300" alt="" width="300" height="207" /></a></p><p>For a block of text, use the <strong>UI block text</strong> element.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/e373b1ef99cktext.png.png"><img
title="UIblocktext" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/e373b1ef99cktext.png.png?w=300" alt="" width="300" height="189" /></a></p><p>I will explain the <strong>UI Stat Monitor</strong> later in this tutorial.</p><p><strong><br
/> </strong></p><p><strong>Wait Finish Command </strong> allows a page to load before moving on  with the rest of the script. If you forget to add in a wait finish, it  will continue to go on with the script before everything can load. This  can create problems with what you are trying to accomplish.  So always  try and remember that anytime you are going to click a button to go to  another page, add a wait finish command. The<strong> Wait Finish Command </strong>will wait until a page loads to  continue  on with the script. For example, you click a link and the  website  navigates to a different page.  It would be wise to wait for  the new  page to finish loading before everything else proceeds within  the  script.  The <strong>Wait Finish Command </strong>would solve that problem for you. The<strong> Navigate</strong> command has a built in wait command.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/b5dcb1c9c5flow14.png.png"><img
title="Flow1" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/b5dcb1c9c5flow14.png.png?w=175" alt="" width="175" height="300" /></a></p><p>The time out option works so that if a page takes longer than 30 seconds to load, it will just continue on with the script.</p><p>The <strong>Delay</strong> command delays the script for however long you want.  This works if you want to look over the page, or wait to see if  anything pops up before continuing on with your script.</p><p>There are also <strong>stop script </strong>and <strong>pause script </strong>commands.  These are good if you are having troubles with your bot. You can add the  stop or pause command into your script so it will stop it at a certain  point and not run through the whole bot and you can diagnose problems.</p><p>The <strong>Run Script command</strong> runs a script from anywhere thing your bot, while the <strong>Run Sub command</strong> runs whatever <strong>Sub</strong>(in which you place whatever commands you want)  you have within the script.</p><p>Another handy tool is the <strong>Include Command</strong>, which allows you to use the subs and scripts from other .ubot files.</p><p><a
rel="attachment wp-att-503" href="http://www.ubotblog.com/ui-elements-and-some-flow-commands/include-command/"><img
class="alignnone size-medium wp-image-503" title="Include Command" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/6d9f5a480100x190.jpg.jpg" alt="" width="300" height="190" /></a></p><p>If you want to call a <strong>Sub</strong> from within the .ubot file you placed within the <strong>include command</strong>, you would go to the <strong>Flow Commands</strong> in the toolbox and choose the <strong>Run Sub command</strong>. Click on the name of the bot you placed in the <strong>Include command</strong> and choose the sub you want use in your bot. If there is no sub in the bot file, then no subs will be displayed under &#8220;Which Sub?&#8221;. If you want to use a script from the bot file, you would use the <strong>Run Script command</strong> and choose the script you want the same way you chose the sub with the <strong>Run Sub command</strong>.</p><p><strong>Rub Sub</strong></p><p><strong><a
rel="attachment wp-att-504" href="http://www.ubotblog.com/ui-elements-and-some-flow-commands/run-sub/"><img
class="alignnone size-medium wp-image-504" title="Run Sub" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/204c282a9f35x300.jpg.jpg" alt="" width="263" height="300" /></a></strong></p><p><strong>Run Script</strong></p><p><a
rel="attachment wp-att-505" href="http://www.ubotblog.com/ui-elements-and-some-flow-commands/run-script/"><img
class="alignnone size-medium wp-image-505" title="Run Script" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/6599176a4135x300.jpg.jpg" alt="" width="235" height="300" /></a></p><p><strong>The Loop command</strong>- is a very useful tool. It will repeat whatever action you tell it to as many times as you want.</p><p>When you drag the <strong>loop</strong> into the script window, it will ask you how  many cycles you want it to loop for. You can put a variable, a constant,  tell it to do one loop cycle for one thing in a list, or just have it  loop for a certain number of times in a row.</p><p>For example, maybe you want to create 10 different user names with 5 different first and last names.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/ffdef20c55flow23.png.png"><img
title="Flow2" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/ffdef20c55flow23.png.png?w=237" alt="" width="237" height="300" /></a></p><p>So drag all of your commands that you created in the loop. In order  to get the user names, names, passwords, etc to change you have to use  the <strong>create account command</strong>.  Drag the <strong>create account command</strong> into  your script window. Put it at the very top and choose the gender you  want the user names to be. This tool randomizes all of the account  constants and what they are going to output.</p><p>Make sure when you create a loop, that you don&#8217;t forget to add a <strong>wait  finish command</strong> after it clicks submit and before it cycles into the  next loop.</p><p>Another type of loop is the <strong>while loop.</strong> This continues to run the loop as long as some condition is met.</p><p>Create a variable, give it a label and set the content to 1.</p><p>For this example we are also going to see how the <strong>UI stat monitor</strong> works. So drag the <strong>UI stat monitor</strong> into your script window and have it  watch the variable that you just created. The<strong> UI stat monitor</strong> will watch  your <strong>loop command</strong> and display which loop it is on at the top of your  page.</p><p>Drag the while loop into your script.  Right click on the qualifier place  holder and choose <strong>evaluate.</strong> We are going to tell it to  continue looping as long as the variable is below 5. So this will make 5 the second value.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/b8ab1530efflow33.png.png"><img
title="Flow3" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/b8ab1530efflow33.png.png?w=238" alt="" width="238" height="300" /></a><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/db1620ae923_0013.png.png"><img
title="Flow3_001" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/db1620ae923_0013.png.png?w=300" alt="" width="300" height="174" /></a></p><p>In order for your loop to continue on to the next loop, instead of staying in an endless cycle of 1, you have to add in an <strong>Inc</strong> command.  Drag the <strong>inc</strong> <strong>command</strong> to the bottom of your script. This increments the variable count by 1.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/852678e7e4flow44.png.png"><img
title="Flow4" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/852678e7e4flow44.png.png?w=155" alt="" width="155" height="300" /></a></p><p>The <strong>search page</strong> qualifier allows you to have UBot search for a  certain word on a page. As long as this word is available on the page,  it will continue to loop. Or you can tell it to continue doing the loop  until a certain word  is found on the page. Once it finds that word, the  loop will stop.</p><p>There is also the <strong>If command</strong>.  The <strong>If Command</strong> considers a piece of data  and then  a  decision is made based on that data. So if a certain condition is met then a task is performed. If the condition is not met, then a different task can be performed in the <strong>Else command</strong> attached to the <strong>If command.</strong></p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/a55def9fd3flow63.png.png"><img
title="Flow6" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/a55def9fd3flow63.png.png?w=300" alt="" width="300" height="164" /></a></p><p>Go to www.ubotstudio.com/playground.  We can tell UBot to search the  page for the &#8220;Simple Form&#8221; link, and  if it finds this, then we want it to  click the link. If it can&#8217;t find it then it means we are already on the Simple Forms page (in this case we can assume that) and we want it to fill in the about me  section on the page.</p><p>For this example, I am going to show what you can do when you click a  link and it navigates to a different page. Since you are on a different  page after clicking the link, the same conditions won&#8217;t be met, so you  have to tell UBot to do something else.</p><p>To do this, right click on the simple form link and choose <strong>search page.</strong> You can highlight what you want it to look for. Drag over the simple  form link into the <strong>&#8220;Then&#8221;</strong> node. This will tell it to click the simple  form link.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/014d360f5aflow73.png.png"><img
title="Flow7" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/014d360f5aflow73.png.png?w=300" alt="" width="300" height="165" /></a></p><p>After we click the simple form link, we are going to be on a  different page. Since we are on a different page now, the same  conditions won&#8217;t be met.  So we have to tell it to do something else.</p><p>Drag the About Me section into the &#8216;<strong>Else&#8217;</strong> node. Fill it in with  whatever commands you want. When you run it a second time, it will fill in the  about me section.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/cb61f1c7647_0013.png.png"><img
title="Flow7_001" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/cb61f1c7647_0013.png.png?w=300" alt="" width="300" height="149" /></a></p><p><strong>Thread command</strong>- anything that goes inside of this, will happen  independently from the rest of the script. It follows it&#8217;s own rules,  it&#8217;s like a script that is running at the same time as the main script.</p><p>Sometimes a dialog window will pop up and stop the script from continuing to run. The solution to this problem is using the<strong> thread</strong> command. Put the<strong> click chosen </strong>button  for the button that causes the window to pop up,  in it&#8217;s own thread.  Then drag a <strong>delay command</strong> into the script window. This delay gives the  pop up enough time to pop up before moving on. Use <strong>click dialogue button</strong> on the left hand side and drag it under the <strong>delay command</strong>. Enter the  command that you have to click on the pop up (ex: OK) This will click  the button in the thread, and because it does this, it is free to  move on with the script.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/a121a129d87_0023.png.png"><img
title="Flow7_002" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/a121a129d87_0023.png.png?w=300" alt="" width="300" height="183" /></a></p><p><strong> </strong></p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/910e36f0c5flow83.png.png"><img
title="Flow8" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/910e36f0c5flow83.png.png?w=300" alt="" width="300" height="185" /></a></p><p><strong>In sub window command- </strong>it does everything you put inside it,  in another pop up window. Anything you put in your script will happen in  a pop up window. When it finishes with the commands that are included  in the <strong>sub window,</strong> it will close the window.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/86f7d1e921flow93.png.png"><img
title="Flow9" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/86f7d1e921flow93.png.png?w=300" alt="" width="300" height="185" /></a></p><p><strong>The divider-</strong> is just something that you can put into your  script to make it look organized. If you want, you can divide  things into groups, but the flow has to remain the same.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/1f17c14408ivider.png.png"><img
title="Divider" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/1f17c14408ivider.png.png?w=174" alt="" width="174" height="300" /></a></p><p>In the next tutorial, we will cover the different ways you can work with lists.</p></p><p><img
src="http://www.ubotdevstudio.com/wp-content/uploads/2010/09/df968ac00aextbox.png-150x146.png" /></p><p>The rest is here:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="UBot Studio: The UI Commands and the Flow Commands">UBot Studio: The UI Commands and the Flow Commands</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;desc=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;submitHeadline=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;submitSummary=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;t=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;t=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands+-+http://su.pr/7ujAdj+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;summary=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;h=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;bm_description=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;link=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2Fubot-studio-the-ui-commands-and-the-flow-commands%2F&amp;desc=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;body=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;bmtitle=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;t=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;T=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&quot;+-+from+http://su.pr/7ujAdj" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/+&quot;UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;selection=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;type=Article&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;body=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;u=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;b=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;desc=In%20this%20tutorial%20we%20are%20going%20to%20go%20over%20UI%20Commands%20and%20the%20Flow%20Commands%0A%0A%0AUI%20Elements-%0ADrag%20the%20UI%20text%20box%20command%20into%20your%20script%20%20window.%20Give%20it%20a%20label%20and%20a%20variable.%20A%20UI%20text%20box%20will%20appear%20at%20the%20%20top%20of%20your%20screen.%0A%0AAnything%20you%20put%20into%20that%20text%20box%20will%20be%20your%20variable.%20Drag%20over" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands&amp;url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/&amp;title=UBot+Studio%3A+The+UI+Commands+and+the+Flow+Commands" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/ubot-studio-the-ui-commands-and-the-flow-commands/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>UBot Studio: Account Creation</title><link>http://www.ubotdevstudio.com/ubot-studio-account-creation/</link> <comments>http://www.ubotdevstudio.com/ubot-studio-account-creation/#comments</comments> <pubDate>Sat, 21 Aug 2010 23:14:20 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[script]]></category> <category><![CDATA[search]]></category> <category><![CDATA[time]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/ubot-studio-account-creation/</guid> <description><![CDATA[ Form Commands. Go to www.ubotstudios.com/Playground and choose simple form. We are going to be working with this form so you can play with some of the commands and gain a basic understanding of how they work. We are going to create an imaginary account. The easiest way to do this,  is to drag the text field box you want to fill, over into your script window. The parameter window will  pop up, and you can fill it in with the username you want. Do this with each fill field box. Then click and drag the submit button into your script window. Remember to check the flow. ____________ For this lesson go to ubotstudios.com/playground and click on the difficult form link. When you try to create an account like we did before, you will see that when you click and drag the text field box over, the name field is empty. If this name field is empty, it is useless. Delete this, because we cannot use it. Right click in the text field box and select &#8220;choose by attribute.&#8221; Find the attribute that best describes what you are looking for. In this case it is &#8220;id.&#8221; When you click on &#8220;id&#8221; you can see that the search string is filled with &#8220;username.&#8221; Since we are trying to fill in the username text box, this is the one we want. Now you have to right click in the username fill field box. This time you want to select &#8220;change chosen attribute.&#8221; This allows you to tell UBot what you want the username field to be filled in with. When the parameter window pops up, you want to choose &#8220;value&#8221; because we are changing the value of the text field. So the flow will describe what you want the bot to do. It will look for the attribute, choose it and then change it to the value you selected. Do the same thing for each box you want to fill in. Remember after you “choose by attribute” you have to “change by attribute” and change the value. If you accidentally chose the wrong attribute, you can right click on the node and click edit. Sometimes you will not be able to simply drag the submit button into your script. You have to do the same thing as you did with the other fields. Right click the submit button and click choose by attribute. It may not have an ID so you have to look for something that is unique to only it (ie: something that says submit) Now you have to tell UBot to click it. To do this, right click on the button and choose &#8220;Click chosen&#8221; As soon as it clicks this button it will load the next page. Usually you will want to wait for the page to finish loading before you move on to the next command in the script. It is smart to get in the habit early on of adding in a Wait Finish Command, after the click chosen command. To do this, simply go into the Flow Commands on the left hand side and choose Wait Finish.  This allows your script to finish loading before going on to the next page. ]]></description> <content:encoded><![CDATA[<p><p><strong>Form Commands.</strong></p><p>Go to www.ubotstudios.com/Playground and choose simple form. We are  going to be working with this form so you can play with some of the  commands and gain a basic understanding of how they work.</p><p><span
id="more-236"></span></p><p>We are going to create an imaginary account. The easiest way to do this,  is to  drag the text field box you want to fill, over into your script  window. The parameter window will  pop up, and you can fill it in with the  username you want. Do this with each fill field box. Then click and drag  the submit button into your script window. Remember to check the flow.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/c844f60567count3.png.png"><img
title="SimpleAccount" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/c844f60567count3.png.png?w=300" alt="" width="300" height="262" /></a></p><p>____________</p><p>For this lesson go to ubotstudios.com/playground and click on the  difficult form link.</p><p>When you try to create an account like we did before, you will see  that when you click and drag the text field box over, the name field is  empty. If this name field is empty, it is useless.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/d3b8a4ac48tform3.png.png"><img
title="Difficultform" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/d3b8a4ac48tform3.png.png" alt="" width="159" height="184" /></a></p><p>Delete this, because we cannot use it. Right click in the text field box  and select &#8220;choose by attribute.&#8221; Find the attribute that best describes  what you are looking for. In this case it is &#8220;id.&#8221; When you click on  &#8220;id&#8221; you can see that the search string is filled with &#8220;username.&#8221; Since  we are trying to fill in the username text box, this is the one we  want.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/e601e1a04aform11.png.png"><img
title="Difficultform1" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/e601e1a04aform11.png.png?w=300" alt="" width="300" height="196" /></a></p><p>Now you have to right click in the username fill field box. This time  you want to select &#8220;change chosen attribute.&#8221; This allows you to tell  UBot what you want the username field to be filled in with. When the  parameter window pops up, you want to choose &#8220;value&#8221; because we are  changing the value of the text field.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/4c28f41200form21.png.png"><img
title="Diffifultform2" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/4c28f41200form21.png.png" alt="" width="200" height="295" /></a></p><p>So the flow will describe what you want the bot to do. It will look  for the attribute, choose it and then change it to the value you  selected.</p><p>Do the same thing for each box you want to fill in. Remember after  you “choose by attribute” you have to “change by attribute” and change  the value.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/27647ee569bute_3.png.png"><img
title="ChangeAttribute_" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/27647ee569bute_3.png.png?w=300" alt="" width="300" height="261" /></a></p><p>If you accidentally chose the wrong attribute, you can right click on  the node and click edit.</p><p>Sometimes you will not be able to simply drag the submit button into  your script. You have to do the same thing as you did with the other  fields. Right click the submit button and click choose by attribute. It  may not have an ID so you have to look for something that is unique to  only it (ie: something that says submit) Now you have to tell UBot to  click it. To do this, right click on the button and choose &#8220;Click  chosen&#8221;</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/be226c6e7eubmit1.png.png"><img
title="Submit1" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/be226c6e7eubmit1.png.png" alt="" width="288" height="251" /></a></p><p>As soon as it clicks this button it will load the next page.</p><p>Usually you will want to wait for the page to finish loading before  you move on to the next command in the script. It is smart to get in the  habit early on of adding in a Wait Finish Command, after the click  chosen command. To do this, simply go into the Flow Commands on the left  hand side and choose Wait Finish.  This allows your script to finish  loading before going on to the next page.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/40f043f69dubmit4.png.png"><img
title="NoSubmit" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/40f043f69dubmit4.png.png?w=300" alt="" width="300" height="115" /></a></p></p><p><img
src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/c844f60567count3.png-150x131.png" /></p><p>More:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="UBot Studio: Account Creation">UBot Studio: Account Creation</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;desc=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;submitHeadline=UBot+Studio%3A+Account+Creation&amp;submitSummary=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/ubot-studio-account-creation/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;t=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;t=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=UBot+Studio%3A+Account+Creation+-+http://su.pr/2K2gqf+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;summary=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;h=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;bm_description=UBot+Studio%3A+Account+Creation&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=UBot+Studio%3A+Account+Creation&amp;link=http://www.ubotdevstudio.com/ubot-studio-account-creation/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=UBot+Studio%3A+Account+Creation&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2Fubot-studio-account-creation%2F&amp;desc=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;body=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;bmtitle=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;t=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;T=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;UBot+Studio%3A+Account+Creation&quot;+-+from+http://su.pr/2K2gqf" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/ubot-studio-account-creation/+&quot;UBot+Studio%3A+Account+Creation&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/ubot-studio-account-creation/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;selection=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;type=Article&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;body=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=UBot+Studio%3A+Account+Creation&amp;u=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;b=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;desc=Form%20Commands.%0AGo%20to%20www.ubotstudios.com%2FPlayground%20and%20choose%20simple%20form.%20We%20are%20%20going%20to%20be%20working%20with%20this%20form%20so%20you%20can%20play%20with%20some%20of%20the%20%20commands%20and%20gain%20a%20basic%20understanding%20of%20how%20they%20work.%0A%0A%0AWe%20are%20going%20to%20create%20an%20imaginary%20account.%20The%20easiest%20way%20to%20do%20this%2C%C2%A0%20is%20to%20%20drag%20" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=UBot+Studio%3A+Account+Creation&amp;url=http://www.ubotdevstudio.com/ubot-studio-account-creation/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-account-creation/&amp;title=UBot+Studio%3A+Account+Creation" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/ubot-studio-account-creation/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>UBot Studio: Basic Concepts</title><link>http://www.ubotdevstudio.com/ubot-studio-basic-concepts/</link> <comments>http://www.ubotdevstudio.com/ubot-studio-basic-concepts/#comments</comments> <pubDate>Thu, 19 Aug 2010 03:58:13 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[UBot News]]></category> <category><![CDATA[browser]]></category> <category><![CDATA[script]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/ubot-studio-basic-concepts/</guid> <description><![CDATA[ Basic Concepts A script - is a collection of commands placed together for a specific purpose. Some examples of scripts you can create are: a script to create an account for you on a website a script to scrape data from a different website a script to help you reach a lot of people quickly on popular websites. You can work on multiple scripts at the same time. To create a new script, click on the new script button at the top. Each tab is a different script. Each script can have a different set of commands that you want UBot to follow. A bot- is the entire system that you are creating. A bot is your finished script of commands that you want UBot to perform. The browser in UBot , is basically a miniature version of internet explorer. It functions like a normal web browser but with advanced functions that let you interface it with UBot. If you right click on the web browser page, a context menu will pop up. Based on what you choose within that menu, it will gather information from the page. More of how the UBot browser works will be explained throughout the tutorials. Types of Nodes – A node is like a word in a sentence. It can tell UBot to do something or it can modify the way another node tells UBot to do something. There are: command nodes, text nodes, constant nodes, variable nodes, list nodes, table nodes. A Node is basically every little command box inside the bot. One way to get nodes into the script window is to simply drag the commands from the toolbar on the left into the script. Two- you can right click in the script window (where it says drag and drop commands here) and a menu will appear with all of the nodes available in the left hand toolbox. Three- is to simply start typing in the command you need into the script window. Click where it says “drag commands here” and start typing. A search toolbox will pop up and show the list of commands to choose from. It will find any command that starts with the letters you have typed. Double click on the command you are looking for. A fourth way is to right click within the browser. Some commands can interact with the browser. A fifth way is you can click and drag a link from the page into the script window. This will create a command for you. Based on the element that you are dragging into the script window, UBot will decide what it thinks you want to do. By dragging the simple form link into the script window, UBot will know that you want to click that link. A Parameter is a certain type of node. These explain something to another node, and they tell other nodes what to do/how to do their job. It can be given to a command, or it can be given to another parameter. String parameters- dark red, a string of text constant parameter- giving you some piece of information. $green Variable parameter- #purple, holds a value- you can change it, it is flexible list parameter- %salmon color. A collection of data, a collection of variables. EX: If you want to create a navigate command. Drag the navigate command into your script window; a parameter window will pop up.  This window sets what the parameters will be for this specific node.  Navigate is a command node, the navigation node contains two parameter nodes. Flow- describes the order in which things execute. If you are having trouble with something in UBot or your script and you can’t figure it out, usually it has something to do with the flow. So be sure to always look at the flow. $Constants - Are things that give you the information that you need. It gives you a randomly generated piece of information, ie. a username or password. #Variables- Hold some kind of value. You can tell it what to be, it is flexible and you can change the value. #Variables are kind of like a note card. You can write on it with a pencil, erase it and write something else. It’s like a little nugget of information that you can change whenever you want to. Set Command - sets a variable to a given value. The set command is under the Variable commands on the left hand side. Drag the set command into the script. Name the variable anything you’d like. Then enter the content you want it to say. Drag the username box over into the script window. Where it says enter text, chose insert variable. Then chose the #variable that you just created. Then it will fill the username box in with what content you entered. You can edit the content of the variable. By right clicking on the content node and going to insert, and then insert string. This will change the value of the variable. These are just a few of the basic concepts in UBot Studios, we will get into more detail of how everything works in later tutorials. ]]></description> <content:encoded><![CDATA[<p><p><strong>Basic Concepts</strong></p><p><strong>A script</strong>-  is a collection of commands placed together for a specific purpose.  Some examples of scripts you can create are:</p><p><span
id="more-228"></span></p><ul><li>a script to create an account for you on a website</li><li>a script to scrape data from a different website</li><li>a script to help you reach a lot of people quickly on popular  websites.</li></ul><p>You can work on multiple scripts at the same time. To create a new  script, click on the new script button at the top. Each tab is a  different script. Each script can have a different set of commands that  you want UBot to follow.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/867f3bde5ccript5.png.png"><img
title="New_Script" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/867f3bde5ccript5.png.png?w=241&#038;h=300" alt="" width="241" height="300" /></a></p><p><strong>A bot-</strong> is the entire system that you are creating. A bot is your finished  script of commands that you want UBot to perform.</p><p><strong>The browser in UBot</strong>,  is basically a miniature version of internet explorer. It functions  like a normal web browser but with advanced functions that let you  interface it with UBot. If you right click on the web browser page, a  context menu will pop up. Based on what you choose within that menu, it  will gather information from the page. More of how the UBot browser  works will be explained throughout the tutorials.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/5bf0f936e6rowser.png.png"><img
title="Browser" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/5bf0f936e6rowser.png.png?w=300&#038;h=191" alt="" width="300" height="191" /></a></p><p><strong>Types of Nodes</strong> – A node is like a word in a  sentence. It can tell UBot to do something or it can modify the way  another node tells UBot to do something. There are: command nodes, text  nodes, constant nodes, variable nodes, list nodes, table nodes. A Node  is basically every little command box inside the bot.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/d82cffda42nodes3.png.png"><img
title="RecapNodes" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/d82cffda42nodes3.png.png?w=179&#038;h=300" alt="" width="179" height="300" /></a></p><p><strong>One </strong>way to get nodes into the script window is to   simply drag the commands from the toolbar on the left into the script.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/ba87cfc64dnode16.png.png"><img
title="NavNode1" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/ba87cfc64dnode16.png.png?w=300&#038;h=196" alt="" width="300" height="196" /></a></p><p><strong>Two-</strong> you can right click in the script window (where  it says  drag and drop commands here) and a menu will appear with all  of the  nodes available in the left hand toolbox.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/ee210dd534ndnode.png.png"><img
title="2ndNode" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/ee210dd534ndnode.png.png?w=300&#038;h=298" alt="" width="300" height="298" /></a></p><p><strong>Three-</strong> is to simply start typing in the command you  need into the script  window. Click where it says “drag commands here”  and start typing. A search toolbox will pop up and show the list of  commands to choose from. It  will find any command that starts with the  letters you have typed.  Double click on the command you are looking  for.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/e69284d9a5vnode4.png.png"><img
title="3NavNode" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/e69284d9a5vnode4.png.png?w=300&#038;h=128" alt="" width="300" height="128" /></a></p><p>A <strong>fourth </strong>way is  to right click within the browser.  Some commands can interact with the  browser.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/4077ee29ffthnode.png.png"><img
title="4thNode" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/4077ee29ffthnode.png.png?w=260&#038;h=300" alt="" width="260" height="300" /></a></p><p>A<strong> fifth </strong>way is you can click and drag a  link from  the page into the script window. This will create a  command for you.  Based on the element that you are dragging into the  script window, UBot  will decide what it thinks you want to do. By dragging the simple form  link into the script window, UBot will know that you want to click that  link.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/fdc6cb18c6vnode3.png.png"><img
title="5NavNode" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/fdc6cb18c6vnode3.png.png?w=300&#038;h=140" alt="" width="300" height="140" /></a></p><p><strong>A Parameter </strong>is a certain type of node. These explain  something to another node, and they tell other nodes what to do/how to  do their job. It can be given to a command, or it can be given to  another parameter.</p><ul><li><span>String parameters- dark red, a  string of text</span></li><li><span>constant parameter- giving you  some piece      of information. $green</span></li><li><span>Variable parameter- #purple,  holds a      value- you can change it, it is flexible</span></li><li><span>list parameter- %salmon  color. A      collection of data, a collection of variables.</span></li></ul><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/320e5987d0mples1.png.png"><img
title="Parameter_examples" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/320e5987d0mples1.png.png?w=225&#038;h=300" alt="" width="225" height="300" /></a></p><p>EX: If you want to create a navigate command. Drag the navigate  command into your script window; a parameter window will pop up.  This  window sets what the parameters will be for this specific node.   Navigate is a command node, the navigation node contains two parameter  nodes.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/18b1cb0c1bnode14.png.png"><img
title="NavNode1" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/18b1cb0c1bnode14.png.png?w=300&#038;h=196" alt="" width="300" height="196" /></a><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/bf144c856fvnode7.png.png"><img
title="NavNode" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/bf144c856fvnode7.png.png?w=300&#038;h=126" alt="" width="300" height="126" /></a></p><p><strong>Flow- </strong>describes the order in which things execute.  If you are having trouble with something in UBot or your script and you  can’t figure it out, usually it has something to do with the flow. So be  sure to always look at the flow.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/495e673f9cflow13.png.png"><img
title="Flow" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/495e673f9cflow13.png.png?w=300&#038;h=211" alt="" width="300" height="211" /></a></p><p><strong><span>$Constants</span>- </strong>Are  things that give you the information that you need. It gives you a  randomly generated piece of information, ie. a username or password.</p><p><strong> <a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/29866bab38stants.png.png"><img
title="Constants" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/29866bab38stants.png.png?w=300&#038;h=284" alt="" width="300" height="284" /></a><br
/> </strong></p><p><strong><span>#Variables-</span> </strong>Hold  some kind of value. You can tell it what to be, it is flexible and you  can change the value. #Variables  are kind of like a note card. You can write on it with a pencil, erase  it and write something else. It’s like a little nugget of information  that you can change whenever you want to.</p><p><strong>Set Command</strong>- sets a variable to a given value. The  set command is under the Variable commands on the left hand side. Drag  the set command into the script. Name the variable anything you’d like.  Then enter the content you want it to say. Drag the username box over  into the script window. Where it says enter text, chose insert variable.  Then chose the #variable  that you just created. Then it will fill the username box in with what  content you entered.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/e88ffe4829ommand.png.png"><img
title="SetCommand" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/e88ffe4829ommand.png.png?w=300&#038;h=290" alt="" width="300" height="290" /></a></p><p>You can edit the content of the variable. By right clicking on the  content node and going to insert, and then insert string. This will  change the value of the variable.</p><p><a
href="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/5b96b1d294string.png.png"><img
title="EditString" src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/5b96b1d294string.png.png?w=300&#038;h=215" alt="" width="300" height="215" /></a></p><p>These are just a few of the basic concepts in UBot Studios, we will get into more  detail of how everything works in later tutorials.</p></p><p><img
src="http://www.ubotdevstudio.com/wp-content/uploads/2010/08/867f3bde5ccript5.png-120x150.png" /></p><p>Follow this link:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="UBot Studio: Basic Concepts">UBot Studio: Basic Concepts</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;desc=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;submitHeadline=UBot+Studio%3A+Basic+Concepts&amp;submitSummary=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;t=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;t=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=UBot+Studio%3A+Basic+Concepts+-+http://su.pr/5RQURr+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;summary=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;h=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;bm_description=UBot+Studio%3A+Basic+Concepts&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=UBot+Studio%3A+Basic+Concepts&amp;link=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=UBot+Studio%3A+Basic+Concepts&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2Fubot-studio-basic-concepts%2F&amp;desc=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;body=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;bmtitle=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;t=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;T=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;UBot+Studio%3A+Basic+Concepts&quot;+-+from+http://su.pr/5RQURr" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/ubot-studio-basic-concepts/+&quot;UBot+Studio%3A+Basic+Concepts&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;selection=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;type=Article&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;body=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=UBot+Studio%3A+Basic+Concepts&amp;u=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;b=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;desc=Basic%20Concepts%0AA%20script-%20%20is%20a%20collection%20of%20commands%20placed%20together%20for%20a%20specific%20purpose.%20%20Some%20examples%20of%20scripts%20you%20can%20create%20are%3A%0A%0A%0A%0Aa%20script%20to%20create%20an%20account%20for%20you%20on%20a%20website%0Aa%20script%20to%20scrape%20data%20from%20a%20different%20website%0Aa%20script%20to%20help%20you%20reach%20a%20lot%20of%20people%20quickly%20on%20pop" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=UBot+Studio%3A+Basic+Concepts&amp;url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-basic-concepts/&amp;title=UBot+Studio%3A+Basic+Concepts" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/ubot-studio-basic-concepts/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>UBot Studio 3.3 Beta Release x63</title><link>http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/</link> <comments>http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/#comments</comments> <pubDate>Mon, 12 Apr 2010 18:33:46 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[release]]></category> <category><![CDATA[release-version]]></category> <category><![CDATA[ubot]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/</guid> <description><![CDATA[ Hey &#8212; we have fixed the following bugs in the UBot Studio 3.3 &#8211; Beta Release Version x63. Thanks being involved in the private beta and look forward to your continued feedback. We are hoping this to be the final beta release before we roll-out the UBot Studio 3.3 Release Candidate 1 on the public update system. fixed: create compilation system (not yet implemented into system) fixed: edit will fail on the wrong type of parameter fixed: ctrl-v pastes over blank space command fixed: run sub parameter window has a blank space fixed: error when loading bots Please note that the old bug threads are now void and have been closed. If you find that a problem is still there, please report it again as a new thread. Download Instructions : Please download the new file from the same link as it was given to you initially. The URL for download is http://ubot.me/beta-3.3/ and the access credentials are the same as before. You are advised to delete the old beta version from your hard-disk and use the Beta Release Version x63 for testing. ]]></description> <content:encoded><![CDATA[<p><p>Hey &#8212; we have fixed the following bugs in the UBot Studio 3.3 &#8211; Beta Release Version x63. Thanks being involved in the private beta and look forward to your continued feedback. <strong>We are hoping this to be the final beta release before we roll-out the UBot Studio 3.3 Release Candidate 1 on the public update system.</strong></p><p><span
id="more-208"></span></p><blockquote><p>fixed: create compilation system (not yet implemented into system)</p><p>fixed: edit will fail on the wrong type of parameter</p><p>fixed: ctrl-v pastes over blank space command</p><p>fixed: run sub parameter window has a blank space</p><p>fixed: error when loading bots</p></blockquote><p>Please note that the old bug threads are now void and have been closed. If you find that a problem is still there, please report it again as a new thread.</p><p><strong>Download Instructions</strong>: Please download the new file from the same link as it was given to you initially. The URL for download is http://ubot.me/beta-3.3/ and the access credentials are the same as before.</p><p>You are advised to delete the old beta version from your hard-disk and use the Beta Release Version x63 for testing.</p></p><p>Link:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="UBot Studio 3.3 Beta Release x63">UBot Studio 3.3 Beta Release x63</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;desc=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;submitHeadline=UBot+Studio+3.3+Beta+Release+x63&amp;submitSummary=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;t=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;t=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=UBot+Studio+3.3+Beta+Release+x63+-+http://su.pr/AdPJFt+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;summary=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;h=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;bm_description=UBot+Studio+3.3+Beta+Release+x63&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=UBot+Studio+3.3+Beta+Release+x63&amp;link=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=UBot+Studio+3.3+Beta+Release+x63&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2Fubot-studio-3-3-beta-release-x63%2F&amp;desc=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;body=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;bmtitle=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;t=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;T=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;UBot+Studio+3.3+Beta+Release+x63&quot;+-+from+http://su.pr/AdPJFt" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/+&quot;UBot+Studio+3.3+Beta+Release+x63&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;selection=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;type=Article&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;body=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=UBot+Studio+3.3+Beta+Release+x63&amp;u=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;b=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;desc=Hey%20%26%238212%3B%20we%20have%20fixed%20the%20following%20bugs%20in%20the%20UBot%20Studio%203.3%20%26%238211%3B%20Beta%20Release%20Version%20x63.%20Thanks%20being%20involved%20in%20the%20private%20beta%20and%20look%20forward%20to%20your%20continued%20feedback.%20We%20are%20hoping%20this%20to%20be%20the%20final%20beta%20release%20before%20we%20roll-out%20the%20UBot%20Studio%203.3%20Release%20Candidate%201%20on%20t" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=UBot+Studio+3.3+Beta+Release+x63&amp;url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/&amp;title=UBot+Studio+3.3+Beta+Release+x63" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/ubot-studio-3-3-beta-release-x63/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Finally! UBot Studio 3.3 Beta is here!</title><link>http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/</link> <comments>http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/#comments</comments> <pubDate>Sun, 04 Apr 2010 00:53:13 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[capital-letters]]></category> <category><![CDATA[quick-overview]]></category> <category><![CDATA[video]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/</guid> <description><![CDATA[ After weeks of development, UBot 3.3 is finally ready. This version completely changes the workflow of UBot Studio in a way that makes it many times faster and more efficient. Here are some videos that provide a quick overview of the new version Video 1 Video 2 A few things I forgot to mention in the video: parameters now have labels the script window is animated smoothly if you are dragging something to the edge of the window, it will scroll automatically send keys chosen field now does capital letters correctly a ton of other little changes here and there If you signed up to receive this limited beta release, then Lord Brar will contact you shortly with instructions on how to download it. ]]></description> <content:encoded><![CDATA[<p><p>After weeks of development, UBot 3.3 is finally ready. This version completely changes the workflow of UBot Studio in a way that makes it many times faster and more efficient.</p><p><span
id="more-207"></span></p><p>Here are some videos that provide a quick overview of the new version</p><p><a
href="http://screencast.com/t/ZTUzYmNmMWQ">Video 1</a><br
/> <a
href="http://screencast.com/t/ZTUzYmNmMWQ">Video 2</a></p><p>A few things I forgot to mention in the video:</p><ul><li>parameters now have labels</li><li>the script window is animated smoothly</li><li>if you are dragging something to the edge of the window, it will scroll automatically</li><li>send keys chosen field now does capital letters correctly</li><li>a ton of other little changes here and there</li></ul><p>If you signed up to receive this limited beta release, then Lord Brar will contact you shortly with instructions on how to download it.</p></p><p>Read the original:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="Finally! UBot Studio 3.3 Beta is here!">Finally! UBot Studio 3.3 Beta is here!</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;desc=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;submitHeadline=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;submitSummary=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;t=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;t=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=Finally%21+UBot+Studio+3.3+Beta+is+here%21+-+http://su.pr/2MGlMA+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;summary=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;h=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;bm_description=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;link=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2Ffinally-ubot-studio-3-3-beta-is-here%2F&amp;desc=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;body=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;bmtitle=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;t=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;T=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Finally%21+UBot+Studio+3.3+Beta+is+here%21&quot;+-+from+http://su.pr/2MGlMA" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/+&quot;Finally%21+UBot+Studio+3.3+Beta+is+here%21&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;selection=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;type=Article&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;body=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;u=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;b=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;desc=After%20weeks%20of%20development%2C%20UBot%203.3%20is%20finally%20ready.%20This%20version%20completely%20changes%20the%20workflow%20of%20UBot%20Studio%20in%20a%20way%20that%20makes%20it%20many%20times%20faster%20and%20more%20efficient.%0A%0A%0AHere%20are%20some%20videos%20that%20provide%20a%20quick%20overview%20of%20the%20new%20version%0AVideo%201%0AVideo%202%0AA%20few%20things%20I%20forgot%20to%20mention%20in%20" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=Finally%21+UBot+Studio+3.3+Beta+is+here%21&amp;url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/&amp;title=Finally%21+UBot+Studio+3.3+Beta+is+here%21" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/finally-ubot-studio-3-3-beta-is-here/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>3.15 – The New Update System</title><link>http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/</link> <comments>http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/#comments</comments> <pubDate>Thu, 25 Feb 2010 12:58:27 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[opinion]]></category> <category><![CDATA[power]]></category> <category><![CDATA[time]]></category> <category><![CDATA[updates]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/</guid> <description><![CDATA[ We appreciate everyone&#8217;s patience with the updates to UBot. We&#8217;ve now implemented a more intelligent system, and once you update to this latest version, all subsequent versions will use the new system. A few things to point out here: First of all, you will now have the choice of whether or not you want to update. There is a possibility of mandatory update, for instance if there are major security concerns, but 99% of the time, the updates will be entirely voluntary. When you see an update prompt, it will now give you a message about what is in the new update. This gives you the opportunity to look through exactly what features have changed, to let you make a more qualified decision. There are now 3 types of updates: STABLE, BETA, and MANDATORY. As I stated previously, the mandatory updates will be used sparingly, and only when there is a major security concern or a fundamental system change. A beta release will be made any time we add or change a feature. While we always test things before releasing them, there are many contexts in which UBot is used and sometimes bugs can slip through the cracks. Beta releases will give our power users a chance to try new features and find bugs while casual users can simply wait for the stable releases. A stable release is, as it sounds, a release that has been tested and (hopefully) has no bugs in any new or changed features. We hope that this change will take some of the edge off of the frequent releases, while still allowing us to provide an ever-evolving platform for growing the power of UBot. Let us know your opinion! ]]></description> <content:encoded><![CDATA[<p><p>We appreciate everyone&#8217;s patience with the updates to UBot. We&#8217;ve now implemented a more intelligent system, and once you update to this latest version, all subsequent versions will use the new system. A few things to point out here:</p><p><span
id="more-206"></span></p><p>First of all, you will now have the choice of whether or not you want to update. There is a possibility of mandatory update, for instance if there are major security concerns, but 99% of the time, the updates will be entirely voluntary.</p><p>When you see an update prompt, it will now give you a message about what is in the new update. This gives you the opportunity to look through exactly what features have changed, to let you make a more qualified decision.</p><p>There are now 3 types of updates: STABLE, BETA, and MANDATORY. As I stated previously, the mandatory updates will be used sparingly, and only when there is a major security concern or a fundamental system change. A beta release will be made any time we add or change a feature. While we always test things before releasing them, there are many contexts in which UBot is used and sometimes bugs can slip through the cracks. Beta releases will give our power users a chance to try new features and find bugs while casual users can simply wait for the stable releases. A stable release is, as it sounds, a release that has been tested and (hopefully) has no bugs in any new or changed features.</p><p>We hope that this change will take some of the edge off of the frequent releases, while still allowing us to provide an ever-evolving platform for growing the power of UBot. Let us know your opinion!</p></p><p>Read this article:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="3.15 – The New Update System">3.15 – The New Update System</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;desc=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;submitHeadline=3.15+%E2%80%93+The+New+Update+System&amp;submitSummary=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;t=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;t=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=3.15+%E2%80%93+The+New+Update+System+-+http://su.pr/1iKzEw+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;summary=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;h=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;bm_description=3.15+%E2%80%93+The+New+Update+System&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=3.15+%E2%80%93+The+New+Update+System&amp;link=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=3.15+%E2%80%93+The+New+Update+System&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2F3-15-%25e2%2580%2593-the-new-update-system%2F&amp;desc=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;body=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;bmtitle=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;t=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;T=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;3.15+%E2%80%93+The+New+Update+System&quot;+-+from+http://su.pr/1iKzEw" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/+&quot;3.15+%E2%80%93+The+New+Update+System&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;selection=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;type=Article&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;body=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=3.15+%E2%80%93+The+New+Update+System&amp;u=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;b=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;desc=We%20appreciate%20everyone%26%238217%3Bs%20patience%20with%20the%20updates%20to%20UBot.%20We%26%238217%3Bve%20now%20implemented%20a%20more%20intelligent%20system%2C%20and%20once%20you%20update%20to%20this%20latest%20version%2C%20all%20subsequent%20versions%20will%20use%20the%20new%20system.%20A%20few%20things%20to%20point%20out%20here%3A%0A%0A%0AFirst%20of%20all%2C%20you%20will%20now%20have%20the%20choice%20of%20whethe" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=3.15+%E2%80%93+The+New+Update+System&amp;url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/&amp;title=3.15+%E2%80%93+The+New+Update+System" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/3-15-%e2%80%93-the-new-update-system/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>3.14 – timeouts on wait commands</title><link>http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/</link> <comments>http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/#comments</comments> <pubDate>Tue, 23 Feb 2010 13:35:17 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[requests]]></category> <category><![CDATA[timeout-option]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/</guid> <description><![CDATA[ this one was added purely at the requests of a number of users. from now on, when you use a wait finish or wait for command, you&#8217;ll have a timeout option, which will allow you to force the script to continue if the command hangs for too long. you will specify the timeout in seconds. enjoy! ]]></description> <content:encoded><![CDATA[<p><p>this one was added purely at the requests of a number of users. from now on, when you use a wait finish or wait for command, you&#8217;ll have a timeout option, which will allow you to force the script to continue if the command hangs for too long. you will specify the timeout in seconds.</p><p><span
id="more-204"></span></p><p>enjoy!</p></p><p>Continue reading here:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="3.14 – timeouts on wait commands">3.14 – timeouts on wait commands</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;desc=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;submitHeadline=3.14+%E2%80%93+timeouts+on+wait+commands&amp;submitSummary=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;t=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;t=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=3.14+%E2%80%93+timeouts+on+wait+commands+-+http://su.pr/1iKzEw+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;summary=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;h=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;bm_description=3.14+%E2%80%93+timeouts+on+wait+commands&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;link=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2F3-14-%25e2%2580%2593-timeouts-on-wait-commands%2F&amp;desc=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;body=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;bmtitle=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;t=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;T=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;3.14+%E2%80%93+timeouts+on+wait+commands&quot;+-+from+http://su.pr/1iKzEw" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/+&quot;3.14+%E2%80%93+timeouts+on+wait+commands&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;selection=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;type=Article&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;body=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=3.14+%E2%80%93+timeouts+on+wait+commands&amp;u=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;b=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;desc=this%20one%20was%20added%20purely%20at%20the%20requests%20of%20a%20number%20of%20users.%20from%20now%20on%2C%20when%20you%20use%20a%20wait%20finish%20or%20wait%20for%20command%2C%20you%26%238217%3Bll%20have%20a%20timeout%20option%2C%20which%20will%20allow%20you%20to%20force%20the%20script%20to%20continue%20if%20the%20command%20hangs%20for%20too%20long.%20you%20will%20specify%20the%20timeout%20in%20seconds.%0A%0A%0Aenjoy%21%0D%0A" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=3.14+%E2%80%93+timeouts+on+wait+commands&amp;url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/&amp;title=3.14+%E2%80%93+timeouts+on+wait+commands" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/3-14-%e2%80%93-timeouts-on-wait-commands/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Would You Buy UBot Studio Again?</title><link>http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/</link> <comments>http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/#comments</comments> <pubDate>Tue, 23 Feb 2010 11:35:30 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[article]]></category> <category><![CDATA[backlink]]></category> <category><![CDATA[bags]]></category> <category><![CDATA[price]]></category> <category><![CDATA[source]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/</guid> <description><![CDATA[ Hey Guys &#8212; as I was packing off my bags for CeBIT Germany, I got this email with a link to a pretty interesting thread someone started on a Forum titled &#8220;Would You Buy UBot Again?&#8221; Obviously this thread aroused my curiosity and on clicking it I was very pleased to find what jesdon2 had posted there. I bought the program a few days ago and absolutely love it! I have outsourced the creation of several programs in the past and had a whole list of others that I wanted done. I also outsource a lot of seo work and have already managed to cut down on my costs by creating a bot that did a few of general seo tasks for me on the fly. Now, I am working on a backlink indexing program to speed up the indexing process for incoming backlinks. I do not know anything about programming, but have managed to create several new bots just in the last few days of owning this. For instance, one bot I am working on takes a list of backlinks, goes to the page and grabs the meta data, then loads the url in page2rss and converts the page to rss, grabs the new rss feed and blasts it to several rss directories, then pings the original url and then uses that meta data to make a post to a ping.fm account which sends it to several social bookmarking sites etc. I hope to also add a function that would allow the bot to scrape a random article from ezinearticles and post it to a wordpress/blogger blog with the backlink in the article, thus in turn pinging the newly posted article and getting the backlink both &#8220;juice&#8221; and faster indexing. Needless to say, I would buy it again. Its my new favorite toy and well worth the price tag. The reality is that they could probably get the $200 monthly instead of one time, thank god they don&#8217;t though. Thanks for the nice words mate. =) As for the bot for posting articles from ezinearticles to wordpress, there is already one which Aaron made and released. Check it out on the forums &#8212; download the source code and modify it as per your requirements. Only with UBot Studio! ]]></description> <content:encoded><![CDATA[<p><p>Hey Guys &#8212; as I was packing off my bags for CeBIT Germany, I got this email with a link to a pretty interesting thread someone started on a Forum titled &#8220;Would You Buy UBot Again?&#8221;</p><p><span
id="more-203"></span></p><p>Obviously this thread aroused my curiosity and on clicking it I was very pleased to find what jesdon2 had posted there.</p><blockquote><p>I bought the program a few days ago and absolutely love it! I have outsourced the creation of several programs in the past and had a whole list of others that I wanted done.</p><p>I also outsource a lot of seo work and have already managed to cut down on my costs by creating a bot that did a few of general seo tasks for me on the fly. Now, I am working on a backlink indexing program to speed up the indexing process for incoming backlinks.</p><p><strong>I do not know anything about programming, but have managed to create several new bots just in the last few days of owning this.</strong> For instance, one bot I am working on takes a list of backlinks, goes to the page and grabs the meta data, then loads the url in page2rss and converts the page to rss, grabs the new rss feed and blasts it to several rss directories, then pings the original url and then uses that meta data to make a post to a ping.fm account which sends it to several social bookmarking sites etc.</p><p>I hope to also add a function that would allow the bot to scrape a random article from ezinearticles and post it to a wordpress/blogger blog with the backlink in the article, thus in turn pinging the newly posted article and getting the backlink both &#8220;juice&#8221; and faster indexing.</p><p><strong>Needless to say, I would buy it again. Its my new favorite toy and well worth the price tag. The reality is that they could probably get the $200 monthly instead of one time, thank god they don&#8217;t though.</strong></p></blockquote><p>Thanks for the nice words mate. =)</p><p>As for the bot for posting articles from ezinearticles to wordpress, there is already one which Aaron made and released. Check it out on the forums &#8212; download the source code and modify it as per your requirements. Only with UBot Studio!</p></p><p>See the original post:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="Would You Buy UBot Studio Again?">Would You Buy UBot Studio Again?</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;desc=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;submitHeadline=Would+You+Buy+UBot+Studio+Again%3F&amp;submitSummary=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;t=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;t=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=Would+You+Buy+UBot+Studio+Again%3F+-+http://su.pr/306mDF+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;summary=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;h=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;bm_description=Would+You+Buy+UBot+Studio+Again%3F&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=Would+You+Buy+UBot+Studio+Again%3F&amp;link=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=Would+You+Buy+UBot+Studio+Again%3F&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2Fwould-you-buy-ubot-studio-again%2F&amp;desc=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;body=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;bmtitle=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;t=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;T=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Would+You+Buy+UBot+Studio+Again%3F&quot;+-+from+http://su.pr/306mDF" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/+&quot;Would+You+Buy+UBot+Studio+Again%3F&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;selection=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;type=Article&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;body=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=Would+You+Buy+UBot+Studio+Again%3F&amp;u=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;b=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;desc=Hey%20Guys%20%26%238212%3B%20as%20I%20was%20packing%20off%20my%20bags%20for%20CeBIT%20Germany%2C%20I%20got%20this%20email%20with%20a%20link%20to%20a%20pretty%20interesting%20thread%20someone%20started%20on%20a%20Forum%20titled%20%26%238220%3BWould%20You%20Buy%20UBot%20Again%3F%26%238221%3B%0A%0A%0AObviously%20this%20thread%20aroused%20my%20curiosity%20and%20on%20clicking%20it%20I%20was%20very%20pleased%20to%20find%20what%20jesdo" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=Would+You+Buy+UBot+Studio+Again%3F&amp;url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/&amp;title=Would+You+Buy+UBot+Studio+Again%3F" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/would-you-buy-ubot-studio-again/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>3.124 – In Sub Window</title><link>http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/</link> <comments>http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/#comments</comments> <pubDate>Mon, 15 Feb 2010 13:07:28 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[autosave]]></category> <category><![CDATA[find-it-under]]></category> <category><![CDATA[opportunity]]></category> <category><![CDATA[the-opportunity]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/</guid> <description><![CDATA[ The latest ubot update brings with it a wonderful new command: &#8220;in sub window&#8221;. You can find it under the flow menu. It is a container command, and what makes it special, is that any commands you put inside it will run inside a different window with a different webbrowser than your main ubot webbrowser. As I pointed out in my last blog post, this opens us up to the opportunity to create our own captcha service scripts. It also enables us to do many other things &#8211; pretty much anything you need to do but that you don&#8217;t want to leave the current page for. This update also contains some upgrades to the autosave system. ]]></description> <content:encoded><![CDATA[<p><p>The latest ubot update brings with it a wonderful new command: &#8220;in sub window&#8221;. You can find it under the flow menu. It is a container command, and what makes it special, is that any commands you put inside it will run inside a different window with a different webbrowser than your main ubot webbrowser. As I pointed out in my last blog post, this opens us up to the opportunity to create our own captcha service scripts. It also enables us to do many other things &#8211; pretty much anything you need to do but that you don&#8217;t want to leave the current page for.</p><p><span
id="more-201"></span></p><p>This update also contains some upgrades to the autosave system.</p></p><p>Read the original:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="3.124 – In Sub Window">3.124 – In Sub Window</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;desc=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;submitHeadline=3.124+%E2%80%93+In+Sub+Window&amp;submitSummary=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;t=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;t=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=3.124+%E2%80%93+In+Sub+Window+-+http://su.pr/1iKzEw+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;summary=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;h=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;bm_description=3.124+%E2%80%93+In+Sub+Window&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=3.124+%E2%80%93+In+Sub+Window&amp;link=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=3.124+%E2%80%93+In+Sub+Window&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2F3-124-%25e2%2580%2593-in-sub-window%2F&amp;desc=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;body=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;bmtitle=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;t=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;T=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;3.124+%E2%80%93+In+Sub+Window&quot;+-+from+http://su.pr/1iKzEw" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/+&quot;3.124+%E2%80%93+In+Sub+Window&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;selection=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;type=Article&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;body=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=3.124+%E2%80%93+In+Sub+Window&amp;u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;b=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;desc=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=3.124+%E2%80%93+In+Sub+Window&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>3.124 – In Sub Window</title><link>http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/</link> <comments>http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/#comments</comments> <pubDate>Mon, 15 Feb 2010 13:07:28 +0000</pubDate> <dc:creator>admin</dc:creator> <category><![CDATA[UBot News]]></category> <category><![CDATA[autosave]]></category> <category><![CDATA[find-it-under]]></category> <category><![CDATA[the-opportunity]]></category><guid
isPermaLink="false">http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/</guid> <description><![CDATA[ The latest ubot update brings with it a wonderful new command: &#8220;in sub window&#8221;. You can find it under the flow menu. It is a container command, and what makes it special, is that any commands you put inside it will run inside a different window with a different webbrowser than your main ubot webbrowser. As I pointed out in my last blog post, this opens us up to the opportunity to create our own captcha service scripts. It also enables us to do many other things &#8211; pretty much anything you need to do but that you don&#8217;t want to leave the current page for. This update also contains some upgrades to the autosave system. ]]></description> <content:encoded><![CDATA[<p><p>The latest ubot update brings with it a wonderful new command: &#8220;in sub window&#8221;. You can find it under the flow menu. It is a container command, and what makes it special, is that any commands you put inside it will run inside a different window with a different webbrowser than your main ubot webbrowser. As I pointed out in my last blog post, this opens us up to the opportunity to create our own captcha service scripts. It also enables us to do many other things &#8211; pretty much anything you need to do but that you don&#8217;t want to leave the current page for.</p><p><span
id="more-202"></span></p><p>This update also contains some upgrades to the autosave system.</p></p><p>The rest is here:<br
/> <a
target="_blank" href="http://www.botsoftware.org/idevaffiliate/idevaffiliate.php?id=133" title="3.124 – In Sub Window">3.124 – In Sub Window</a></p><div
class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-sexy"><ul
class="socials"><li
class="sexy-scriptstyle"> <a
href="http://scriptandstyle.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a></li><li
class="sexy-delicious"> <a
href="http://del.icio.us/post?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a></li><li
class="sexy-digg"> <a
href="http://digg.com/submit?phase=2&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Digg this!">Digg this!</a></li><li
class="sexy-diigo"> <a
href="http://www.diigo.com/post?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;desc=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a></li><li
class="sexy-reddit"> <a
href="http://reddit.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a></li><li
class="sexy-yahoobuzz"> <a
href="http://buzz.yahoo.com/submit/?submitUrl=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;submitHeadline=3.124+%E2%80%93+In+Sub+Window&amp;submitSummary=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a></li><li
class="sexy-stumbleupon"> <a
href="http://www.stumbleupon.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li
class="sexy-technorati"> <a
href="http://technorati.com/faves?add=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a></li><li
class="sexy-myspace"> <a
href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;t=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a></li><li
class="sexy-facebook"> <a
href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;t=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a></li><li
class="sexy-twitter"> <a
href="http://twitter.com/home?status=3.124+%E2%80%93+In+Sub+Window+-+http://su.pr/1iKzEw+(via+@UbotDevStudio)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a></li><li
class="sexy-linkedin"> <a
href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;summary=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20&amp;source=UBot DevStudio" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a></li><li
class="sexy-newsvine"> <a
href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;h=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a></li><li
class="sexy-google"> <a
href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a></li><li
class="sexy-misterwong"> <a
href="http://www.mister-wong.com/addurl/?bm_url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;bm_description=3.124+%E2%80%93+In+Sub+Window&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a></li><li
class="sexy-tipd"> <a
href="http://tipd.com/submit.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a></li><li
class="sexy-friendfeed"> <a
href="http://www.friendfeed.com/share?title=3.124+%E2%80%93+In+Sub+Window&amp;link=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a></li><li
class="sexy-blogmarks"> <a
href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a></li><li
class="sexy-twittley"> <a
href="http://twittley.com/submit/?title=3.124+%E2%80%93+In+Sub+Window&amp;url=http%3A%2F%2Fwww.ubotdevstudio.com%2F3-124-%25e2%2580%2593-in-sub-window%2F&amp;desc=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a></li><li
class="sexy-fwisp"> <a
href="http://fwisp.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a></li><li
class="sexy-designmoo"> <a
href="http://designmoo.com/submit?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;body=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a></li><li
class="sexy-bobrdobr"> <a
href="http://bobrdobr.ru/addext.html?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a></li><li
class="sexy-100zakladok"> <a
href="http://www.100zakladok.ru/save/?bmurl=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;bmtitle=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a></li><li
class="sexy-moemesto"> <a
href="http://moemesto.ru/post.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a></li><li
class="sexy-hackernews"> <a
href="http://news.ycombinator.com/submitlink?u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;t=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a></li><li
class="sexy-ning"> <a
href="http://bookmarks.ning.com/addItem.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;T=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a></li><li
class="sexy-identica"> <a
href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;3.124+%E2%80%93+In+Sub+Window&quot;+-+from+http://su.pr/1iKzEw" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a></li><li
class="sexy-xerpi"> <a
href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a></li><li
class="sexy-wikio"> <a
href="http://www.wikio.com/sharethis?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a></li><li
class="sexy-techmeme"> <a
href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/+&quot;3.124+%E2%80%93+In+Sub+Window&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a></li><li
class="sexy-sphinn"> <a
href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a></li><li
class="sexy-posterous"> <a
href="http://posterous.com/share?linkto=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;selection=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a></li><li
class="sexy-globalgrind"> <a
href="http://globalgrind.com/submission/submit.aspx?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;type=Article&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a></li><li
class="sexy-pingfm"> <a
href="http://ping.fm/ref/?link=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;body=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a></li><li
class="sexy-nujij"> <a
href="http://nujij.nl/jij.lynkx?t=3.124+%E2%80%93+In+Sub+Window&amp;u=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;b=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a></li><li
class="sexy-ekudos"> <a
href="http://www.ekudos.nl/artikel/nieuw?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;desc=The%20latest%20ubot%20update%20brings%20with%20it%20a%20wonderful%20new%20command%3A%20%26%238220%3Bin%20sub%20window%26%238221%3B.%20You%20can%20find%20it%20under%20the%20flow%20menu.%20It%20is%20a%20container%20command%2C%20and%20what%20makes%20it%20special%2C%20is%20that%20any%20commands%20you%20put%20inside%20it%20will%20run%20inside%20a%20different%20window%20with%20a%20different%20webbrowser%20than%20your%20main%20" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a></li><li
class="sexy-netvouz"> <a
href="http://www.netvouz.com/action/submitBookmark?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a></li><li
class="sexy-netvibes"> <a
href="http://www.netvibes.com/share?title=3.124+%E2%80%93+In+Sub+Window&amp;url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a></li><li
class="sexy-fleck"> <a
href="http://beta3.fleck.com/bookmarklet.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a></li><li
class="sexy-blogospherenews"> <a
href="http://www.blogospherenews.com/submit.php?url=http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/&amp;title=3.124+%E2%80%93+In+Sub+Window" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a></li></ul><div
style="clear:both;"></div></div>]]></content:encoded> <wfw:commentRss>http://www.ubotdevstudio.com/3-124-%e2%80%93-in-sub-window/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk
Group:              archive
-->

<!-- W3 Total Cache: Db cache debug info:
Engine:             disk
Total queries:      30
Cached queries:     21
Total query time:   0.009
SQL info:
    # | Time (s) |    Caching (Reject reason)     |   Status   | Query
    1 |    0.003 |            enabled             |   Cached   | SELECT option_name, option_value FROM wp_options WHERE autoload = 'yes'
    2 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'aiosp_post_title_format' LIMIT 1
    3 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_client_type' LIMIT 1
    4 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_allowed_retries' LIMIT 1
    5 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_lockout_duration' LIMIT 1
    6 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_valid_duration' LIMIT 1
    7 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_cookies' LIMIT 1
    8 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_lockout_notify' LIMIT 1
    9 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_allowed_lockouts' LIMIT 1
   10 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_long_duration' LIMIT 1
   11 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'limit_login_notify_email_after' LIMIT 1
   12 |        0 |  disabled (query is rejected)  | Not cached | UPDATE `wp_options` SET `option_value` = '' WHERE `option_name` = 'SEXY_SPONSORS'
   13 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'SEXY_SPONSORS' LIMIT 1
   14 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'woo_show_options' LIMIT 1
   15 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'woo_custom_nav_menu' LIMIT 1
   16 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'woo_force_all' LIMIT 1
   17 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'woo_force_single' LIMIT 1
   18 |        0 |  disabled (query is rejected)  | Not cached | UPDATE `wp_options` SET `option_value` = '1' WHERE `option_name` = 'woo_updater'
   19 |        0 |            enabled             |   Cached   | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ('category')  ORDER BY t.name ASC
   20 |    0.001 |            enabled             |   Cached   | SELECT * FROM wp_posts  WHERE (post_type = 'page' AND post_status = 'publish')     ORDER BY post_parent,menu_order ASC
   21 |        0 |            enabled             |   Cached   | SELECT option_value FROM wp_options WHERE option_name = 'woo_uploads' LIMIT 1
   22 |        0 |            enabled             | Not cached | SELECT post_modified_gmt FROM wp_posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY post_modified_gmt DESC LIMIT 1
   23 |        0 |            enabled             | Not cached | SELECT post_date_gmt FROM wp_posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY post_date_gmt DESC LIMIT 1
   24 |        0 |            enabled             | Not cached | SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON t.term_id = tt.term_id WHERE tt.taxonomy IN ('category')  AND t.slug = 'ubot-news' ORDER BY t.name ASC
   25 |        0 |  disabled (query is rejected)  | Not cached | SELECT SQL_CALC_FOUND_ROWS  wp_posts.* FROM wp_posts  INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) INNER JOIN wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id)  WHERE 1=1  AND wp_term_taxonomy.taxonomy = 'category' AND wp_term_taxonomy.term_id IN ('1', '100') AND wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish') GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 0, 10
   26 |        0 |  disabled (query is rejected)  | Not cached | SELECT FOUND_ROWS()
   27 |        0 |            enabled             | Not cached | SELECT t.*, tt.*, tr.object_id FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('category', 'post_tag') AND tr.object_id IN (257, 236, 228, 208, 207, 206, 204, 203, 201, 202) ORDER BY t.name ASC
   28 |        0 |            enabled             | Not cached | SELECT post_id, meta_key, meta_value FROM wp_postmeta WHERE post_id IN (257,236,228,208,207,206,204,203,201,202)
   29 |        0 |            enabled             |   Cached   | SELECT * FROM wp_users WHERE ID = 1 LIMIT 1
   30 |        0 |            enabled             |   Cached   | SELECT meta_key, meta_value FROM wp_usermeta WHERE user_id = 1
-->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk
Key:                w3tc_672abc43dd65e1231fcbea3d2c8454ab_page_b990fb4b7aa0eeeed3d790370e0def54
Caching:            disabled
Reject reason:      user agent is rejected
Status:             not cached
Creation Time:      0.780s
Header info:
X-Powered-By:       W3 Total Cache/0.8.5.1
X-Pingback:         http://www.ubotdevstudio.com/xmlrpc.php
Last-Modified:      Fri, 03 Sep 2010 05:31:11 GMT
ETag:               "6ac863f5aa22769d8473885749fb783c"
Content-Type:       text/xml; charset=UTF-8
-->