[Pharo-users] Re: Alt-Tab equivalent inside Pharo

2025-06-22 Thread Renaud de Villemeur via Pharo-users
Ctrl-Tab and Ctrl-Shift-Tab works in Pharo 13. I'm not sure if it was implemented in previous version. Renaud Jun 21, 2025, 22:11 by pharo-users@lists.pharo.org: > Hi: > > In Windows OS, Alt-Tab switches between the two past OS windows. > It is very convenient for flipping between two OS wind

[Pharo-users] Re: Updating a Form after changing pixel values

2025-03-09 Thread Renaud de Villemeur via Pharo-users
Hi Mikael If my understanding is correct, you're using SpImagePresenter to display a Form.  You then have made some changes to  the Form and you want to show its new face.  Why don't you set the image again in your presenter ? Something like `image image: yourUpdatedForm`. You can even update

[Pharo-users] Re: Converting global coordinates from a mouse event

2025-03-05 Thread Renaud de Villemeur via Pharo-users
Hi Mikael I assume you use spec with the Morphic underlying graphical library. In your presenter: - `anEvent position` will give you the event position in the global world coordinate. - `self adapter widget position.` will give you the top left corner underlying Morph position in the global wo

[Pharo-users] Re: How can I remove an item on the main Pharo menu left over by a Roassal installation?

2024-06-28 Thread Renaud de Villemeur via Pharo-users
The  pragma is automatically scanned by Pharo World, and identified item are then picked and displayed. This makes it easy to add custom menu item while loading external project. The downside is that unless you want to disable completely this mechanism, you need to remove this simple pragma from

[Pharo-users] Re: [ANN] Pharo Launcher 3.0 released!

2022-04-15 Thread Renaud de Villemeur via Pharo-users
I think that this this broke > the VM somehow. > > > To fix this, I uninstalled Pharo-Launcher, cleaned out everything in > %userprofile%\AppData\Local\PharoLauncher, reinstalled it, and now it works > again. > > >   > > > Craig > >   > > On 2022-

[Pharo-users] Re: [ANN] Pharo Launcher 3.0 released!

2022-04-14 Thread Renaud de Villemeur via Pharo-users
Thanks for the update. The Pharo Launcher is a really valuable tool. I experience some issue on windows (windows 11 pro). The launcher doesn't show up. I double click on the icon, and no window appears. I can however see that the process is running in the task manager. I can open the launcher im

[Pharo-users] Re: Share package

2021-07-22 Thread Renaud de Villemeur via Pharo-users
Hi, You need to define a baseline, that will contain a definition of your dependencies, and everything needed to load and run your package with Metacello in Pharo. For a full documentation, look here:  https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md All

[Pharo-users] [ANN] QRCode on github

2020-04-13 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Need to generate a QRCode ? An old (but still relevant) project was available on smalltalkhub. As I wasn't aware if it was already available elsewhere, I moved it to Github, including load instruction: https://github.com/rvillemeur/QRCode Unit test are all green on Linux.

Re: [Pharo-users] Can't able to understand the code

2020-04-08 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi I'm not a FFI expert, and you code may not be the latest FFI version. However, If I look at it from Pharo side: When you want to use Athens with Cairo backend, you have to initialize its surface using a call like: surface := AthensCairoSurface extent: self extent Note

Re: [Pharo-users] Can't able to understand the code

2020-04-07 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi What are you trying to do ? To use Athens ? Do you want to use it with Morphic ? Renaud Apr. 7, 2020, 08:59 by shawonhoqu...@gmail.com: > I try to run the code which attached below. But i dont have idea what i need > to write on playground to run the code. can anyon

Re: [Pharo-users] [ANN] SmalltalkHub Deprecation Notice

2020-04-03 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi Guille. It's a good news to see the community is moving forward. What would be the impact on Pharo catalog ? The instruction still advise to upload information to smalltalkhub: http://catalog.pharo.org/catalog/note-for-developers?_s=bHk4XDBcH9mb0muM&_k=WPHmGPa_-V3tv21k

Re: [Pharo-users] issue with PharoLauncher

2020-03-11 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi again Apparently, the issue is on the VM side. I unpack the 9.0 VM into the 8.0 folder, and everything went fine. Looks like there is an issue on windows when getting the latest 8.0 VM. Looking the the dev mailing list, I can see a similar issue has been raised, when yo

[Pharo-users] issue with PharoLauncher

2020-03-11 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi. Are there any recent update with PharoLauncher ? It worked fine yesterday, but today I cannot launch default 8.0 image. It fail with a debug message: Instance of ZnBufferedWriteStream did not understand #name. I'm surprised to receive such message, and can't find out w

Re: [Pharo-users] Hi-DPI Support

2020-02-19 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- For the mouse pointer, if you're on Windows, you can have a look at VistaCursor Metacello new repository: 'github://astares/Pharo-VistaCursors/src'; baseline: 'VistaCursors'; load It has scale factor available in the settings application. Renaud Feb. 18, 2020

[Pharo-users] enhance object presentation in the inspector for documentation

2020-02-12 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi all. I really like the ability we have in the browser to set and signal method with sample code so we can run them easily by a simple click. The pragma or are really helpful to document entry point or keep example as small script directly with the code. To have a bet

Re: [Pharo-users] Setting a model for a Spec UI in Pharo 8

2020-02-12 Thread Renaud de Villemeur via Pharo-users
--- Begin Message --- Hi Bren. Are you doing it with Spec2 ? >From my understanding, Spec2 is an MVP framework (Model-View-Presenter) - The model represent the domain logic of the application - The presenter let the developer do the UI programmaticaly and connect it to the Model. - The UI drawi