[Newbies] unique items in a collection

2008-02-15 Thread Frank Urbach
Dear list, sometimes I get a collection with many items in it and want to get a collection where the occurrencesOf: each item should 1. So I'm searching for an selector like 'unique'. Is there a such a thing? Cheers, Frank Edelstahlwerke Schmees GmbH Geschäftsleitung Clemens Schmees Sitz D-

Re: [Newbies] Loading windows bitmap?

2008-01-20 Thread Frank Urbach
Hi Blake, Try this k := SketchMorph fromFile: 'C:\Dokumente und Einstellungen\Baldsiefer\Eigene Dateien\Eigene Bilder\Beispiel.jpg'. k openInWorld. HTH Frank Original Message Subject: [Newbies] Loading windows bitmap? (21-Jan-2008 0:56) From:Blake <[EMAIL PROTECTED]>

Re: [Newbies] Perform

2008-01-14 Thread Frank Urbach
Hi Jakub, if I correctly understand your question the following will do what you want: test := MyTest new. myString:= ('phone1' , ':' asString) asSymbol. test perform: myString with: 'tesValue'. The above you can use in a Workspace. The essential from this is: Object perform: with: MyTest

AW: [Newbies] squeak make back up of category

2007-12-30 Thread Frank Urbach
Hi, Try to figure out how to use monticello. I think you would find something helpfull at the squeak-wiki. HTH Frank P.S. Your right name at the end of a mail is very appreciate. (Send from a Blackberry) --- Edelstahlwerke Schmees GmbH Geschäftsleitung Clemens Schmees Sitz D-01796 Pirna Han

AW: Re: [Newbies] Locking down a squeak image

2007-11-10 Thread Frank Urbach
>must be SmalltalkImage I think. A little typo. I think it should be like this: SmalltalkImage current saveAs Cheers Frank Send from a Blackberry --- Edelstahlwerke Schmees GmbH Geschäftsleitung Clemens Schmees Sitz D-01796 Pirna Handelsregister Dresden HRB 54 www.schmees.com _

Re-2: [Newbies] [ANN] New Seaside tutorial

2007-10-19 Thread Frank Urbach
Hi, Firefox show's under the condition that I was absent for 1/2 hour the same behavior. After go again with a fresh typed URL back to the start it works fine. Cheers, Frank Original Message Subject: Re: [Newbies] [ANN] New Seaside tutorial (19-Okt-2007 15:49) From:John

Re-2: [Newbies] Defining a class at runtime

2007-07-20 Thread Frank Urbach
I think you mean building a class from within an instance of a class. The whole environment is the runtime but things we see happen as instances of some classes like eg. SystemWindows you may feel as the "runtime". Just my 2 cents Cheers, Frank >On 7/20/07, Bert Freudenberg <[EMAIL PROTECTED

[Newbies] My Spamfilter

2007-04-12 Thread Frank Urbach
Hi all, I apologize for sending this eMail. My spam-filter is filtering mails from the list. With this eMail I can change this behavior. Again I apologize. Cheers, Frank ___ Beginners mailing list [EMAIL PROTECTED] http://lists.squeakfoundation.org/

Re: [Newbies] Translating Morphic/Squeak

2007-01-25 Thread Frank Urbach
Hi Jens, what do you mean with translating.? Cheers, Frank Original Message Subject: [Newbies] Translating Morphic/Squeak (26-Jan-2007 7:54) From:Jens Pall <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] > Hi > > What is the best way to translate Morphic? > > How about

Re-2: [Newbies] Stef, BotsInc problem...

2007-01-24 Thread Frank Urbach
Hi David, I was digging a little bit in the code of the MicroWorkspace. I saw that Stef changed the behavior of the execution for the content of this Workspace by clicking on the button. Every execution is bounded with the execution of a block. This block forks. So I didn't see the behavior of s

Re: [Newbies] FW: Problem printing from Workspace to Transcript

2007-01-19 Thread Frank Urbach
Hi Harry, What did you after writing this into the workspace? You have two possibilities to complete this line: 1. Bring the cursor in the written line and use the right mouse button an select "Do-It". 2. Bring the cursor in the written line and press the keys cmd+d. In both of this cases the

Re: [Newbies] Monticell or Changesets?

2007-01-01 Thread frank . urbach
Hi Grant, > Coming from Subversion I'm trying to understand if I should be > learning Monticello, Changesets, or both, for version control. If you read the archive of the squeak-dev mailing-list you find some posts about monticello and some difficulties. I think this is not a problem in the tim

Re-3: [Newbies] Stand alone application

2006-11-23 Thread Frank Urbach
Sorry, I appologize. You can find the installation instractions on http://user.sophieproject.org/download/install. Cheers, Frank Original Message Subject: Re-2: [Newbies] Stand alone application (23-Nov-2006 12:26) From:Frank Urbach <[EMAIL PROTECTED]> To:

Re-2: [Newbies] Stand alone application

2006-11-23 Thread Frank Urbach
Hi Offray, so far I know sophie today runs only on windows and mac. Cheers, Frank Original Message Subject: Re: [Newbies] Stand alone application (23-Nov-2006 12:14) From:Offray Vladimir Luna Cárdenas <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] > Hi, > > Bert Freude

AW: [Newbies] Plotting x-y data within Squeak

2006-11-07 Thread Frank Urbach
Perhaps the package Plotmorph2 would fit what you need. You will find this package on SqueakMap. I've never tried it but I think it's the right for you. Cheers, Frank ___ Beginners mailing list Beginners@lists.squeakfoundation.org http://lists.squeak

Re-2: [Newbies] Catching message send

2006-10-31 Thread Frank Urbach
: [Newbies] Catching message send (31-Okt-2006 11:47) From:Mathieu <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] > Frank Urbach a écrit : > > Hi Mathieu, > > > > what do you want do? > > > > Cheers, > > Frank > > > > I want to catch e

Re: [Newbies] Catching message send

2006-10-31 Thread Frank Urbach
Hi Mathieu, what do you want do? Cheers, Frank Original Message Subject: [Newbies] Catching message send (31-Okt-2006 11:32) From:Mathieu <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] > Hi, > > Is there a way to catch message send to a specifoque object? > > Thanks >

Re: [Newbies] ODBC and 3.9?

2006-09-26 Thread Frank Urbach
Hi Petr, The odbc-package ist based on ODBC per platform. You can call odbc functionality only via FFI which was removed from the image. In short: install FFI-Package form squeakmap. After this you can load the odbc-Package and usefull the odbc-enhancement-package. Hope this helps. Cheers, F

Re-5: [Newbies] Monticello -- where is it?

2006-09-13 Thread Frank Urbach
me too. :-) Frank > I like it though and I'm happy with having a German document. > > Thank you! > > Herbertmailto:[EMAIL PROTECTED] > > ___ > Beginners mailing list > Beginners@lists.squeakfoundation.org > http://lists.squ

Re-4: [Newbies] Monticello -- where is it?

2006-09-13 Thread Frank Urbach
n translate it. > > Patty > > Frank Urbach schrieb: > > Hallo Petty! > > > > Thanks für your attachement. I'm a german and for me it's very usefull :-). > > Can you > > send the english version to the list? I think you have it. > > >

Re-2: [Newbies] Monticello -- where is it?

2006-09-13 Thread Frank Urbach
Hallo Petty! Thanks für your attachement. I'm a german and for me it's very usefull :-). Can you send the english version to the list? I think you have it. Cheers, Frank Original Message Subject: Re: [Newbies] Monticello -- where is it? (12-Sep-2006 19:08) From:peppermi

AW: [Newbies] Making cultural simulations in Squeak with Kedama

2006-08-24 Thread Frank Urbach
Hallo Offray! I can send you an image which contains kedama and odeco. I didn't know where I've found this. The version of squeak is 3.6. If it is interesting for you give me please a ftp-adress where I can uploade. If your eMail can recieve more the 10 MB I could send you the image directly.

Re: [Newbies] variableWordSubclass:

2006-06-26 Thread Frank Urbach
Hi Joaquin,   >I wish to create a subclass of FloatArray for a dynamic system simulation. When creating the class with #subclass: the method is automatically changed to #variableWordSubclass: as follows   I think the the _expression_ "ArrayedCollection subclass: #DynamicVariable" is the rig

Re-4: [Newbies] Re: self executable with squeak

2006-06-07 Thread Frank Urbach
Hi Elod, On http://lists.squeakfoundation.org/pipermail/beginners/2006-May/000253.html you find something answering your question. Herbert had posted what works for him. I've never tryed things like that. Hope that helps. Cheers, Frank Original Message Subject: Re: Re-2: [N

Re-2: [Newbies] Re: self executable with squeak

2006-06-07 Thread Frank Urbach
Hi Elod, Planet Plopp was made by impara (http://www.impara.de). Bert was one of the developers. I saw a little bit from the production of this program. Very impressive how these guys working with squeak. Cheers, Frank Original Message Subject: Re: [Newbies] Re: self execu

Re: [Newbies] Monticello documentation

2006-06-01 Thread Frank Urbach
Hi Joaquin,   for the first steps I think the following link should help: http://minnow.cc.gatech.edu/squeak/43   Cheers,   Frank     Original Message     processed by David InfoCenter  Subjec

Re: [Newbies] How to profile a bunch of code

2006-05-08 Thread Frank Urbach
Hi Cèdric,   I think the MessageTally is what you are searching for. With MessageTally spyOn: [Block] you get some information about the execution. On top of the result-window you find the execution time.   Hope this helps!   Cheers   Frank     Original