<div>Hi, Cazaw.</div>
<div> </div>
<div>Welcome to PythonCE. I remember wrestling with similar issues with the raw_input. AFAIK its features are very limited and it does rather awkwardly appear over the PythonCE window. You can, of course, position your text output with some spacing.</div>

<div> </div>
<div>If you are satisfied with just a pause before the raw_input window appears then you can import the time module and use the sleep function (although this tends to make the OS think the app is not responding). I usually create a simple loop function instead, when using this method. It would define a pause function and look something like this:</div>

<div> </div>
<div>def pause(t):</div>
<div>   t0=time.time()</div>
<div>   while time.time()-t0&lt;t:</div>
<div>      pass</div>
<div> </div>
<div>where &#39;t&#39; is the number of seconds to pause (and can be a decimal if needed). Then you just call the pause function at the point in your code where you want to wait.</div>
<div> </div>
<div>Unfortunately, I think that any other method whereby (hard or soft) key or stylus input is used would be non-trivial and requires quite a bit more effort.</div>
<div> </div>
<div>If you have the time to put into it, I would suggest looking into the PocketPyGUI package or compiling the SDL library and using that (I have some info on using SDL with PythonCE here: <a href="http://watersprite.awardspace.com/python">watersprite.awardspace.com/python</a>).<br>
</div>
<div>Perhaps other list members have some other suggestions?</div>
<div> </div>
<div>Adam.<br></div>
<div class="gmail_quote">2009/10/29 Cazaw <span dir="ltr">&lt;<a href="mailto:cazaw_wow@yahoo.com">cazaw_wow@yahoo.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid"><br>p.s. - Alternately, if the raw_input could show up in the stdout along with<br>the displayed results instead of it&#39;s own dialog box, that would be just<br>
fine and eliminate the problem. Whichever way would be easiest.<br><font color="#888888">--<br>View this message in context: <a href="http://www.nabble.com/kbhit-type-of-functionality-in-PythonCE-tp26114814p26119052.html" target="_blank">http://www.nabble.com/kbhit-type-of-functionality-in-PythonCE-tp26114814p26119052.html</a><br>
</font>
<div>
<div></div>
<div class="h5">Sent from the Python - pythonce mailing list archive at Nabble.com.<br><br>_______________________________________________<br>PythonCE mailing list<br><a href="mailto:PythonCE@python.org">PythonCE@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/pythonce" target="_blank">http://mail.python.org/mailman/listinfo/pythonce</a><br></div></div></blockquote></div><br>