23-05-2012, 10:00 AM
En étudiant les différentes implémentations, j'ai réussi à le faire fonctionner sur ma page à structure particulière:
parent.window.scrollBy(newX,newY);
C'était aussi pour cette raison que aucune des implémentations ne fonctionnaient.
<html>
<body>
<object width=8000 height=8000 >
<svg width=8000 height=8000 onmousedown=... onmouseup=... onmousemove=...>
.
.
</svg>
</object>
</body>
</html>
Le problème venant de la balise <object>, j'ai réussi à m'en sortir avec:parent.window.scrollBy(newX,newY);
C'était aussi pour cette raison que aucune des implémentations ne fonctionnaient.