Re: [Newbies] Re: Building a remote countdown clock

2009-11-07 Thread Herbert König
Hi Andy, AB That's great, thank you very much.  I have a couple of other AB questions that sprang from using this code. AB 1. I couldn't get the WorldState addDeferredUIMessage: to do AB anything.  What is supposed to happen?  I am running the latest AB Pharo build. The class exists, and I didn't

Aw: [Newbies] Building a remote count down clock

2009-11-07 Thread pascal . vollmer
Hi Andy, if I can help for the presentation part (not for the networking part), let me know. I've built an analog clock with some additional features (see www.squeaksource.com/AnalogClock). One feature is to show a specific duration (with start and stop time) as a morph embedded in the

[Newbies] isStepping question

2009-11-07 Thread Christine Wolfe
If I have a morph that is stepping through some process I know I can test for whether or not it is still stepping by using the isStepping method. But, how to I put this into a loop so that the next instruction doesn't start until the stepping is done. Here is my mouseDown code. I want to put

Re: [Newbies] isStepping question

2009-11-07 Thread Bert Freudenberg
On 07.11.2009, at 14:18, Christine Wolfe wrote: If I have a morph that is stepping through some process I know I can test for whether or not it is still stepping by using the isStepping method. But, how to I put this into a loop so that the next instruction doesn’t start until the

RE: [Newbies] isStepping question

2009-11-07 Thread Christine Wolfe
Wow! That worked. But I'm sorry to hear that morph doesn't support a loop like I wanted. That sounds restrictive but maybe I just need more time in world to become squeakified. Thank you SO MUCH -Original Message- From: beginners-boun...@lists.squeakfoundation.org

[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

Re: [Newbies] isStepping question

2009-11-07 Thread Bert Freudenberg
On 07.11.2009, at 14:45, Christine Wolfe wrote: Wow! That worked. But I'm sorry to hear that morph doesn't support a loop like I wanted. That sounds restrictive but maybe I just need more time in world to become squeakified. Actually that's a restriction of about any event-driven GUI.

RE: [Newbies] isStepping question

2009-11-07 Thread Christine Wolfe
Thank you so much for the explanation. I will keep that philosophy in mind as I try to figure out other techniques as well. -Original Message- From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf Of Bert Freudenberg Sent:

[Newbies] Re: Building a remote countdown clock

2009-11-07 Thread Andy Burnett
David Corking said Andy, RFB (VNC) is quite popular in Squeak and may do what you want. I haven't used Nebraksa, but as far as I can tell it solves the distribution problem for you - if you want to build the UI in Morphic or MVC. http://wiki.squeak.org/squeak/1356 According to this

[Newbies] Re: Building a remote countdown clock

2009-11-07 Thread Andy Burnett
Herbert said no, you haven't. I used the code in a network with fixed IP's and no DHCP running. Right here using NetNameResolver works just fine. If you doIt: (NetNameResolver addressForName: 'aComputersName') inspect you should get an Inspector on a ByteArray with the IP address. Hmmm, I

Re: [Newbies] isStepping question

2009-11-07 Thread Alex Schenkman
Bert: Is Croquet the only way to use Tweak nowadays? Is is possible to load Tweak into Squeak or Pharo? Thanks in advcance! On Sat, Nov 7, 2009 at 14:30, Bert Freudenberg b...@freudenbergs.de wrote: Not possible in Morphic (that is one of the major advantages of Tweak).

Re: [Newbies] isStepping question

2009-11-07 Thread Bert Freudenberg
On 07.11.2009, at 22:43, Alex Schenkman wrote: Bert: Is Croquet the only way to use Tweak nowadays? It's only maintained in Croquet currently, but you can use it without the 3D stuff if you want. The Sophie image contains Tweak, too. Is is possible to load Tweak into Squeak or Pharo?