The first example illustrates the parameter settings to specify a web browser not supported by Abaqus: browser_type = CUSTOM_BROWSER browser_path = ['full_path_to_browser', 'argument1', 'argument2', etc.] where the first string contains the full path to the web browser and subsequent strings are arguments to customize the browser behavior. Refer to the specific web browser documentation for valid arguments. The second example illustrates the parameter settings to specify the Opera browser (not supported by Abaqus) as the web browser: browser_type = CUSTOM_BROWSER browser_path = ['/usr/local/bin/opera', '-newwindow' '%s'] where The third example illustrates the parameter settings to specify the Konqueror browser (not supported by Abaqus) as the web browser: browser_type = CUSTOM_BROWSER browser_path = '/opt/kde3/bin/konqueror' where |