Re: [Pharo-users] Embedded PDF viewer?

2018-02-05 Thread Ben Coman
On 14 November 2017 at 00:18, Sean P. DeNigris wrote: > Ben Coman wrote >> I've wanted PDF rendering inside Pharo for *years* and finally got a >> sniff of a solid possibility - so I'm chasing it down. It might not pan >> out like I imagine, but "Live programming PDF

Re: [Pharo-users] From Roassal RTView to html

2018-02-05 Thread Andrei Stebakov
Now it takes me to the right page, thanks! One small glitch though, looks like after mouse click the UI element gets grabbed by the mouse as if I pressed "click and hold". So the only way to dis-engage the mouse from the element is to refresh the html page. On Mon, Feb 5, 2018 at 3:21 PM, milton

Re: [Pharo-users] From Roassal RTView to html

2018-02-05 Thread Andrei Stebakov
Updated roassal via: Gofer new smalltalkhubUser: 'ObjectProfile' project: 'Roassal'; package: 'ConfigurationOfRoassal'; load. (Smalltalk at: #ConfigurationOfRoassal) load The problems is still the same: added ".html" suffix. On Mon, Feb 5, 2018 at 3:09 PM, Alexandre Bergel

Re: [Pharo-users] From Roassal RTView to html

2018-02-05 Thread Alexandre Bergel
Andrei, let us know how it goes Cheers Alexandre Envoyé de mon iPad > Le 5 févr. 2018 à 16:51, milton mamani a écrit : > > Your need to load the last version of roassal, I change it that > > 2018-02-05 16:44 GMT-03:00 Andrei Stebakov : >> Milton,

Re: [Pharo-users] From Roassal RTView to html

2018-02-05 Thread Andrei Stebakov
Milton, thanks for the example. I wonder why the link it takes me to has an appended ".html" at the end like "https://twitter.com.html;? On Mon, Feb 5, 2018 at 12:55 PM, milton mamani wrote: > Hi Andrei, > > This is some example. > > Let me know if this is what you want. >

Re: [Pharo-users] From Roassal RTView to html

2018-02-05 Thread Andrei Stebakov
I'll try to find if there is a way to embed a clickable interaction. Looks like since there is no response to the topic, I was wondering if it's a non-pharo/roassal way to do it or it's just not so many people tried it. On Sat, Feb 3, 2018 at 5:42 AM, Alexandre Bergel

[Pharo-users] image lockdown/deployment mode

2018-02-05 Thread Baveco, Hans
Is there a way to disable the programmer facilities and produce a locked image for an end user? I would be happy if I could at least replace the world menu with a custom menu. In the developers-list archives I only found an old discussion (May 26 2010 Image Lockdown/Deployment mode), without

Re: [Pharo-users] Neural Network - Handwritten Digit Recognition

2018-02-05 Thread francesco agati
nice, the model can also be serialized for loading in other vm? 2018-02-04 13:42 GMT+01:00 Pierce Ng : > Hi all, > > I've written a blog post on recognizing handwritten digits using neural > networks in Pharo. > >

Re: [Pharo-users] Pharo things analog reads ?

2018-02-05 Thread Denis Kudriashov
Hi Steven. I added I2C support to PharoThings and WiringPi. Now you can ask the board instance for I2C connection: i2cConnection := board connectToI2CDevice: 4. And then read/write data using wiringpi functions like:

Re: [Pharo-users] How can a Morph display a context menu on a mouse click?

2018-02-05 Thread Stephan Eggermont
Juraj Kubelka wrote: >> morph := 'Hello' asMorph. >> morph on: #mouseUp send: #traceCr: to: morph. >> morph openInWindow. >> > > This does not work for me either. > I am fine with the MorphicEventHandler solution. Not at all? Or do you just need to use the variant

Re: [Pharo-users] How can a Morph display a context menu on a mouse click?

2018-02-05 Thread Juraj Kubelka
> El 03-02-2018, a las 07:26, stephan escribió: > > On 02-02-18 15:19, Juraj Kubelka wrote: >> Thank you Stephan! >> There is my exercise: >> “when:send:to" >> morph := 'Hello' asMorph. >> morph when: #click send: #traceCr: to: morph. >> morph openInWindow. > > Sorry > >

Re: [Pharo-users] global exception handler mechanism

2018-02-05 Thread Igor Stasenko
On 5 February 2018 at 10:17, Marcus Denker wrote: > Hello, > > The Sunit-Debugger does a stack search on startup to find the test related > exception. > > It might be good to do it better, especially as the debug process starts > from the exception > I might be a good

Re: [Pharo-users] global exception handler mechanism

2018-02-05 Thread Marcus Denker
Hello, The Sunit-Debugger does a stack search on startup to find the test related exception. It might be good to do it better, especially as the debug process starts from the exception I might be a good idea to actually keep a reference to it. Would there be any downside of Exception>>debug