Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Dimitris Chloupis
and here is a video tutorial of how to use ChronosManager https://youtu.be/up9cW79S-jA "That's one fancy looking UI. Well done. The glow effect is really nice, as are the seconds LEDs and the embossing." Thanks this was my very first custom GUI graphics so I was learning how to make those thing

Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Stephan Eggermont
That's one fancy looking UI. Well done. The glow effect is really nice, as are the seconds LEDs and the embossing. I was somewhat confused by the enabling/disabling of the stopwatch In the pomodoro timer I use you can enter a description of where you are working on. Do you plan to add somethin

Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Dimitris Chloupis
After popular demand I updated ChronosManager so you can easily resize the GUI to fit your exact needs using the convenience of halos. So now its easy to change its size to something much smaller , I will keep improving this area. On Tue, Nov 17, 2015 at 4:31 PM Dimitris Chloupis wrote: > " > Cu

Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Dimitris Chloupis
" Curious to see how you made the digits, and led progress bars. " sorry forgot to answer this the digits are just a stringMorph with a custom true type font which i distribute together with ChronosManager. If you go to github-cache and in the folder of the project you will find it in the fonts s

Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Dimitris Chloupis
"It's awesome, and comes in handy as well. On the one hand, I'm a Pomodoro practitioner myself (using Android's Pomodroido). On the other, I'm interested in learning how to build GUIs inside Pharo. Congrats and thank you" I am so glad you like and find it useful. Yes I have found pomodor a very s

Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Ben Coman
On Tue, Nov 17, 2015 at 8:00 PM, Dimitris Chloupis wrote: > > Hello people, as you may or may not remember I shared a sneak peak of my latest tool for my project Ephestos , a time managment tool I call ChronosManager. > Looking really sweet. I'll try it soon. btw, I see a few people here misusin

Re: [Pharo-users] [ANN][EPHESTOS] ChronosManager a time managment tool

2015-11-17 Thread Johan Fabry
That looks very cool! Impressive look, very sci-fi and polished, congrats! > On Nov 17, 2015, at 09:00, Dimitris Chloupis wrote: > > Hello people, as you may or may not remember I shared a sneak peak of my > latest tool for my project Ephestos , a time managment tool I call > ChronosManager.

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Thierry Goubier
2015-11-17 13:40 GMT+01:00 Peter Uhnák : > > > On Tue, Nov 17, 2015 at 1:25 PM, Thierry Goubier < > thierry.goub...@gmail.com> wrote: > >> >> >> 2015-11-17 13:20 GMT+01:00 Peter Uhnák : >> >>> Thanks! >>> >>> One more question though: is it possible to somehow reference the >>> method's name? >>>

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Peter Uhnák
On Tue, Nov 17, 2015 at 1:25 PM, Thierry Goubier wrote: > > > 2015-11-17 13:20 GMT+01:00 Peter Uhnák : > >> Thanks! >> >> One more question though: is it possible to somehow reference the >> method's name? >> >> For example I would like to rewrite method >> >> [[[ >> navy >> ^ self fromHexString:

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Thierry Goubier
2015-11-17 13:20 GMT+01:00 Peter Uhnák : > Thanks! > > One more question though: is it possible to somehow reference the method's > name? > > For example I would like to rewrite method > > [[[ > navy > ^ self fromHexString: '80' > ]]] > > to > > [[[ > navy > ^ ColorRegistry at: #navy ifAbsentP

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Mark Rizun
Actually for now it's not possible as I parse expression not a method.

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Peter Uhnák
Thanks! One more question though: is it possible to somehow reference the method's name? For example I would like to rewrite method [[[ navy ^ self fromHexString: '80' ]]] to [[[ navy ^ ColorRegistry at: #navy ifAbsentPut: [ self fromHexString: '80' ] ]]] of course for that I would ne

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Mark Rizun
Hi again, it should work now ;) 2015-11-17 13:40 GMT+02:00 Mark Rizun : > Hi Peter! > > In any case if you just remove #hShrinkWrap message sends from > #initializeWidgets, it will only change UI a bit, you will be able to work > with tool. > But soon I'll fix it. > Thanks for reporting :) > > Ma

Re: [Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Mark Rizun
Hi Peter! In any case if you just remove #hShrinkWrap message sends from #initializeWidgets, it will only change UI a bit, you will be able to work with tool. But soon I'll fix it. Thanks for reporting :) Mark 2015-11-17 13:30 GMT+02:00 Peter Uhnák : > Hi, > > RewriteTool is not working in late

[Pharo-users] RewriteTool not working in latest Pharo

2015-11-17 Thread Peter Uhnák
Hi, RewriteTool is not working in latest pharo, complaining about #MNU CheckboxMorph>>hShrinkWrap when opening RewriteRuleBrowser, and #MNU LabelMorph>>hShrinkWrap for RewriteRuleBuilder. I am not familiar with Morphic enough and I don't know why the morphs are accessed directly from Spec to fix

Re: [Pharo-users] Multitouch example

2015-11-17 Thread Stephan Eggermont
On 17/11/15 08:58, Merwan Ouddane wrote: I fixed it Thanks, that does it. I can now rotate and zoom photo's with TUIOpad after making sure that I've added a few to the screen, as it doesn't recognize objects added to the screen :) Stephan

Re: [Pharo-users] Multitouch example

2015-11-17 Thread Merwan Ouddane
I fixed it On 16/11/2015 20:37, Stephan Eggermont wrote: I'm trying to get the multitouch example to work, connecting an iPad with TUIOPad to an MBP. Tuio2DDCirsor sends #deliverAdd:to:from: to an OSTUIODriver, that then tries to send #deliver:. That doesn't exist (anymore?). Anyone know what th