<div>Hi,</div>
<div> </div>
<div>If you target Windows, you may try ctypes <a href="http://starship.python.net/crew/theller/ctypes/">http://starship.python.net/crew/theller/ctypes/</a>:</div>
<div> </div>
<div>>>> from ctypes import *<br>>>> windll.user32.MessageBoxA(None, "MessageBox Text", "MessageBox Caption", 0)<br>1<br>>>></div>
<div> </div>
<div> </div>
<div>or win32api <a href="http://starship.python.net/crew/mhammond/win32/">http://starship.python.net/crew/mhammond/win32/</a>:</div>
<div>>>> import win32api<br>>>> win32api.MessageBox(0, "Text", "Title")<br>1<br>>>></div>
<div> </div>
<div>Regards,</div>
<div> </div>
<div>Andre</div>
<div><a href="http://www.burgaud.com/">http://www.burgaud.com/</a></div>
<div><br><br> </div>
<div><span class="gmail_quote">On 2/12/06, <b class="gmail_sendername">LittlePython</b> <<a href="mailto:LittlePython@lost.com">LittlePython@lost.com</a>> wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div><font face="Arial" size="2">Is there an equivalent to a msgbox() or wscript.echo (via wcsript) . I would like to call this instead of print (to the screen) . I would like to write a simple script that is not an event drive gui but calls input boxes, message boxes, or maybe even a file open browser box as well? 
</font></div><br>--<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://mail.python.org/mailman/listinfo/python-list" target="_blank">http://mail.python.org/mailman/listinfo/python-list</a><br><br></blockquote>
</div><br>