or add an tiny arrow image
|
Quellcode
|
1
2
|
<plugin name="arrow" parent="yourtextfield" url="arrow.png" align="bottomleft" edge="topright" '/>
<plugin name="yourtextfield" background="true" backgroundcolor="0xFFFFFF" etc etc />
|
if you want it as a tooltip on mouse over, trigger it with onover and onout
|
Quellcode
|
1
2
3
4
5
6
|
<style name="tooltipper"
onover ="set(plugin[yourtextfield].visible, true); copy( plugin[yourtextfield].x, mousex); copy( plugin[yourtextfield].y, mousey); copy(plugin[yourtextfield].html, tooltip); "
onout="set(plugin[yourtextfield].visible, false);"
/>
<hotspot style="tooltipper" tooltip="a nice text" etc etc etc />
|
its a bit rough, and you probally need to offset the tooltip. But this should work.