<br><br><div><span class="gmail_quote">On 2/15/07, <b class="gmail_sendername">Alan Grimes</b> &lt;<a href="mailto:agrimes@speakeasy.net">agrimes@speakeasy.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>I have a bunch of visual basic code that&#39;s been dropped on me. -- for<br>controlling hydraulic presses for use in geology experiments...<br><br>So naturally, I&#39;d like to play with a squeak analog... I have some
<br>experience with back-end type stuff in Squeak such as the math library<br>used by Croquet... However, throwing a gui together seems to be a much<br>more daunting problem, While you can throw morphs on the screen to your
<br>heart&#39;s content there isn&#39;t the kind of code generation system that QT,<br>Borland C++ builder, or MS Visual* has... I went to <a href="http://squeak.org">squeak.org</a> and<br>naturally, 2/3rds of the links give me
<br><br>&quot; Bad Gateway<br><br>The proxy server received an invalid response from an upstream server.&quot;<br><br>=(</blockquote><div><br>I believe that&#39;s been fixed. <br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Where can I find a good walkthrough for creating an application such as<br>the media player?<br></blockquote></div><br>I don&#39;t know of any GUI makers. There&#39;s BobsUI, which is an old project that may or may not load into 
3.9. Personally I prefer to write things out in code manually.<br><br>If you can make your application only with basic widgets (buttons, lists, trees, text etc) then I highly recommend learning about ToolBuilder. For examples, find any buildWith: methods in your image after loading any examples (such as the PlusTools) you can find. I made a UI using ToolBuilder in much less time than it took me to fight with Morphic.
<br><br>If you need to use Morphic, then poke around the image looking for some simple morphs similar to what you want. Then make your own - subclass Morph and copy / modify code a bit. The best way to learn is by playing.
<br><br>Michael.<br>