Text in the textfield plugin is html code so it doesn't go by krpano xml api.
You could create a krpano xml plugin, that is a animated button, and place it above the textfield plugin using a higher zorder. This is handy for instance when you want to create a close button below or above the textfield. But text doesn't wrap around this button (since its another zorder)
Another way would be maybe, using CSS styles. but I doubt that would work since not everything is supported by Flash. You could create an a link with font-size 12 and a:hover link with font-size 13. or change the color.
|
Quellcode
|
1
2
3
4
5
|
<plugin url="textfield.swf" css="data:textCSS" html="..." />
<data name="textCSS">
a{size: 12px}
a:hover{size:13px}
</data>
|