Re: Open a URL in full screen from Power Apps
Hi @Anonymous,
Do you want to launch a URL from Power Apps and open a new window in Chrome with full screen?
Could you please share a bit more about your scenario?
Actually, as I know that our Edge browser does have a feature of opening Edge in full screen without any menus, you can use Kiosk Mode.
You can add --kiosk
flag to enable kiosk mode in Edge, the sample code is like below:
start msedge
taskkill /F /IM msedge.exe
%windir%\system32\cmd.exe /c "start msedge.exe --kiosk --disable-extensions --new-window --start-fullscreen --disable-popup-blocking https://apps.powerapps.com/play/{app_link}"
In addition, you could consider adding a rectangle with the size of the full screen (1366 wide) to each screen.
o Adjust the width of the rectangle to 1366px and adjust the color to the background color of your app.
o Assuming your app is landscape, set the Screen Size + Orientation settings
- 16:9 (Default)
- Scale to Fit On
- Lock Aspect Ratio to off
- Lock Orientation to on.
Please check if the above could help you at some degree.