ClickAballS&quot;online copy my 1st game&quot;<br/> GraphicsWindow.BackgroundColor = &quot;midnightblue&quot;<br/> GraphicsWindow.Title = &quot;clickaballs&quot;<br/> GraphicsWindow.Width = 800<br/> GraphicsWindow.Height = 600<br/> GraphicsWindow.Show()<br/> <br/> GraphicsWindow.MouseDown = start<br/> <br/> A= 30<br/> c=100<br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(c,c,a,a)<br/> GraphicsWindow.DrawRectangle(c,c,a,a)<br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.DrawText(c+6, c+7, &quot;OK&quot;)<br/> <br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(10,10,10,10)<br/> GraphicsWindow.DrawRectangle(10,10,10,10)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(10,30,30,30)<br/> GraphicsWindow.DrawRectangle(10,30,30,30)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(100,30,30,30)<br/> GraphicsWindow.DrawRectangle(100,30,30,30)<br/> <br/> mouseclick = 0<br/> <br/> While (&quot;True&quot;)<br/>   If (mouseclick = 1) Then<br/>     mouseclick = 0<br/>     If (xaxis &gt; c And xaxis &lt; (c+a) And yaxis&gt; c And yaxis &lt; (c+a)) Then<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (20) And yaxis &gt; 10 And yaxis &lt; (20)) Then<br/>       Turtle.Turn(90)<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (40) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(-90)<br/>       Turtle.Move(100)<br/>        ElseIf (xaxis &gt; 100 And xaxis &lt; (140) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(45)<br/>       Turtle.Move(100)<br/>     <br/>  <br/>      <br/>     EndIf<br/>   EndIf<br/> EndWhile<br/> <br/> Sub start<br/>   mouseclick = 1<br/>   xaxis = GraphicsWindow.MouseX<br/>   yaxis = GraphicsWindow.MouseY<br/> endsub<br/>   <br/>   <br/>   'startpoint= mr turtles &quot;home,&quot; {thanks to i Imix for the name} read and record.<br/>   'button click &quot;Yes or No&quot;<br/>   'If  yes then move and record point. if point = home print&quot;wellcome home mr turtle is that a new t shirt?&quot;<br/>   'did move intersect any lines? &quot;Yes or No&quot;<br/>  <br/>   'If yes did line make a compleate area? &quot;Yes or No&quot;<br/>   'if yes make sides live and call area SCENARIo1. ScenariO1 = 1 +1 (time=0 + .01) and make &quot;clickaball&quot;.{good name mental note to resureh {if not copyright as of now.}}<br/>   'fill scenario1 with random. goto No<br/>   'if no carry on<br/> <br/> <br/> 'WHEN programs works spend more time with the family.© 2009 Microsoft Corporation. All rights reserved.Sat, 04 Jul 2009 02:46:08 Z690f5caa-6789-4dc7-884d-9d7d528bd2f2http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#690f5caa-6789-4dc7-884d-9d7d528bd2f2http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#690f5caa-6789-4dc7-884d-9d7d528bd2f2Kniggleshttp://social.msdn.microsoft.com/Profile/en-US/?user=KnigglesClickAballS&quot;online copy my 1st game&quot;<br/> GraphicsWindow.BackgroundColor = &quot;midnightblue&quot;<br/> GraphicsWindow.Title = &quot;clickaballs&quot;<br/> GraphicsWindow.Width = 800<br/> GraphicsWindow.Height = 600<br/> GraphicsWindow.Show()<br/> <br/> GraphicsWindow.MouseDown = start<br/> <br/> A= 30<br/> c=100<br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(c,c,a,a)<br/> GraphicsWindow.DrawRectangle(c,c,a,a)<br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.DrawText(c+6, c+7, &quot;OK&quot;)<br/> <br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(10,10,10,10)<br/> GraphicsWindow.DrawRectangle(10,10,10,10)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(10,30,30,30)<br/> GraphicsWindow.DrawRectangle(10,30,30,30)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(100,30,30,30)<br/> GraphicsWindow.DrawRectangle(100,30,30,30)<br/> <br/> mouseclick = 0<br/> <br/> While (&quot;True&quot;)<br/>   If (mouseclick = 1) Then<br/>     mouseclick = 0<br/>     If (xaxis &gt; c And xaxis &lt; (c+a) And yaxis&gt; c And yaxis &lt; (c+a)) Then<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (20) And yaxis &gt; 10 And yaxis &lt; (20)) Then<br/>       Turtle.Turn(90)<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (40) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(-90)<br/>       Turtle.Move(100)<br/>        ElseIf (xaxis &gt; 100 And xaxis &lt; (140) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(45)<br/>       Turtle.Move(100)<br/>     <br/>  <br/>      <br/>     EndIf<br/>   EndIf<br/> EndWhile<br/> <br/> Sub start<br/>   mouseclick = 1<br/>   xaxis = GraphicsWindow.MouseX<br/>   yaxis = GraphicsWindow.MouseY<br/> endsub<br/>   <br/>   <br/>   'startpoint= mr turtles &quot;home,&quot; {thanks to i Imix for the name} read and record.<br/>   'button click &quot;Yes or No&quot;<br/>   'If  yes then move and record point. if point = home print&quot;wellcome home mr turtle is that a new t shirt?&quot;<br/>   'did move intersect any lines? &quot;Yes or No&quot;<br/>  <br/>   'If yes did line make a compleate area? &quot;Yes or No&quot;<br/>   'if yes make sides live and call area SCENARIo1. ScenariO1 = 1 +1 (time=0 + .01) and make &quot;clickaball&quot;.{good name mental note to resureh {if not copyright as of now.}}<br/>   'fill scenario1 with random. goto No<br/>   'if no carry on<br/> <br/> <br/> 'WHEN programs works spend more time with the family.Sun, 28 Jun 2009 01:22:28 Z2009-06-28T01:22:28Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#8c0ad6ae-a2f8-45e4-9b36-f43723f1298fhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#8c0ad6ae-a2f8-45e4-9b36-f43723f1298fKniggleshttp://social.msdn.microsoft.com/Profile/en-US/?user=KnigglesClickAballS<blockquote>&quot;online  my 1st game&quot;<br/> GraphicsWindow.BackgroundColor = &quot;midnightblue&quot;<br/> GraphicsWindow.Title = &quot;clickaballs&quot;<br/> GraphicsWindow.Width = 800<br/> GraphicsWindow.Height = 600<br/> GraphicsWindow.Show()<br/> <br/> GraphicsWindow.MouseDown = start<br/> <br/> A= 30<br/> c=100<br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(c,c,a,a)<br/> GraphicsWindow.DrawRectangle(c,c,a,a)<br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.DrawText(c+6, c+7, &quot;OK&quot;)<br/> <br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(10,10,10,10)<br/> GraphicsWindow.DrawRectangle(10,10,10,10)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(10,30,30,30)<br/> GraphicsWindow.DrawRectangle(10,30,30,30)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(100,30,30,30)<br/> GraphicsWindow.DrawRectangle(100,30,30,30)<br/> <br/> mouseclick = 0<br/> <br/> While (&quot;True&quot;)<br/>   If (mouseclick = 1) Then<br/>     mouseclick = 0<br/>     If (xaxis &gt; c And xaxis &lt; (c+a) And yaxis&gt; c And yaxis &lt; (c+a)) Then<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (20) And yaxis &gt; 10 And yaxis &lt; (20)) Then<br/>       Turtle.Turn(90)<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (40) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(-90)<br/>       Turtle.Move(100)<br/>        ElseIf (xaxis &gt; 100 And xaxis &lt; (140) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(45)<br/>       Turtle.Move(100)<br/>     <br/>  <br/>      <br/>     EndIf<br/>   EndIf<br/> EndWhile<br/> <br/> Sub start<br/>   mouseclick = 1<br/>   xaxis = GraphicsWindow.MouseX<br/>   yaxis = GraphicsWindow.MouseY<br/> endsub<br/>   <br/>   <br/>   'startpoint= mr turtles &quot;home,&quot; {thanks to i Imix for the name} read and record.<br/>   'button click &quot;Yes or No&quot;<br/>   'If  yes then move and record point. if point = home print&quot;wellcome home mr turtle is that a new t shirt?&quot;<br/>   'did move intersect any lines? &quot;Yes or No&quot;<br/>  <br/>   'If yes did line make a compleate area? &quot;Yes or No&quot;<br/>   'if yes make sides live and call area SCENARIo1. ScenariO1 = 1 +1 (time=0 + .01) and make &quot;clickaball&quot;.{good name mental note to resureh {if not copyright as of now.}}<br/>   'fill scenario1 with random. goto No<br/>   'if no carry on<br/> <br/> <br/> 'WHEN programs works spend more time with the family.</blockquote> publish and give GREAT thanks to <a class=author rel=nofollow href="../../../../Profile/en-US/?user=bigdaddyo&amp;referrer=http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a2646ee7-8fb1-4cc8-9c26-8fdad2499f38&amp;rh=48pHrsO2UKZTtuLOVq6fqEqLeGG%2bC2IkVHtvNhSmdY8%3d&amp;sp=forums" class=author><img src="http://i4.social.microsoft.com/Image.avatr?size=Small&amp;user=bigdaddyo&amp;id=00000000-0000-0000-0000-000000000000" alt=""> </a> <span class=fullbadge><a class=author rel=nofollow href="../../../../Profile/en-US/?user=bigdaddyo&amp;referrer=http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a2646ee7-8fb1-4cc8-9c26-8fdad2499f38&amp;rh=48pHrsO2UKZTtuLOVq6fqEqLeGG%2bC2IkVHtvNhSmdY8%3d&amp;sp=forums" class=author><span class=name>bigdaddyo </span> </a> </span> <a class=author rel=nofollow href="../../../../Profile/en-US/?user=The Hacker&amp;referrer=http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a2646ee7-8fb1-4cc8-9c26-8fdad2499f38&amp;rh=48pHrsO2UKZTtuLOVq6fqEqLeGG%2bC2IkVHtvNhSmdY8%3d&amp;sp=forums" class=author><img src="http://i2.social.microsoft.com/Image.avatr?size=Small&amp;user=The Hacker&amp;id=816c1769-982f-405b-946c-138a0c01d746" alt=""> </a> <span class=fullbadge><a class=author rel=nofollow href="../../../../Profile/en-US/?user=The Hacker&amp;referrer=http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a2646ee7-8fb1-4cc8-9c26-8fdad2499f38&amp;rh=48pHrsO2UKZTtuLOVq6fqEqLeGG%2bC2IkVHtvNhSmdY8%3d&amp;sp=forums" class=author><span class=name>The Hacker the star of the show </span> </a> </span> <a class=author rel=nofollow href="../../../../Profile/en-US/?user=litdev&amp;referrer=http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a2646ee7-8fb1-4cc8-9c26-8fdad2499f38&amp;rh=48pHrsO2UKZTtuLOVq6fqEqLeGG%2bC2IkVHtvNhSmdY8%3d&amp;sp=forums" class=author><img src="http://i3.social.microsoft.com/Image.avatr?size=Small&amp;user=litdev&amp;id=00000000-0000-0000-0000-000000000000" alt=""> </a> <span class=fullbadge><a class=author rel=nofollow href="../../../../Profile/en-US/?user=litdev&amp;referrer=http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a2646ee7-8fb1-4cc8-9c26-8fdad2499f38&amp;rh=48pHrsO2UKZTtuLOVq6fqEqLeGG%2bC2IkVHtvNhSmdY8%3d&amp;sp=forums" class=author><span class=name>litdev</span> </a> <span class=affil><abbr class=affil><br/>  my mum, dad.ect.ect</abbr> </span> </span>Sun, 28 Jun 2009 01:32:11 Z2009-06-28T01:32:11Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#2f270d3e-5e3a-49e7-b753-7b69fa0c13dchttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#2f270d3e-5e3a-49e7-b753-7b69fa0c13dcKniggleshttp://social.msdn.microsoft.com/Profile/en-US/?user=KnigglesClickAballSwot if = 1 credit<br/> ie. wotif the line gos over a scenario<br/> <br/> A to wot if = 2 credits.<br/> <br/> 1 credit = 1 click.<br/> 1 click =  1link.<br/>  and thanks for playing.<br/> <br/>Sun, 28 Jun 2009 02:09:25 Z2009-06-28T02:09:25Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#5264b23f-78f9-4595-bfe8-afcb3703bccehttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#5264b23f-78f9-4595-bfe8-afcb3703bccebigdaddyohttp://social.msdn.microsoft.com/Profile/en-US/?user=bigdaddyoClickAballSNice, it's like a remote control turtle!Sun, 28 Jun 2009 07:33:02 Z2009-06-28T07:33:02Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#9520e733-449a-4e80-9018-b1d43deef0a1http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#9520e733-449a-4e80-9018-b1d43deef0a1litdevhttp://social.msdn.microsoft.com/Profile/en-US/?user=litdevClickAballSThanks for sharing your work, how about a remote control car next using Shapes rather than Turtle.Sun, 28 Jun 2009 10:30:56 Z2009-06-28T10:30:56Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#6a589c11-6574-42a3-be4e-4c376dbedbf0http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/690f5caa-6789-4dc7-884d-9d7d528bd2f2#6a589c11-6574-42a3-be4e-4c376dbedbf0Kniggleshttp://social.msdn.microsoft.com/Profile/en-US/?user=KnigglesClickAballS<blockquote>Thanks for sharing your work, how about a remote control car next using Shapes rather than Turtle.</blockquote> <br/> 'Thanks for the ideas,<br/> 'while i was workking on the car i came over this idea of a program/entertainmet scenario that sees the story and games of 'mr turtle and mrs scenario hair,<br/>  'mr turtle was an artquetecky who had evloved over ...<br/>  'a= space and time<br/> 'b =<br/> 'c=<br/> 'f=<br/> GraphicsWindow.BackgroundColor = &quot;midnightblue&quot;<br/> GraphicsWindow.Title = &quot;Dudewheresmyskateboard&quot;<br/> GraphicsWindow.Width = 800<br/> GraphicsWindow.Height = 600<br/> GraphicsWindow.Show()<br/> <br/> <br/> GraphicsWindow.MouseDown = mousey<br/> <br/> A= 30<br/> c=100<br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(c,c,a,a)<br/> GraphicsWindow.DrawRectangle(c,c,a,a)<br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.DrawText(c+6, c+7, &quot;OK&quot;)<br/> <br/> <br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(310,20,150,30)<br/> GraphicsWindow.DrawRectangle(c,c,a,a)<br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.DrawText(310+6, 20+7, &quot;No Broken lines = win&quot;)<br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> GraphicsWindow.BrushColor = &quot;yellow&quot;<br/> GraphicsWindow.FillRectangle(10,10,10,10)<br/> GraphicsWindow.DrawRectangle(10,10,10,10)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(10,30,30,30)<br/> GraphicsWindow.DrawRectangle(10,30,30,30)<br/> <br/> GraphicsWindow.BrushColor = &quot;black&quot;<br/> GraphicsWindow.FillRectangle(100,30,30,30)<br/> GraphicsWindow.DrawRectangle(100,30,30,30)<br/> GraphicsWindow.PenColor=&quot;white&quot;<br/> mouseclick = 0<br/> <br/> While (&quot;True&quot;)<br/>   If (mouseclick = 1) Then<br/>     mouseclick = 0<br/>     If (xaxis &gt; c And xaxis &lt; (c+a) And yaxis&gt; c And yaxis &lt; (c+a)) Then<br/>      <br/>       For i = 1 To 5<br/> Turtle.Move(9)<br/> Turtle.PenUp()<br/> Turtle.Move(9)<br/> Turtle.PenDown()<br/> EndFor<br/>      <br/>      <br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (20) And yaxis &gt; 10 And yaxis &lt; (20)) Then<br/>       Turtle.Turn(90)<br/>       For i = 1 To 2<br/> Turtle.Move(3)<br/> Turtle.PenUp()<br/> Turtle.Move(3)<br/> Turtle.PenDown()<br/>  pic = Flickr.GetPictureOfMoment()<br/> GraphicsWindow.DrawResizedImage(pic, 0, 0, 640, 480)<br/> EndFor<br/>       Turtle.move(100)<br/>     ElseIf (xaxis &gt; 10 And xaxis &lt; (40) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>       Turtle.turn(-90)<br/>       For i = 1 To 2<br/> Turtle.Move(5)<br/> Turtle.PenUp()<br/> Turtle.Move(4)<br/> Turtle.PenDown()<br/> EndFor<br/>       Turtle.Move(100)<br/>        ElseIf (xaxis &gt; 100 And xaxis &lt; (140) And yaxis &gt; 30 And yaxis &lt; (60)) Then<br/>          Turtle.turn(45)<br/>          For i = 1 To 5<br/> Turtle.Move(4)<br/> Turtle.PenUp()<br/> Turtle.Move(5)<br/> Turtle.PenDown()<br/> EndFor<br/>       Turtle.Move(100)<br/>    <br/>  <br/>     <br/>     EndIf<br/>   EndIf<br/> EndWhile<br/> <br/> Sub mousey<br/>   mouseclick = 1<br/>   xaxis = GraphicsWindow.MouseX<br/>   yaxis = GraphicsWindow.MouseY<br/> <br/> endsub<br/>  <br/>  <br/>   'startpoint= mr turtles &quot;home,&quot; {thanks to i Imix for the name} read and record.<br/>   'button click &quot;Yes or No&quot;<br/>   'If  yes then move and record point. if point = home print&quot;wellcome home bob&quot;<br/>   'did move intersect any lines? &quot;Yes or No&quot;<br/>  <br/>   'If yes did line make a compleate area? &quot;Yes or No&quot;<br/>   'if yes make sides live and call area SCENARIo1. ScenariO1 = 1 +1 (time=0 + .01) and make &quot;clickaball&quot;.{good name mental note to resureh}<br/>   'fill scenario1 with random. goto No<br/>   'if no carry on<br/>Tue, 30 Jun 2009 02:23:54 Z2009-06-30T02:39:38Z