Igor Stasenko wrote:
> 2009/8/13 kemal asad-syed <
[hidden email]>:
>
>> I am trying to figure how can i move a Morph thru code.
>> something like:
>> a:= Morph new .
>> a openInWorld .
>> a move left : 100.
>> a move up : 50.
>> I haven't yet found how to get that to work. anyone ?
>> thanks.
>> Kemal
>>
>>
> morph position: 100@50
>
>
Actually
a := RectangleMorph new openInWorld.
a position: a position + (100@0) "moves the morph 100 pixels to the
right".