Re: [Newbies] enumerated types

2008-10-06 Thread Norbert Hartl
On Sun, 2008-10-05 at 20:19 -0500, Mark Volkmann wrote: Have I summarized this correctly? Smalltalk doesn't support the concept of enumerated types like in Java 5 and above. Instead, the Smalltalk way is to: 1. create a class that represents the enumerated type 2. add a class

Re: [Newbies] custom halos

2008-10-06 Thread Aidan Gauland
K. K. Subramaniam wrote: On Saturday 04 Oct 2008 10:55:28 am Aidan Gauland wrote: K. K. Subramaniam wrote: For adding a new button called BBB, you need to 1. add a halospec for addBBBHandle to Preferences class (see senders of addScriptorHandle: for the list) How can I do (and undo) this

Re: [Newbies] substring

2008-10-06 Thread Todd Blanchard
What's wrong with last: ? 'abcdefg' last: 4 yields 'defg' There's also first: On Oct 3, 2008, at 5:52 PM, Randal L. Schwartz wrote: Mark == Mark Volkmann [EMAIL PROTECTED] writes: Mark I can't find a method to give me a substring of a String from a given Mark index to the end. The