The most common way to display a web page in Polywall is to use a "Web source" source in Polywall Designer interface. In this case a web page will be rendered with a built-in Chromium-based browser. Though the vast majority of web sites are compatible with Chromium, some of them are not. In this and some other cases it is beneficial to use an "Application" source in Polywall to launch a third party browser to display a specific web page. This option is available in Polywall Pro version only.


This article describes how to use some well-known web browsers as a video source for Polywall.


Internet Explorer


A typical recommended command to launch Internet Explorer as an "Application" source is:


"C:\Program Files\internet explorer\iexplore.exe" -noframemerging -k "<url>"


The command-line parameters are:


-noframemerging is used to prevent Internet Explorer from opportunistically merging to other running iexplore processes and run as a child of Polywall Visualizer process.

-k stands for 'kiosk mode' used to hide browser user interface.

"<url>" is a web page URL.


P.S. It should be \Program Files\, not \Program Files (x86)\


For example:



"C:\Program Files\internet explorer\iexplore.exe" -noframemerging -k "https://www.youtube.com/embed/XvB7hOY9m90?autoplay=1"





Google Chrome



Issues which we need to solve are:

  • Google Chrome does not launch separate processes for different web pages, therefore separate user data directories have to be created manually for each running instance of Chrome.
  • Google Chrome has an out of the box 'kiosk mode' as in Internet Explorer, it behaves in other manner and will always use all the awailable viewport space, rendering to be not quite compatible with a way Polywall controlls target application's window size. There is a workaround solution to launch Chrome in a windowed mode without window system borders.


A typical recommended command to launch Google Chrome as an "Application" source is:


"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app="URL" --user-data-dir="Path to profile"


Where:


--app= - it is kiosk mode analogue, which is necessary to hide browser user interface

"URL" - is a web page URL.

--user-data-dir=  - command to open chrome in specific profile

"path to profile" - path to specific profile.


Profile should be unique for each source. For example:


First source will look like this - "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=https://www.youtube.com --user-data-dir="C:\chromeprofile\profile1"


Second source should be - "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=https://www.facebook.com --user-data-dir=C:\chromeprofile\profile2"


P.S. If you want to put the same website on the screen two or more times, all of them should have unique profile.



Google Chrome with tabs.


In case of necessity of several full functional Google Chrome apps this article will be useful.


1. Press Win+R open chrome with this comand - "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="*Path to profile*"


Set path to profile by yourself. Chrome will create a folder with a new profile automaticaly. You need as much profiles as you need chrome source on a videowall.


Example: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="C:\Mychrome\1"


2. Setup each profile like you need (for example which web pages will run on startup, addons, etc.)


4. Close it in windows mode (If you will close window in full screen mode, the system will open it in full screen mode next time).


5. Open Polywall Designer and create application source with path you opened in step 1. 

For example "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="C:\chrome data\Profile1"




P.S. When you reopen chrome browser error popup may appear and you will need to press restore button via management mode.






Mozilla Firefox (Updated 12.05.2021)


Last version of Mozilla Firefox 



Creating profiles


As Firefox will not create a separate process for a web page, each page that is going to be displayed in Polywall needs to be run in a separate Firefox profile.


To add a profile type in console:


"<path to firefox.exe>\firefox.exe" -no-remote -P


Create as much profiles as needed in an appeared window, a separate profile for every web page that is going to be displayed in Polywall. In this tutorial the profile names used are profile1, profile2, etc, though any names may be chosen.


Creating Polywall sources


For each web page a separate "Application" source has to be created as follows:


"<path to firefox.exe>\firefox.exe" -no-remote -p profile1 <url1>

"<path to firefox.exe>\firefox.exe" -no-remote -p profile2 <url2>


The command-line parameters are:


-no-remote prevents Firefox to communicate with other running firefox instances

-p <profile> launches Firefox instances with separate user profiles created above, as it is impossible to launch several instances of firefox with one profile

<url> is a web page URL


IMPORTANT!


In latest version of firefox, to run it via Polywall you need to use "Advanced" settings (Polywall 3.4 and higher):


1. In "WIndow Class Name" field allways enter - MozillaWindowClass

2. Window title - Title of the page you want to open. For example, Google.com has title "Google"



Configuring Firefox


As mentioned above Firefox has to be properly configured to run correctly without crashes in Polywall.


The Firefox settings are available under Firefox configuration editor, which can be accessed by typing about:config in the address bar. Please note, that all of the following settings have to be configured for each user profile separately in a Firefox session invoked with -no-remote -p <profile> parameters.


 The recommended settings are:


browser.tabs.remote.autostart      false


These two options disable 'Multiprocess Firefox' aka E10s.


browser.sessionstore.resume_from_crash   false

toolkit.startup.max_resumed_crashes      -1


These two options prevent Firefox crash recovery dialog, as Firefox considers the termination from outside as a crash.


Running in full screen mode.


Mozilla Firefox has no longer support of full screen mode.