Open StewMacLean opened 2 years ago
Section about setting window title is outdated as well:
Section with: https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/DeployYourPharoApplication.md#change-the-logo-and-window-title-of-the-application
should be update with: World worldState worldRenderer windowTitle: 'My Application
Icon setup: World worldState worldRenderer icon: anIcon
.
TODO: How to instantiate Icon from file.
In Pharo 10 I can't find the method to open a morph/presenter in full screen mode to ensure the user cannot access content behind it:
MyPresenter new openWorldWithSpec.
The guide makes not references to versions later than 7.
In spite of this, it is a very good starting point - thanks!
Update:
In Pharo 10 and later you can use:
MyPresenter asWorldWindow open.
Other points:
A workaround is to append the following to the end of checkForNewScreenSize:
[self currentWorld simulateMiddleClick] fork
Happy runtime!