Changing cAD windows title and URL icon

Hi,

We have developed an application with cAD 2.1 and we only need to do to small tasks:

  1. To change the title of the navigator window (IE o Firefox)from “http://machine:51000/cis/AppName…” to the application name.
    In HTML this would be done by adding the tag in the of the page, but we don’t know how to do it in cAD.

  2. To change the IE icon placed on the left of the URL for the customer one.

Do you know how to do this?

Thanks in advance,

…either use a wrappede starter page that contains the TITLE tag…

<html>

<head>
<title>Demo Workplace - Application Designer</title>
</head>

  <frameset>
      <frame id="TOPWORKPLACE" name="TOPWORKPLACE" src="../../servlet/StartCISPage?PAGEURL=/HTMLBasedGUI/MFDemos.html" noresize scrolling="no" frameborder="no">
  </frameset>
  
</html>

…or use the method…

getCISAddons().setBrowserTitle

…within your page adapter (available since V2.2).

A favorite icon is possible using a plian HTML starter page only (ie can not be defined with the XML layout, sorry)

Martin