<HTML>
<HEAD>
<TITLE>[Q] What is wrong here ?</TITLE>
</HEAD>
<BODY>
<FONT SIZE="4"><FONT FACE="Calibri, Verdana, Helvetica, Arial"><SPAN STYLE='font-size:11pt'>Folks:<BR>
I try to made aq very simple MahJongg &nbsp;with this info links<BR>
<a href="http://en.wikipedia.org/wiki/Mahjong_solitaire">http://en.wikipedia.org/wiki/Mahjong_solitaire</a><BR>
<a href="http://home.halden.net/vkp/vkp/">http://home.halden.net/vkp/vkp/</a><BR>
<BR>
For made the grid I made <BR>
<BR>
grid := OrderedCollection new.<BR>
<BR>
madeThisRowFor: aInteger at: aPoint <BR>
&nbsp;&nbsp;&nbsp;&nbsp;| topRow square newSquare |<BR>
&nbsp;&nbsp;&nbsp;&nbsp;topRow := AlignmentMorph newRow.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;topRow position: aPoint.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;topRow openInWorld.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;square := Morph new.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;square color: Color transparent;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;borderWidth: 2;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;extent: 45 @ 54;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;borderColor: Color blue.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;1<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;to: aInteger<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;do: [:c | <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;newSquare := square copy.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;topRow addMorph: newSquare.<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;grid add: topRow submorphs last center].<BR>
&nbsp;&nbsp;<BR>
<BR>
Don&#8217;t work as grid is populated by same values .<BR>
Example: <BR>
self madeThisRowFor: 12 at: 0 @ 0.<BR>
<BR>
Grid an OrderedCollection(22@27 22@27 22@27 22@27 22@27 22@27 22@27 22@27 22@27 22@27 22@27 22@27)<BR>
<BR>
But if I put self half before <BR>
<BR>
grid add: topRow submorphs last center<BR>
<BR>
I got<BR>
<BR>
an OrderedCollection(24@29 69@29 114@29 etc )<BR>
<BR>
Really odd, some could explain ?<BR>
<BR>
Edgar</SPAN></FONT></FONT>
</BODY>
</HTML>