RE: [Newbies] Ralph Johnson video lectures on Smalltalk

2007-02-09 Thread Ramon Leon
> I've just found a link to a set of videos and lecture notes > from Ralph Johnson's lectures on Smalltalk (based on > VisualWorks I believe): > http://st-www.cs.uiuc.edu/users/johnson/cs497/notes98/online-c ourse.html > The lecture notes are accessible, but the video links seem to be dead. > Doe

[Newbies] Ralph Johnson video lectures on Smalltalk

2007-02-09 Thread Michael Davies
I've just found a link to a set of videos and lecture notes from Ralph Johnson's lectures on Smalltalk (based on VisualWorks I believe): http://st-www.cs.uiuc.edu/users/johnson/cs497/notes98/online-course.html The lecture notes are accessible, but the video links seem to be dead. Does anyone know

[Newbies] Re: Another newbie Morphic question

2007-02-09 Thread Hilaire Fernandes
mike clemow a écrit : Now I can create a new DuckMorph. Will Squeak support PNG transparency? I guess I could find that out myself. :) Yes, transparency and alpha-transparency as well. Just be sure to select the 32bit depth for display mode in the World>Appearance menu. Hilaire

Re: [Newbies] Re: Re: A do with ONLY index? (plus, . a style question)

2007-02-09 Thread Blake
On Fri, 09 Feb 2007 02:54:14 -0800, Klaus D. Witzel <[EMAIL PROTECTED]> wrote: Why doesn't this: ^ self basicNew initialize cause a DNU? Object doesn't have an "initialize" method. Really ? :) It is inherited from ProtoObject ;-) Wow, don't know how I missed that. I guess maybe partly b

[Newbies] Re: Re: A do with ONLY index? (plus,. a style question)

2007-02-09 Thread Klaus D. Witzel
Hi Blake, on Fri, 09 Feb 2007 09:15:43 +0100, you wrote: On Thu, 08 Feb 2007 22:58:32 -0800, Klaus D. Witzel wrote: Sure. Evaluate "Object halt; new" with doIt and then in the debugger, in the DoIt method line push the buttons "Through" then "Into". Aha. Huh. Why doesn't this: ^ self ba

Re: [Newbies] Re: A do with ONLY index? (plus,. a style question)

2007-02-09 Thread Blake
On Thu, 08 Feb 2007 22:58:32 -0800, Klaus D. Witzel <[EMAIL PROTECTED]> wrote: Sure. Evaluate "Object halt; new" with doIt and then in the debugger, in the DoIt method line push the buttons "Through" then "Into". Aha. Huh. Why doesn't this: ^ self basicNew initialize cause a DNU? Object