[Newbies] Re: How to move World Menu using polymorph

2008-11-13 Thread Hilaire Fernandes
From the preference browser, what you are looking for is the showWorldMainDockingBar I guess you know where is the preference browser as you already changed the theme. For transparency, you can request the halo surrounding the morph you want to set the transparency, then click on the pink "change

[Newbies] Re: Squeak dies when I click process browser

2008-11-13 Thread Hilaire Fernandes
ows. > > -Mark > > > > Hilaire Fernandes-4 wrote: > > > > Strange indeed. Could be related to a thread blocking the image when you > > invoke the process browser. > > > > What is happening when you press simultaneously the combinaison of keys > > [Al

[Newbies] Re: Squeak dies when I click process browser

2008-11-10 Thread Hilaire Fernandes
Strange indeed. Could be related to a thread blocking the image when you invoke the process browser. What is happening when you press simultaneously the combinaison of keys [Alt]+[.] ? Hilaire farnsworth2008 a écrit : I am new to small talk and new to squeak. The first thing I am doing is

[Newbies] Re: Removing a method...

2008-11-10 Thread Hilaire Fernandes
Le lundi 10 novembre 2008 à 02:23 -0500, Tony Giaccone a écrit : > > I I say yes, I get a References To: browser with pointers to other > classes where a method (message?) with the same signature is used > However, none of those references will ever be to my class, they are > made against

[Newbies] Re: rename class category?

2008-11-09 Thread Hilaire Fernandes
Mark Volkmann a écrit : How can I rename a class category? Do you mean programmatically or from the UI? From the UI, over the category name in the class browser, right click (or alt/apple click) the category, in the pop up menu you should have a 'rename...' menu item. Hilaire _

[Newbies] Re: block in recursion, Any cure for that kind of situation?

2008-01-23 Thread Hilaire Fernandes
Hi Klaus, Thanks for the tip, I also need the fixTemps. It is not very elegant but it works. See the vidéo: http://squeak.ofset.org/drgeo/spiral.ogg Klaus D. Witzel a écrit : Hi Hilaire, ___ Beginners mailing list Beginners@lists.squeakfoundati

[Newbies] Re: block in recursion, Any cure for that kind of situation?

2008-01-23 Thread Hilaire Fernandes
Indeed, and I am adapting from DrGeo1.1 which embede the Guile Scheme interpretor, see http://documentation.ofset.org/drgeo/fr/drgenius_93.html Hilaire Le mardi 22 janvier 2008 à 15:42 -0800, Ben Goetter a écrit : > >This is a maintenance nightmare waiting to happen. Use a proper method call, >

[Newbies] Re: block in recursion, Any cure for that kind of situation?

2008-01-23 Thread Hilaire Fernandes
Le mardi 22 janvier 2008 à 22:16 +, Marcin Tustin a écrit : > I'm an idiot. That doesn't work either. Why not? Because still nested, I guess. Anyway I want to use that for teacher to design programmaticaly interactige geometry figure for Drgeo. So it have to keep simple and be usable in a Wor

[Newbies] block in recursion, Any cure for that kind of situation?

2008-01-22 Thread Hilaire Fernandes
I got an error "Attempt to evaluate a block that is already being evaluated", when I call in recursion a block like carre := [:s1 :s2 :s3 :s4 :n | n >0 ifTrue: [carre valueWithArguments: {(segment value: s1 value: s2). (segment value: s2 value: s

[Newbies] Re: Somthing weird in Set

2007-12-14 Thread Hilaire Fernandes
nicolas cellier a écrit : It can happen most probably due to problems of hash code. Two objects that are equal SHOULD have same hash code. - either YourObject does define #= but does not define #hash - or you add theObject to theSet, then modify theObject, which has side effect of modifying its

[Newbies] Somthing weird in Set

2007-12-14 Thread Hilaire Fernandes
How can the following happen ? theSet includes: theOnject -> false theSet asArray includes: theObject -> true previous sent messages to theSet were add: remove:ifAbsent: The Set>>ScanFor: looks strange. Hilaire ___ Beginners mailing list Beginners@

[Newbies] Re: Text with Link

2007-12-07 Thread Hilaire Fernandes
ext string: 'click ici' attribute: (PluggableTextAttribute evalBlock: [Morph new openInWorld])). m contents: t Hilaire Fernandes a écrit : > Hilaire Fernandes a écrit : >> How can I append a link to a text in a text morph? >> >> I am trying without success

[Newbies] Re: Text with Link

2007-12-06 Thread Hilaire Fernandes
Hilaire Fernandes a écrit : How can I append a link to a text in a text morph? I am trying without success: | t m | m := TextMorphPlus new openInWorld. t := Text string: 'hello ' attribute: (TextColor red). t append: (Text string: ' TOTO' attribute

[Newbies] Text with Link

2007-12-06 Thread Hilaire Fernandes
How can I append a link to a text in a text morph? I am trying without success: | t m | m := TextMorphPlus new openInWorld. t := Text string: 'hello ' attribute: (TextColor red). t append: (Text string: ' TOTO' attribute: (TextLink scanFrom: (ReadStream on: 'LMorp

[Newbies] Re: Generating a predictable 'atRandom' result for testing

2007-08-13 Thread Hilaire Fernandes
John Almberg a écrit : This sounds promising. I'll give it a whirl tomorrow. Thanks! -- John generatorOne := Random new seed: 1000. a := 100 atRandom: generatorOne. This is indeed the way to go. I have being using it to generate repeatable random sequences. Hilaire

[Newbies] Re: Dead keys on Ubuntu

2007-08-05 Thread Hilaire Fernandes
It seems dead key is not working with utf-8 encoding from the linux host. What we have found is to force to iso8859-1 before starting the VM See some details at (use google to translate if needed): http://community.ofset.org/wiki/Squeak_sur_GNU-Linux#Caract.C3.A8res_accentu.C3.A9s_avec_Ubuntu_Da

[Newbies] Re: Executing an external program

2007-06-16 Thread Hilaire Fernandes
And what about OSCommand on Windows ? Hilaire David T. Lewis a écrit : On Fri, Jun 15, 2007 at 08:59:46AM +0200, Hilaire Fernandes wrote: David T. Lewis a ?crit : There is not (yet) a general cross-platform solution. If you can explain what kind of program you are trying to run, maybe I can

[Newbies] Re: Executing an external program

2007-06-15 Thread Hilaire Fernandes
David T. Lewis a écrit : There is not (yet) a general cross-platform solution. If you can explain what kind of program you are trying to run, maybe I can give a suggestion. Thanks for for your feedback. I want to run the espeak program for speech synthesis. Basically I just want to run a co

[Newbies] Executing an external program

2007-06-14 Thread Hilaire Fernandes
What are the possibility to execute an external program from Squeak? And portable for sebveral OS host? The programm I want to execute will do so briefly. I read aboud OSProcess, CommandShell but I am not sure where it is best to look at. Hilaire _

[Newbies] Re: Squeasource.com project access right

2007-05-04 Thread Hilaire Fernandes
Lukas Renggli a écrit : > Yes, one access right rule per project. It doesn't make much sense to > assign access rules to packages as packages are no first-class > entities in Squeak or SqueakSource. There are just versions of > snapshots of a specific working set. The name and the contents of > t

[Newbies] Re: Squeasource.com project access right

2007-05-04 Thread Hilaire Fernandes
Lukas Renggli a écrit : Within *one* Squeaksource project, it is possible to have different class packages. Is it possible to assign different access right rule to these packages? I only found how to assign globally the access right rule to the whole squeaksource project. Yes, one access right

[Newbies] Squeasource.com project access right

2007-05-04 Thread Hilaire Fernandes
Within *one* Squeaksource project, it is possible to have different class packages. Is it possible to assign different access right rule to these packages? I only found how to assign globally the access right rule to the whole squeaksource project. Hilaire

[Newbies] Re: Squeak slows to start up in Windows

2007-03-07 Thread Hilaire Fernandes
Asselin Raymond a écrit : Takes about 3 seconds here, with image in different directory from VM. On Tue, 06 Mar 2007 07:39:08 -0800, Hilaire Fernandes <[EMAIL PROTECTED]> wrote: I am pretty sure I read it somewhere in the Squeak mailing list why Squeak can be slow to start in W

[Newbies] Squeak slows to start up in Windows

2007-03-06 Thread Hilaire Fernandes
I am pretty sure I read it somewhere in the Squeak mailing list why Squeak can be slow to start in Windows... but I cannot find the information. I have just rename the image and executable with the same name, located in the same directory, but it start a bit slowly, about 20s. What is the tri

[Newbies] How to remove the need of the Squeak.source file

2007-03-06 Thread Hilaire Fernandes
For distribution purpose to end user, I don't want to ship the Squeak.source file. How can we remove the check of the sourcefile at image start up ? Hilaire ___ Beginners mailing list Beginners@lists.squeakfoundation.org http://lists.squeakfoundation.

[Newbies] Re: Creating custom events in a domain.

2007-02-24 Thread Hilaire Fernandes
Mispunt a écrit : Hi Squeakers, I am working an a project where we have a domain. this domain should not know the classes outside the world, so to communicate the domain should fire an event where the classes outside the domain could react to. How could this be done? I didn't find anything about

[Newbies] Re: Another newbie Morphic question

2007-02-09 Thread Hilaire Fernandes
mike clemow a écrit : Now I can create a new DuckMorph. Will Squeak support PNG transparency? I guess I could find that out myself. :) Yes, transparency and alpha-transparency as well. Just be sure to select the 32bit depth for display mode in the World>Appearance menu. Hilaire

Re: [Newbies] Drawing an Arc.

2006-07-09 Thread Hilaire Fernandes
ent me, but DrGArcMorph > is subclass of DrGPolylineMorph and i do not have this last class. > Can i install it with SqueakMap? > > Claudio. > - Original Message - > From: "Hilaire Fernandes" <[EMAIL PROTECTED]> > To: "A friendly place to

Re: [Newbies] Drawing an Arc.

2006-07-09 Thread Hilaire Fernandes
Hello Claudio, You may want to give a try to my simple DrGArcMorph in the enclosed change set. To use it: a :=DrGArcMorph new a center: [EMAIL PROTECTED] radius: 100 origin: 0 length: 3.1415 a openInWorld origin and length are in radian unit Hilaire Claudio Acciaresi a écrit : > Hello, I`m

Re: [Newbies] Traditional Chinese characters in Squeak

2006-06-11 Thread Hilaire Fernandes
Hello Bruno, Your best bet could be to group motivated persons and do the job. I know Hung Chao-Kuei in CC is in contact with organisation and people translating free software in traditional chinese, may be he can put you in contact with people to help. Hilaire bruno galmar a écrit : > Hi! > >

Re: [Newbies] dependency mechanism

2006-05-31 Thread Hilaire Fernandes
What about using the methods: #triggerEvent:with: and #when:send:to: obj when: #price send: #updatePrice: to: anObject2 obj triggerEvent: #price with: oldPrice where Object2>>updatePrice: aPrice Hilaire Chris Kassopulo a écrit : > Greetings, > > The basic dependency example from "Smalltalk B

Re: [Newbies] A true beginner with undo

2006-05-31 Thread Hilaire Fernandes
Guy a écrit : > Hi beginners, > > I'm beginning too with Squeak and one of the most important things for à > beginner is how to undo. So with Etoys and the drawing tool, I can undo > one level an the only way to do more, is to use the eraser. > > Something I misunderstand or is it true ? Yes,

Re: [Newbies] crossSum

2006-05-09 Thread Hilaire Fernandes
Enrico Schwass a écrit : Second, we dont know the class library very well. It tooks 20 min to find the smalltalk equivalent to != Its ~= for other newbies :) A bit off-topic, did you take a look at the following document: http://minnow.cc.gatech.edu/squeak/uploads/SqueakClassesRef.html Hil