On Sat, Feb 7, 2009 at 7:51 AM, sergio_101 <span dir="ltr">&lt;<a href="mailto:sergiolist@village-buzz.com">sergiolist@village-buzz.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
i am working through the ToDo list tutorial, and running into a slight problem..<br>
<br>
i am up to the point where i have defined my tasks, users, and<br>
list/menu components..<br>
<br>
my menu and list components look like:<br>
<br>
WAComponent subclass: #StMenuComponent<br>
 &nbsp; &nbsp; &nbsp; &nbsp;instanceVariableNames: &#39;&#39;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;classVariableNames: &#39;&#39;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;poolDictionaries: &#39;&#39;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;category: &#39;STTutTodoApp&#39;<br>
<br>
and<br>
<br>
WAComponent subclass: #StListComponent<br>
 &nbsp; &nbsp; &nbsp; &nbsp;instanceVariableNames: &#39;&#39;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;classVariableNames: &#39;&#39;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;poolDictionaries: &#39;&#39;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;category: &#39;STTutTodoApp&#39;<br>
<br>
when i run the demo so far, initializing StRootComponent, i am getting:<br>
<br>
initialize<br>
 &nbsp; &nbsp; &nbsp; &nbsp;super initialize.<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self<br>
 &nbsp; &nbsp; &nbsp; &nbsp;menuComponent: StMenuComponent new;<br>
 &nbsp; &nbsp; &nbsp; &nbsp;listComponent: StListComponent new.<br>
<br>
with an error:<br>
<br>
StRootComponent(Object)&gt;&gt;doesNotUnderstand: #menuComponent:<br>
<br>
any ideas?</blockquote><div><br>StRootComponent does not have a method called #menuComponent:<br><br>Perhaps you missed a step where you were supposed to add that? Or perhaps you added it to the wrong class or as a class method rather than an instance method?<br>
</div></div><br>Julian<br>