How to avoid the hint
First, a .js file is needed in the published files, and then javascript is needed to be added to the page the VT is on. For example:
1. In the published tour created with tw1.3, open the Tourviewer_*.html, put the javascript of it into the .js file:
<applet
codebase = "."
archive = "twviewerp.jar"
code = "com.easypano.tw.TWViewer.class"
name = "TWViewer"
width = "800"
height = "493"
hspace = "0"
vspace = "0"
mayscript = "true"
>
<PARAM name = iniFile value = "Config_1.tx1">
<PARAM name = skin.bgcolor value = "255, 255, 255">
<PARAM name = skin.waitingimg value = "Skin/waiting.gif">
<PARAM name = skin.archive value = "Skin_1.zip">
<PARAM name = skin.archive.itemnum value = "7">
<PARAM name = progress.color value = "58, 110, 165">
<PARAM name = progress.bounds value = "160, 443, 480, 20">
<PARAM name = comappletname value = "UserApplet1">
</applet>
2. Create a *.txt file. The content of it should be like this:
var appletTag = '<applet\n' +
‘codebase = "."\n ’ +
‘archive = "twviewerp.jar"\n ’ +
‘code = "com.easypano.tw.TWViewer.class"\n ’ +
‘name = "TWViewer"\n ’ +
‘width = "800"\n ’ +
‘height = "493"\n ’ +
‘hspace = "0"\n ’ +
‘vspace = "0"\n ’ +
‘mayscript = "true"\n ’ +
'> \n' +
‘<PARAM name = iniFile value = "Config_1.tx1">\n ’ +
‘<PARAM name = skin.bgcolor value = "255, 255, 255">\n ’ +
‘<PARAM name = skin.waitingimg value = "Skin/waiting.gif">\n ’ +
‘<PARAM name = skin.archive value = "Skin_1.zip">\n ’ +
‘<PARAM name = skin.archive.itemnum value = "7">\n ’ +
‘<PARAM name = progress.color value = "58, 110, 165">\n ’ +
‘<PARAM name = progress.bounds value = "160, 443, 480, 20">\n ’ +
‘<PARAM name = comappletname value = "UserApplet1">\n ’ +
'</applet>\n '
document.write(appletTag)
3. Save the txt file as *.js file.
4. Replace the javascript in Tourviewer_*.html
<applet
codebase = "."
archive = "twviewerp.jar"
code = "com.easypano.tw.TWViewer.class"
name = "TWViewer"
width = "800"
height = "493"
hspace = "0"
vspace = "0"
mayscript = "true"
>
<PARAM name = iniFile value = "Config_1.tx1">
<PARAM name = skin.bgcolor value = "255, 255, 255">
<PARAM name = skin.waitingimg value = "Skin/waiting.gif">
<PARAM name = skin.archive value = "Skin_1.zip">
<PARAM name = skin.archive.itemnum value = "7">
<PARAM name = progress.color value = "58, 110, 165">
<PARAM name = progress.bounds value = "160, 443, 480, 20">
<PARAM name = comappletname value = "UserApplet1">
</applet>
With <script language="JavaScript" src="*.js"></script>.
5. Put the *.js file into the published resource files, then the hint will disappear.
