Re: [Pharo-users] have a question for morphic Designer in pharo.

2013-12-27 Thread peter yoo
great! "source: (self ui widgetList);" this code line is real solution. before i dont know, where inittilize "source". drag and drop is ok. and look object is ok. but cannot edit object property.(maybe mouse focus event problem) encounter new error then make new thread right? ps. thank yo

[Pharo-users] Event handling in TextMorphs

2013-12-27 Thread Stephan Eggermont
handleInteraction:fromEvent: no longer exists in TextMorph in Pharo 3.0. Just replacing it by handleInteraction: doesn't do the right thing. What should I be doing instead? Stephan mouseDown: evt evt yellowButtonPressed ifTrue: [ ^ self yellowButtonActivity: evt s

Re: [Pharo-users] Pharo code formatting

2013-12-27 Thread Ihor Mykhalevych
Hello everyone! Does anyone know if there were some changes to the Pharo code formatter after Pharo version 2.0? Best regards, Ihor Mykhalevych

Re: [Pharo-users] Is someone working with Log4s?

2013-12-27 Thread dmacq
Hernan, The Visual Smalltalk method is this: currentClassAndMethod ^Association key: self class name asString value: (Processor activeProcess methodAtFrame: 1) selector asString I think the Pharo equivalent would be this: currentClassAndMethod

Re: [Pharo-users] Is someone working with Log4s?

2013-12-27 Thread jtuc...@objektfabrik.de
#currentClassAndMethod is VAST specific. It was added to VAST for log4s, afaik. I am quite sure Donald is interested in hearing about your problems with it. Did you contact him just the other day or some time ago? Joachim Am 27.12.13 10:53, schrieb Hernán Morales Durand: Because there is a mis

Re: [Pharo-users] have a question for morphic Designer in pharo.

2013-12-27 Thread Stephan Eggermont
When trying to load Designer in Pharo 3.0 I find uncompilable code in Animations: 'updateCurrentValue: aValue self target ifNil: [^ self]. self target perform: (self property, #:) asSymbol with: aValue.'

Re: [Pharo-users] have a question for morphic Designer in pharo.

2013-12-27 Thread Stephan Eggermont
Peter Yoo wrote: >1. im look monticello now. can look more version now. 28, 30 Interesting. I still cannot see anything newer than .24 in http://www.hpi.uni-potsdam.de/hirschfeld/squeaksource/MetacelloRepository Are you sure that it is exactly the same repository? There is likely to be a differen

Re: [Pharo-users] Is there any fundamental technical barrier to compiling to JVM byte codes?

2013-12-27 Thread Stéphane Ducasse
On 27 Dec 2013, at 18:21, Andy Burnett wrote: > > << > > The fun is important. > What we want is well designed and powerful libraries that enabled people. > For the JVM question: it is a question of resources + the fact that jvm do > not really support well some key smalltalk operations. > No

Re: [Pharo-users] Is there any fundamental technical barrier to compiling to JVM byte codes?

2013-12-27 Thread Andy Burnett
<< The fun is important. What we want is well designed and powerful libraries that enabled people. For the JVM question: it is a question of resources + the fact that jvm do not really support well some key smalltalk operations. Now I do not understand why people develop their own vm instead of jo

Re: [Pharo-users] Image starts and closes automatically

2013-12-27 Thread Hernán Morales Durand
Next time put information about your environment, which OS, which Image, which VM, because people cannot help with such missing important information. People cannot guess what Pharo are you using. So any replies would be wasteful. 2013/12/27 Esteban A. Maringolo > Esteban Lorenzano wrote: > > d

Re: [Pharo-users] Image starts and closes automatically

2013-12-27 Thread Esteban A. Maringolo
Esteban Lorenzano wrote: > do you have a PharoDebug.log? > this things are usually related to an open socket not well handled… It might be, the last thing I did before saving was to close the Zinc server. But it never failed before. If there was a PharoDebug.log I didn't see it. (see next) 2013/

[Pharo-users] Is someone working with Log4s?

2013-12-27 Thread Hernán Morales Durand
Because there is a missing method (#currentClassAndMethod) and author didn't replied. Maybe I am using it wrong EsLogManager runForever: '[log4s] debugEnabled=''true'' quietMode=''false'' globalLevel=''All'' ;runForever=() ;runForever=''75'', ''7'' dailyRollingFileAppender=''TestDailyRollingFileAp

Re: [Pharo-users] have a question for morphic Designer in pharo.

2013-12-27 Thread Stéphane Ducasse
On 27 Dec 2013, at 01:41, peter yoo wrote: > 1. im look monticello now. can look more version now. 28, 30 > > 2. email to Marcel Taeumel already. but not receive return mail. mabe into > spam? > > 3. latest squeak is cannot use too. squeak 4.1 image(in squeak 4.4 all in one > vm) with morphi

Re: [Pharo-users] Image starts and closes automatically

2013-12-27 Thread p...@highoctane.be
Time for some Oz magic... Got this kind of thing as well a couple times. Phil On Fri, Dec 27, 2013 at 7:40 AM, Esteban Lorenzano wrote: > do you have a PharoDebug.log? > > this things are usually related to an open socket not well handled… > > On 26 Dec 2013, at 22:04, Hernán Morales Durand >