View Single Post
  #6  
Old 03-03-2016, 06:51 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Just an update here, if you want to force Vizard to use IE11 as the embedded browser to display html and javascript, use the following code:

Code:
import _winreg
reg = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, r'Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION',0,_winreg.KEY_ALL_ACCESS)
_winreg.SetValueEx(reg,'VizHTMLViewer.exe',0,_winreg.REG_DWORD,11001)
Reply With Quote