I have a question regarding the TextField plugin, when using the style tag inside any html tag... it seems like the plugin is ignoring them. For example I have the following script:
Code
<plugin name="newhotspot2P" url="%SWFPATH%/plugins/textfield.swf" align="center" width="500" height="300" x="0" y="-1100" visible="false" html="data:newhotspot2D" css="data:newhotspot2C" roundedge="0" borderwidth="1" textcolor="0x000000" bordercolor="0xFFFFFF" backgroundcolor="0xFFFFFF" selectable="false" shadow="5" autosize="center" keep="true"/>
<data name="newhotspot2D"><div style="border: 1px solid black; width: 500px;height:250px;">
<div style="border: 1px solid black;float: left; width: 350px;height: 100%"/>
<div style="border: 1px solid black;float: left; width: 145px;height: 100%">
<img src="" style="border: 1px solid black;margin: 10px; width: 100px;"/>
<img src="" style="border: 1px solid black;margin: 10px;"/>
<img src="" style="border: 1px solid black;margin: 10px;"/>
</div>
</div>
<div>Esta nota de krpano el drag lo hace muy suave, hay que mover bastante en direccion vertical para que coja</div>
</data>
</scene>
Display More
The only part that's shown on screen is the last div from the data tag.
Code
<div>Esta nota de krpano el drag lo hace muy suave, hay que mover bastante en direccion vertical para que coja</div>
. Why is happening this? Thanks a lot.