Re: [Newbies] Simply...

2007-05-21 Thread Michael van der Gulik
Michael van der Gulik kirjoitti 20.5.2007 kello 13.25: Antero Salminen wrote: Hi, dbl-click program icon and no action. in intelmac , only some VM? no ide? I have no printer, but ... Hello again Antero :-). What is your native language? Finnish? There's a lot of documentation on

[Newbies] User interfaces | getting started

2007-05-21 Thread Darren White
Hello, This is my first post here. I have been exploring the squeak environment and smalltalk syntax for a few weeks now. Usually when learning a new programming language I create a small programs such as a contacts list. First I may do it with a console front end then play around with a GUI and

RE: [Newbies] User interfaces | getting started

2007-05-21 Thread Ron Teitelbaum
Hi Darren, Welcome to the list. I'm glad you have been reading about classes and methods that should help. There is no console type application for Squeak. The closest thing we have to a console app is the Transcript, but the Transcript does not accept input. We also have inspectors, browsers

Re: [Newbies] User interfaces | getting started

2007-05-21 Thread Giuseppe Luigi Punzi Ruiz
Hi Darren. The Main Form is where you develop. This is a little confusing to new's (i'm new, and happened to me at first). The Squeak Environment (Smalltalk Environment) where you develop is the end user app. About the GUI's, you can use MORPHIC: http://wiki.squeak.org/squeak/ 30 for

Re: [Newbies] Morph Drop Shadows

2007-05-21 Thread Benjamin Schroeder
On May 20, 2007, at 3:01 PM, David H. Shanabrook wrote: I am experimenting with geometry tutors, such as pentominos. when trying to fit shapes precisely together the shadow is very disturbing, it is hard to know what is the shadow and what is the shape, especially for kids. When I want

Re: [Newbies] User interfaces | getting started

2007-05-21 Thread subbukk
On Monday 21 May 2007 2:25 am, Darren White wrote: Hello, This is my first post here how do I proceed and for a GUI program what is the main form/frame/window to hold the components. So the main thing I'm stuck with is the user interface, I have read enough to know how to create classes

Re: [Newbies] more Squeak exploring and Dolphin, Magma, Omnibase

2007-05-21 Thread cdrick
2007/5/20, subbukk [EMAIL PROTECTED]: HI cdrick thanks for your reply i will tell you in detail. This is the actual DAML sentence (input) given to the XMLParser daml:Class rdf:ID = Person rdfs:subClassOf rdf:resource = #Animal / rdfs:subClassOf daml:Restriction daml:onProperty rdf:resource =

[Newbies] Re: Morph Drop Shadows

2007-05-21 Thread Jerome Peace
[Newbies] Morph Drop Shadows HI David H. Shanabrook, As Bert says the trick is to move the morph w/o lifting it. One general way to do that with any morph is the brown halo handle. The other is to create a morph that behaves the way you want. I had started some work which I had hope to apply

Re: [Newbies] User interfaces | getting started

2007-05-21 Thread Michael Davies
On 20/05/07, Darren White [EMAIL PROTECTED] wrote: Hello, This is my first post here. I have been exploring the squeak environment and smalltalk syntax for a few weeks now. Usually when learning a new programming language I create a small programs such as a contacts list. First I may do it with

Re: [Newbies] User interfaces | getting started

2007-05-21 Thread David Mitchell
For console apps on Unix, see OSProcess: http://wiki.squeak.org/squeak/708 Some support in Windows. Darren White wrote: Hello, This is my first post here. I have been exploring the squeak environment and smalltalk syntax for a few weeks now. Usually when learning a new programming language