Hi,
I've asked Klaus in an email for an answer without any response.
sorry, but I have still a lot of unread mails, maybe yours is within them...
If Klaus wants additional funding for a support contract I am all for paying it as long as we get answers.
what I would need would be much more
time! 
there are too much questions and too few time to answer them all in time!
some questions are short and easy - they will be answered more quickly - some other questions are long or difficult to understand - and there are questions which would need time-intensive research on my side - such questions can take longer to be answered.
to your problem - the textfield plugin is unfortunately a special case:
- in Flash it uses the Flash "Textfield" which has only a very small html support and additionally also is very buggy!
- and HTML the html text will be passed almost directly to the browser via "innerHTML"
so the same support with the textfield plugin for Flash and HTML will be always a problem - I'm already looking for an replacement without direct HTML support to avoid compatibility problems,
however - to make the textfield plugin also similar usable in HTML - the krpanoJS viewer tries to make some changes automatically - e.g. it searches the "css" settings for "fontsize" tags and then it tries to scale the fontsize according to the device (e.g. to halfsize on the iPhone) - in your code you were using own html code with a style setting - such is not support in Flash and so also not officially in the krpanoJS viewer - that means the HTML code will NOT be parsed and analyzed by krpano!
as you can see the font size is the same for iPhone and iPad in your example - and this is the reason why the text doesn't fit into your fix sized element,
instead of:
|
Quellcode
|
1
|
font:bold 12px sans-serif;'
|
try using the css attribute and set there:
|
Quellcode
|
1
|
css="{fontsize:12px}"
|
then the krpanoJS viewer should be able to find that fontsize setting and change it automatically to fontsize:6px on the iPhone,
best regards,
Klaus