Re: [Newbies] environment variables

2007-08-05 Thread Patrick Collison
On 05/08/07, Norbert Hartl [EMAIL PROTECTED] wrote: Hi, is there a way to access the environment variables of the underlying OS? Install OSProcess from SqueakMap if you don't already have it, and then use UnixProcessenvironmentAt: thanks, Norbert

Re: [Newbies] I'd like to break a Squeak process...

2007-06-06 Thread Patrick Collison
You'll need to use the Process Browser. In the World menu, select Open, and then Process Browser. Select the offending process, alt-click, and select terminate. On 06/06/07, Damian DobroczyƄski [EMAIL PROTECTED] wrote: ... which I started several minutes ago. It uses sockets and displays dots

[Newbies] Window redraws

2007-05-19 Thread Patrick Collison
Hi, Occasionally, when I start up my image (on Squeak 3.8), the environment seems to go through a process of progressively (and slowly!) redrawing every window that was open when the image was saved. I've discovered that I can avoid the thirty+-second wait that it takes for this process to

[Newbies] Passing arguments to squeak image

2007-05-17 Thread Patrick Collison
Hi, Using latest SVN Squeak, I'm having trouble passing arguments to an image. As far as I can see from the usage, it looks like squeak foo.image bar should pass bar as an argument to the image. Instead, though, I get a load error (the problem seems to be that Squeak is trying to load the url

Re: [Newbies] Passing arguments to squeak image

2007-05-17 Thread Patrick Collison
On 17/05/07, David T. Lewis [EMAIL PROTECTED] wrote: There is a preference setting that you can use to control this: help... - preferences... - general - readDocumentAtStartup Ah, that's exactly what I was hoping to find. Thanks for your help. Patrick