TedvG TedvG wrote
What I really would like perhaps in the next release a Full Screen Toggle Button somewhere on the desktop..
Here's a class-side method I use to add such a button to the world menu: fullscreenMenuOn: aBuilder <worldMenu> (aBuilder item: #'Toggle Fullscreen') action:[ Display toggleFullScreen ]. TedvG TedvG wrote
like in the Chrome Internet Browser could you assign it to the F11 key?
You can now use Keymapping to use whatever shortcut you want for any action. How about: Morph class>>buildKeymappingsOn: aBuilder <keymap> (aBuilder shortcut: #toggleFullscreen) category: #Fullscreen default: $l command "I couldn't test Fn-11 because the Mac system uses it" do: [ :morph :event | Display toggleFullScreen ]. aBuilder attachShortcutCategory: #Fullscreen to: Morph. HTH, Sean -- View this message in context: http://forum.world.st/Full-Screen-Button-would-be-nice-tp4116904p4117610.htm... Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.