Hi Lawson<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><br>
Create your first component<br>
<br>
Name: MyFirstComponent &lt;Create&gt;<br>
<br>
<br>
clicking on the create button displays a page with the following. which is almost certainly intimidating to a new user (at keast it would be to me and I can&#39;t find anything associated with the startup page that explains what I&#39;m seeing):<br>

<br>
Seaside Walkback<br>
<br>
MessageNotUnderstood: WAComponent class&gt;&gt;subclass:instanceVariableNames:<br>
<br></blockquote><div><br></div><div>Are you running on Squeak? If so  the error is caused by a difference between Pharo and Squeak.  A fix for the WAWelcome package is available in <a href="http://www.squeaksource.com/Seaside30">http://www.squeaksource.com/Seaside30</a>, so you use Monticello to update WAWelcome or change the following line in WAWelcomeComponentCreator&gt;&gt; createComponent: componentName</div>
<div><br></div><div>from:</div><div>    userComponent := WAComponent subclass: componentName</div><div>instanceVariableNames: &#39;&#39;.</div><div><br></div><div>to:</div><div>    userComponent := WAComponent subclass: componentName</div>
<div>instanceVariableNames: &#39;&#39; classVariableNames: &#39;&#39; poolDictionaries: &#39;&#39;</div><div>category: &#39;Unclassified&#39;.</div><div><br></div><div>see also: <a href="http://lists.squeakfoundation.org/pipermail/seaside/2010-July/023906.html">http://lists.squeakfoundation.org/pipermail/seaside/2010-July/023906.html</a></div>
<div><br></div><div>Cheers</div><div><br></div><div>Nick</div></div>