<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0">
<channel>
    <title>RoboRealm Forum</title>
    <link>http://www.RoboRealm.com/</link>
    <description>The newest forum threads.</description>
    <lastBuildDate>Tue, 30 Nov 1999 00:11:00 EST</lastBuildDate>
    <language>en-us</language>
    <copyright>Copyright: (C) RoboRealm, http://www.RoboRealm.com/</copyright>
    <docs>http://www.RoboRealm.com/</docs>

    <item>
        <title>No Title</title>
        <description>
        Dear Stevens,&lt;br&gt;I would want to know if a way exists to make once a pause random during the execution of a pipeline, only if a condition is true.&lt;br&gt;&lt;br&gt;Then, for instance, if is recognized the object, the pipeline paused for once random time, and then it continues the execution of the pipeline.&lt;br&gt;&lt;br&gt;Rest waiting for one polite answer of yours in the hope that is a solution to mine simple question.&lt;br&gt;Yours Sincerely.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hi,&lt;br&gt;I have retried the file attached&amp;nbsp;&amp;nbsp;but the Beep doesn&apos;t perform.&lt;br&gt;&lt;br&gt;Is possible that there am not a way to make delayed variable during the execution of the Pipeline ?&lt;br&gt;&lt;br&gt;We can for instance take also a casual break among two Beep. ( &quot;Beep&quot; .....&quot;delayed variable from 2 a 5 sencond&quot; .....&quot;Beep&quot; )&lt;br&gt;&lt;br&gt;I would be you thankful for any suggestion.&lt;br&gt;&lt;br&gt;Thanks.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        I first of all apologize me for my insistence on this matter.&lt;br&gt;I have tried your file attached with two objects A and B, that perfectly recognized, but the Beep never performs.&lt;br&gt;&lt;br&gt;As you will surely have understood, to me it needs that every time that recognized &quot;A&quot; and only &quot;A&quot; a Beep it performs after a period of random time that goes from a min. to a max of time.&lt;br&gt;&lt;br&gt;How can I resolve? &lt;br&gt;&lt;br&gt;I wanted to know, to this point, if the following VBscript that you have suggested me preceding in the attached, is to exclude for my purpose ? :&lt;br&gt;&lt;br&gt;Dim max,min&lt;br&gt;max=3000&lt;br&gt;min=1000&lt;br&gt;Randomize&lt;br&gt;SetVariable &quot;trigger_beep&quot;, 0&lt;br&gt;sleep(Int((max-min+1)*Rnd+min))&lt;br&gt;SetVariable &quot;trigger_beep&quot;, 1&lt;br&gt;&lt;br&gt;Thanks.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        One way to perform a delayed variable set is to use the SetTimedVariable which takes number of milliseconds as its last parameter as to how long to wait until setting the variable. BUT you can only call this ONCE since calling it again and again will always reset the timer ... so you use another variable like &quot;timer_on&quot; to ensure that it only gets called once which will allow the timing to work. You then set timer_on to 0 once you been to allow for new beeps to happen. See attached.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        I have simplified as you have recommended me.&lt;br&gt;This pipeline correctly works.&lt;br&gt;Every time that recognize only &quot;A&quot; the Beep performs.&lt;br&gt;If it recognizes &quot;B&quot; or &quot;A+B&quot; NO action.&lt;br&gt;&lt;br&gt;The only problem that I don&apos;t know how to do is: &lt;br&gt;- before performing the Beep, the Pipeline must paused for once time casual that goes from 5 seconds to 10 seconds.&lt;br&gt;As I can do to insert this break ?&lt;br&gt;&lt;br&gt;Thanks for the assistance.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        By &quot;casual break&quot; do you mean the beep? The VBScript is setting the trigger_beep to zero before the sleep and then 1 after it. That should be switched. You also need to move that into the If Statement so it doesn&apos;t execute EVERY pipeline iteration. Any module NOT in an If Statement module will execute EVERYTIME.&lt;br&gt;&lt;br&gt;Then you actually need something in the pipeline to react to that trigger_beep variable as just setting a variable and doing nothing with it will not do anything ... if you look in the previous robofiles you will see an if statement checking that variable and then beeping when the variable is set.&lt;br&gt;&lt;br&gt;Start simple, then add functionality incrementally and ensure you understand why something works or does not work before you continue. Adding too much functionality too quickly is causing you to get lost in the complexity.&lt;br&gt;&lt;br&gt;STeven.&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hi,&lt;br&gt;I have also tried this file robo, that works, following your preceding instructions, but I don&apos;t understand because it doesn&apos;t execute the casual break before of execute the clic of mouse. How can I do ?&lt;br&gt;I would be you thankful if you could help me to understand the problem.&lt;br&gt;Thanks.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        P.S. I have been wrong to write : &lt;br&gt; &lt;br&gt;-- 02 if &quot;B&quot; recognized or &quot;A + B&quot; no action. --&lt;br&gt;&lt;br&gt;&quot;A&quot; always action&lt;br&gt;&lt;br&gt;Thanks.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Thanks for the answer, it is clear and the simplest the pipeline, but unfortunately it doesn&apos;t work as I would want.&lt;br&gt;&lt;br&gt;I try to explain better the Pipeline :&lt;br&gt;&lt;br&gt;01 If &quot;A&quot; recognized then &amp;gt; later once casual time &amp;gt; Click of the Mouse in the established position and Beep together&lt;br&gt;02 if &quot;A&quot; recognizes or &quot;A + B&quot; no action.&lt;br&gt;03 restart again from the beginning&lt;br&gt;&lt;br&gt;With the file.robo that you have attached me I have noticed that when it recognized &quot;A&quot; the first time, it doesn&apos;t execute the casual break, and it execute the click without moving the mouse in the established position and it also execute the beep.&lt;br&gt;The second time that recognized &quot;A&quot; , it doesn&apos;t execute the casual break and then moves the mouse and clic the in the position established and execute Beep, but always instantly.&lt;br&gt;And then it is always this way.&lt;br&gt;&lt;br&gt;If the Beep is a problem I can also eliminate it. &lt;br&gt;The main point is that it execute the click of the mouse when the condition the object_found becomes true once later casual time established and then it is again ready to the action.&lt;br&gt;&lt;br&gt;I would be you thankful if he succeeded in resolving the problem.&lt;br&gt;Thanks.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        See if you understand the attached. Note the use of the &quot;Latch&quot; in the object found if statement. This ensures that the contents of the if statement ONLY execute once when object_found becomes true. It has to become false and then true again in order to trigger the contents of the if statement.&lt;br&gt;&lt;br&gt;Also note the use of SetTimedVariable which is used to turn off the beeping after the set number of seconds.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        File that has not succeeded in attaching in 1 zip file.&lt;br&gt;&lt;a target=_blank href=http://www.roborealm.com/forum/download_zipfile.php?post_id=28798&amp;name=Files+Robo.zip&amp;zip_id=1&gt;&lt;img border=0 src=http://www.roborealm.com/images/zip_icon_small.gif&gt; Files Robo.zip&lt;/a&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        File that has not succeeded in attaching        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hi,&lt;br&gt;I have tried the single files .robo (01-02-03) what it need to complete a only pipeline (test).&lt;br&gt;Uniting them I have mistaken them something and therefore the timer random doesn&apos;t work to the line 6, unfortunately it performs beep immediately.&lt;br&gt;&lt;br&gt;Probably it would be possible compact also the final pipeline and to optimize it.&lt;br&gt;&lt;br&gt;The pipeline test has this sequence : &lt;br&gt;&lt;br&gt;01 Object Recognition: A and B&lt;br&gt;02 if it recognizes only A &amp;gt; Beep (or Disable through key in low) + Click Mouse&lt;br&gt;03 if B recognizes &amp;gt; no action&lt;br&gt;04 if recognizes A + B &amp;gt; no action&lt;br&gt;05 begin again&lt;br&gt;&lt;br&gt;Thanks for the help.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Attached robofile.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        See the attached ... when you Sleep in VBScript module it will continue to execute other modules (so as NOT to stop the pipeline). So you can use a variable setting to indicate when a beep should happen or not.&lt;br&gt;&lt;br&gt;Note, if the pipeline is stopped or broken the app *WILL* freeze.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>Random break time in the pipeline</title>
        <description>
        Hi,&lt;br&gt;I would want to make a random break in the pipeline among a minimum and a maximum of time from me established.&lt;br&gt;I have created a VBScript, but it doesn&apos;t work. It continually performs beep, and quickly, therefore it doesn&apos;t do the break.&lt;br&gt;I would want to understand where I am wrong.&lt;br&gt;Besides, I have noticed that loading the file that I attach you, the first line ...Object Recognition, loses every time the path, and I am forced to introduce it....why ? &lt;br&gt;Thanks for the availability.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=5776</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=5776</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
</channel>
</rss>
