Order of the Butterfly
Posts: 220 from 2003/11/14
From: Bavaria
Quote:NewSense wrote:
@
pOS - Have you created a MUI screen to use Wayfarer on? That way you will be able to use it on a full size screen, or you can just use the window sizing gadget or Ctrl+edge of GUI window border left mouse-press option to resize it on the screen it is on to make it sized to the maximum it can be on the screen it is on.
Is there a "common F11" keypress on MorphOS that I don't know about?

The only "Function" key assignment I know of in MorphOS is for the iMac and that is F1 + F2 to adjust the brightness. AFAIK there are none assigned other than that?

Hello,
you suggest to simulate a fullscreen like behaviour.
What I meant was a real fullscreen mode, that only shows the content from inside the web site with no gui elements at all.
Wayfarer has such a mode. You can experience that when you watch a Youtube Video and press the fullscreen button there.
Wayfarer opens a new Custom Screen and uses the same resolution as your Ambient/Workbech/Desktop screen has.
You can switch back to Ambient screen with <lamiga><m> as usual.
There you see that the tab of the website has a text like "this content is shown in fullscreen now. Doubleclick in this tab or ESC on the fullscreen to end fullscreen mode".
Actually you can have several web sites shown in fullscreen, each on it's own screen and others being not in fullscrenn mode , all at the same time.
Problem is, that I do not know the keyboard shortcut to switch to fullscreen. And there is no menu item either.
Common key in web browsers to switch the mode is F11. That works in Edge, Firefox, Chrome, OWB/Odyssey.
To show hwo fullscreen behaves like in Wayfarer, save this code to fullscreen.html and open it in Wayfarer:
Code:
<!DOCTYPE html>
<head>
<title>
Fullscreen Demo
</title>
</head>
<script>
function toggleFullScreen() {
if (!document.fullscreenElement) {
if (document.documentElement.requestFullscreen) {
document.documentElement.requestFullscreen();
}
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
}
}
}
</script>
<body>
<button onclick="toggleFullScreen()">Toggle Fullsreen</button>
</body>
</html>
[ Edited by pOS 18.02.2025 - 21:34 ]