RE: [Newbies] OrderedCollection if imageMorphs

2009-11-11 Thread Christine Wolfe
Squeak. Subject: Re: [Newbies] OrderedCollection if imageMorphs On 09.11.2009, at 02:08, Christine Wolfe wrote: Oh wow! thanks - having the sample code will be a huge help. I'll give it a try. -Original Message- From: Randal L. Schwartz [mailto:mer...@stonehenge.com] Sent: Sunday

RE: [Newbies] OrderedCollection if imageMorphs

2009-11-11 Thread Christine Wolfe
, 2009 11:25 AM To: A friendly place to get answers to even the most basic questions about Squeak. Subject: Re: [Newbies] OrderedCollection if imageMorphs On 09.11.2009, at 02:08, Christine Wolfe wrote: Oh wow! thanks - having the sample code will be a huge help. I'll give it a try

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-11 Thread Bert Freudenberg
On 11.11.2009, at 17:57, Christine Wolfe wrote: I have an instance variable cells that I defined as cells := Matrix rows: 7 columns: 11 tabulate: [ :i :j | self newCellAt: i at: j]. Each cell of the matrix is going to be an orderedcollection of images. How can I refer to an individual

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-09 Thread Christine Wolfe
: [Newbies] OrderedCollection if imageMorphs Christine == Christine Wolfe cwd...@earthlink.net writes: Christine Oh, I'm so so sorry - I thought it was OK to ask dumb questions on Christine the newbie forum (blush) I'll try to figure out how to make an Christine instance variable an order

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Alex Schenkman
I think you might need to call SymbolArrayintialize by your self. If you look at the chain of message sends starting from 'SymbolArray new' 1) OrderedCollection new 2) OrderedCollection new: 3) Behavior basicNew There is no call to initialize. On Sat, Nov 7, 2009 at 16:28, Christine Wolfe

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Herbert König
Christine, SymbolArrayinitialize CW super initialize. CW self add: SymbolBlank new. CW self add: SymbolGet new. CW self add: SymbolProcess new. CW self add: SymbolPut new. CW self add: SymbolIf new. CW self add: SymbolWhile new. the names of your symbols make me courious about what you try to

RE: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Christine Wolfe
Schenkman Sent: Sunday, November 08, 2009 3:59 AM To: A friendly place to get answers to even the most basic questions about Squeak. Subject: Re: [Newbies] OrderedCollection if imageMorphs I think you might need to call SymbolArrayintialize by your self. If you look at the chain of message sends

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Alex Schenkman
On Sun, Nov 8, 2009 at 14:28, Christine Wolfe cwd...@earthlink.net wrote: I’m so confused though. I’ve never had to explicitly call an initialize method before – they seem to be invoked automatically when I use the word “new”. Should I always call the initialize when I create a new instance?

RE: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Christine Wolfe
place to get answers to even the most basic questions about Squeak. Subject: Re: [Newbies] OrderedCollection if imageMorphs On Sun, Nov 8, 2009 at 14:28, Christine Wolfe cwd...@earthlink.net wrote: I'm so confused though. I've never had to explicitly call an initialize method before

Re[2]: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Herbert König
Hi Christine, CW @Herbert – I’m making a pinball machine in which thelittle CW ball follows the order of execution of a student entered CW flowchart…atleast that’s what I’m trying to do ;-) sounds fun to build and fun to use when it's finished. Thanks, Herbert

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Randal L. Schwartz
Christine == Christine Wolfe cwd...@earthlink.net writes: Christine For sure I'm going to start now - I don't see where it could ever hurt Christine anything if I initialize twice. It can, so I wouldn't conclude so quickly, or cargo-cult this one without some more research. Behavior#new calls

Re: Re[2]: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread cwdw01
] OrderedCollection if imageMorphs Sent: Nov 8, 2009 10:45 AM Hi Christine, CW @Herbert – I’m making a pinball machine in which thelittle CW ball follows the order of execution of a student entered CW flowchart…atleast that’s what I’m trying to do ;-) sounds fun to build and fun to use when it's

RE: Re[2]: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Christine Wolfe
answers to even the most basic questionsabout Squeak. Subject: Re: Re[2]: [Newbies] OrderedCollection if imageMorphs --Original Message-- From: Herbert König Sender: beginners-boun...@lists.squeakfoundation.org To: A friendly place to get answers to even the most basic questions aboutSqueak

RE: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Christine Wolfe
: Re: [Newbies] OrderedCollection if imageMorphs Christine == Christine Wolfe cwd...@earthlink.net writes: Christine For sure I'm going to start now - I don't see where it could ever hurt Christine anything if I initialize twice. It can, so I wouldn't conclude so quickly, or cargo-cult this one

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Randal L. Schwartz
Christine == Christine Wolfe cwd...@earthlink.net writes: Christine I created a class, SymbolArray, that is a subclass of Christine OrderedCollection with the following initialize method. Each of the Christine items I'm adding (SymbolBlank, SymbolGet, etc) is an imageMorph. Ahh, there's the

RE: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Christine Wolfe
To: Christine Wolfe Cc: beginners@lists.squeakfoundation.org Subject: Re: [Newbies] OrderedCollection if imageMorphs Christine == Christine Wolfe cwd...@earthlink.net writes: Christine I created a class, SymbolArray, that is a subclass of Christine OrderedCollection with the following initialize

Re: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Randal L. Schwartz
Christine == Christine Wolfe cwd...@earthlink.net writes: Christine Oh, I'm so so sorry - I thought it was OK to ask dumb questions on Christine the newbie forum (blush) I'll try to figure out how to make an Christine instance variable an order collection. It's perfectly OK, and that's why you

RE: [Newbies] OrderedCollection if imageMorphs

2009-11-08 Thread Christine Wolfe
] OrderedCollection if imageMorphs Christine == Christine Wolfe cwd...@earthlink.net writes: Christine Oh, I'm so so sorry - I thought it was OK to ask dumb questions on Christine the newbie forum (blush) I'll try to figure out how to make an Christine instance variable an order collection. It's

[Newbies] OrderedCollection if imageMorphs

2009-11-07 Thread Christine Wolfe
I want to put add an imageMorph on top of another imageMorph. I can do this with the following method (note SymbolBlank is an imageMorph MyBoardaddSymbol |im| im := SymbolBlank new. self addMorph: im. im topLeft: 2...@2. I want to enhance this so I can choose one of a collection of