Page 1 of 1
LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Sat Mar 26, 2022 1:42 pm
by williamdesmet
Hi There,
In LC10 DP2 I used code (from another HTML5 thread) to show my web app fullscreen and centered.
Code: Select all
on openStack
if the environment is "development"
then
set the fullscreen of me to false
else
set the fullscreenmode of me to "showAll"
set the fullscreen of me to true
end if
end openStack
In DP3 this doesn't work anymore.
Is there another way to do this?
Or do we now have to make the canvas fullscreen and centered by CSS or javascript code?
Anyone knows how to do this?
Greetings,
William
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Sat Mar 26, 2022 7:19 pm
by richmond62
First question has to be: What platform is that on?
Over 'here' (MacOS 12.3):
On the desktop . . .
[Not sure how a stack can be 'development' when rendered as a web app]
-
-
Works: and:
-
-
Works as well.
But this:
Code: Select all
on openStack
if the environment is "development"
then
set the fullscreen of this stack to false
else
set the fullscreenmode of this stack to "showAll"
set the fullscreen of this stack to true
end if
end openStack
Does NOT work in either LC 10 DP3 or LC 9.6.3
Nor does this (in either version of LC):
Code: Select all
on openStack
if the environment is "development"
then
set the fullscreen of me to false
else
set the fullscreenmode of me to "showAll"
set the fullscreen of me to true
end if
end openStack
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Sat Mar 26, 2022 9:02 pm
by richmond62
In DP3 this doesn't work anymore.
When did this work?
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Sat Mar 26, 2022 11:03 pm
by williamdesmet
@ Richmond: this worked for me with web/html5 apps in DP 1 and DP 2 on macOSX 11.5.2
The thread I mentioned with the code:
viewtopic.php?p=197720#p197720
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Sun Mar 27, 2022 5:35 pm
by williamdesmet
And to illustrate what I mean you can follow these links to my site:
LC 10 DP2
https://lc10dp2.camelcaps.nl
LC10 DP3
https://lc10dp3.camelcaps.nl
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Sun Mar 27, 2022 6:14 pm
by richmond62
Unfortunately, Brave browser gives me 2 blank pages.
Ah . . . just took donkey's ages to load (which is another problem).
-
-
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Mon Mar 28, 2022 9:44 am
by Kangaroo SW
I can confirm that this is no longer working, please file a bug request in the quality center
Cheers
Kangaroo SW
Re: LC10 DP3 - app fullscreen/fullscreenmode no longer possible?
Posted: Tue Mar 29, 2022 12:11 pm
by williamdesmet