le ci-dessous fonctionne bien:
Code xml :
<text height="20" x="10"> <font color="#777777" face="symbolFont" size="16"> <b> <a href="http://localhost/Lien.html" target="_blank">Lien</a> </b> </font> </text>



mais si je crée un évènement au passage de la souris (onmouseover):
Code xml :
<text height="20" onmouseover="this.setAttribute('x', this.x + 20); this.setAttribute('y', this.y + 10);" onmouseout="this.setAttribute('x', this.x - 20); this.setAttribute('y', this.y - 10);" x="10"> <font color="#777777" face="symbolFont" size="16"> <b> <a href="http://localhost/Lien.html" target="_blank">Lien</a> </b> </font> </text>
Alors le lien est désactivé, comme s'il n'y avait plus la balise <a>.

Je cherche encore la solution mais si quelqu'un pouvait me faire gagner du temps ce serait super !!