<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p><br>
    </p>
    <div class="moz-cite-prefix">El 6/8/24 a las 23:23, Mark Volkmann
      via Cuis-dev escribió:<br>
    </div>
    <blockquote type="cite"
      cite="mid:3131C416-ECFA-4862-9166-E2EDF929CC65@gmail.com">
      <pre class="moz-quote-pre" wrap="">What is a good way to implement a vertical scrolling list of Morphs? Should I create LayoutMorph that use a column direction and put that inside a Pluggable ScrollPane?

R. Mark Volkmann
Object Computing, Inc.</pre>
    </blockquote>
    <br>
    <p>Yes. If I translate your words to code:</p>
    <p><span style="white-space: pre-wrap">|p|
p := PluggableScrollPane new.
p scroller: LayoutMorph newColumn.
Color indexedColors do: [:color |
        p addToScroller: (BoxedMorph new color: color; yourself)].
p openInWorld</span></p>
    <p><span style="white-space: pre-wrap">
</span></p>
    <p><span style="white-space: pre-wrap">
</span></p>
    <p><span style="white-space: pre-wrap">
</span></p>
  </body>
</html>