The Home page on the Welcome tab can be configured for your organization or project by putting an HTML file named swExplorer.html in the same folder as your swExplorer.exe.


Example

Below is the html for the above Home page. Because it references an image file, that file must also be contained in the Client directory along with the swexplorer.html.

<!DOCTYPE html>
<html>
<body>
	<div>
	  <a href="https://systemweaver.com/" target="_blank">
	  <video id="vid" width="100%" height="100%" autoplay muted>
	  <source src="SW-casetest_SH.mp4" type="video/mp4">
          </video>
	  <script>  
                document.getElementById('vid').play();
                vid.loop = false; 
           </script>
	  </a>
	</div>
</body>
</html>

The text can include site-specific information about a SystemWeaver installation, planned upgrades of the SystemWeaver environment, process and method descriptions, links to the helpdesk and similar. Embedded links will open in the user's default browser. 


If you make a redirect in the HTML file, the home page will automatically be updated, e.g., to display news about the SystemWeaver environment:

<HTML> 
<head> 
<title>SystemWeaver Redirect Page</title> 
<meta http-equiv="REFRESH" content="0;url=https://support.systemweaver.se/en/support/home"> 
</HEAD> 
</HTML>