<div dir="ltr">Hi list,<br><br>I need to ask for more pointers... =(<br><br>Now I know how to debug what happens when I send certain keys to<br>certains morphs. My code is here - not on the wiki yet, sorry -<br><br>  <a href="http://anggtwu.net/eev-squeak.html#key-events">http://anggtwu.net/eev-squeak.html#key-events</a><br><br>and I am using that to learn how lots of things work. But the morphs<br>seem to fall in several different families, each one with a different<br>way of initializing... for morphs like these ones I can just use<br>openInWorld,<br><br>  sm := SimpleSwitchMorph new.<br>  sm openInWorld.<br>  bm := SimpleButtonMorph new.<br>  bm openInWorld.<br>  bm position: bm position + (0@32).<br>  rm := RectangleMorph new.<br>  rm openInWorld.<br>  rm position: rm position + (0@64).<br><br>but for SelectorBrowser I need to use "prototypicalToolWindow" instead<br>of new, and there are other ones, like SearchBar, that I don't know<br>how to create a new morph of that kind...<br><br>Where can I learn more about that? And where do people usually learn<br>how to create interfaces in which a single window displays several<br>subwindows and subwidgets? In Tcl/Tk this is considered basic... here<br>is an example of this "this": the code below<br><br>  frame   .top<br>  frame   .bottom<br>  text    .textbox -width 10 -height 5<br>  listbox .listbox -width 10 -height 5<br>  button  .button1 -text B1<br>  button  .button2 -text B2<br>  button  .button3 -text B3<br>  .textbox insert end "Foo\nBar"<br>  .listbox insert end "Item 1"<br>  .listbox insert end "Item 2"<br>  .listbox insert end "Item 3"<br>  pack .top     -side top<br>  pack .bottom  -side bottom            -fill x -expand 1<br>  pack .listbox -side left  -in .top<br>  pack .textbox -side right -in .top<br>  pack .button1 -side left  -in .bottom -fill x -expand 1<br>  pack .button2 -side left  -in .bottom -fill x -expand 1<br>  pack .button3 -side left  -in .bottom -fill x -expand 1<br><br>creates the window in this screenshot:<br><br>  <a href="https://i.ibb.co/ZcZGRjW/sshot.png">https://i.ibb.co/ZcZGRjW/sshot.png</a><br><br>Thanks in advance! =)<br>  Eduardo Ochs<br>  <a href="http://anggtwu.net/eev-squeak.html">http://anggtwu.net/eev-squeak.html</a><br><div><br></div></div>