no
- How to hide development tools, world menu, global keyboard shortcuts,
etc.?
you can use keychain (world menu/system/switch user) to create an user without permissions, then, in combination with the morph on top of the world, you are actually closing the image :)
- How to make a nice One-Click-Application, that preferably should have the
name and icon of the application and not be called Pharo (not because i do
not love Pharo, but because people won't understand :)
rename the app works, but you still have the icon problem... which is�trivial in mac (you just edit the info.plist file), but for windows... not so :)
what you need to do is to build your own vm changing the icon... and that was a hard task some time ago, but now is really easy: fork at gitorious (
https://gitorious.org/cogvm/blessed) and follow the HOWTOBUILD file.�
For your needs, you need to subclass PharoWindowsConfig and�PharoOSXConfig to�change the icon and the name... then you can build it easily.�
- How to automate all the above tasks, so i can easily build a new
One-Click-Application again and again.
- What do i state as system requirements? "You need at least Windows XYZ or
MacOS 10.X to run this application"
you could check that using NB-FFI and calling some system functions (no idea which ones, thought)
Esteban