Thanks but that is not the solution.
I am sorry, i work most of the time in panotour. Made that decision some time ago. The problem is that when you want to change something it is hard to get used to the strange generated code from panotour.
When spot1 has a onclick event then spot1html is set to visible.true / alpha=1 see code herunder.
This is the complete code;
<hotspot name="spot1" onclick="closeallobjects();set(plugin[spot1html].visible,true);tween(plugin[spot1html].alpha, 1);" url="vtdata/graphics/spots/spot3.png" crop="0|0|65|65" frame="0" lastframe="13" frameheight="65" framewidth="65" onloaded="set(stopSequence,false);animate(spot1,0.071);" onhover="showtext(testje);" ath="-29.0486" atv="3.68124"/>
<data name="spot1htmldata">
<p align="right">
<a href="event:tween(alpha, 0);delayedcall(0.5,set(visible,false));"> <-- this code works on a pc but on a iPad you can't close the textfield
<a href="event:tween(plugin[spot1html].alpha,0);delayedcall(0.5,set(plugin[spot1html].visible,false));"> <--- this works fine on iPad. On a pc displays only text until this line.
<b>CLOSE</b>
</a>
</p>
<include url="html/test.html"/>
</data>
<plugin name="spot1html" url="vtdata/graphics/textfield.swf" html="data:spot1htmldata" visible="false" alpha="0" align="center" width="40%" height="40%" bordercolor="0xFFFFFF"/>
Problem is that with standard generated panotour code the textfield html will not close on a iPad just like the OP said. On a pc it works fine.
So this piece of code seems not to work.
<a href="event:tween(alpha, 0);delayedcall(0.5,set(visible,false));">
And with the suggested new code; this:
<a href="event:tween(plugin[spot1html].alpha,0);delayedcall(0.5,set(plugin[spot1html].visible,false));">
the textfield / html5 window will close and behaves good on a iPad but on a pc browser i see only the text before the new code. All after that is invisible.
Beats me.
How can i debug this?