Comme le nom l'indique, ici ce sont les archives, où on met tous les vieux trucs :)
Post by slicer
De toute facon, il est recommandé d'utiliser Chrome pour Papyrus ! Mais sous Win7, ca marche avec FF !
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
j'ai chargé le script avec chrome mais je n'ai pas l'affichage du tableau. Je suppose qu'il suffit de changer l'entête commenté du script. Je vais voir avec un script qui fonctionne sous FF et Chrome.

Et ton problème de tableau vient de ton timeout qui est trop court quand le DOM n'a pas fini de charger, je suppose :) Tu ne veux pas utiliser le XHR plutot ?
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
Oui j'ai vu ca merci :) mais Alcolo n'utilise pas les fonctions de Greasemonkey dans son script. Ca vient d'un autre souci, les unsafeWindows en fait. Et j'ai trouvé un script qui adapte les GM pour chrome mais ca ne change rien ! Mais merci quand même :)
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
Alcolo, le script ne fonctionne pas sous chrome. Je vais jeter un oeil :)
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
Yes Tim, pour some others chrome's extensions can handled the GM_ fonctions. I'm searching for a solution :)
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
waze.user.zip
Voici le script modifié :
(2.12 KiB) Downloaded 117 times
J'ai trouvé :)

le problème du script, c'est ici :

Code: Select all

unsafeWindow = (function() {
    var el = document.createElement('p');
    el.setAttribute('onclick', 'return window;');
    return el.onClick();
  })();
return el.onClick(); il faut enlever le C majuscule par un c minuscule :

Code: Select all

unsafeWindow = (function() {
    var el = document.createElement('p');
    el.setAttribute('onclick', 'return window;');
    return el.onclick();
  })();
Alcolo, si tu veux je peux maintenir une version pour chrome ! dis moi :)
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
Tim1987 wrote:Hope you don't mind me talking English here? (Or should I buzz off to the Papyrus forum? :))
Non that's cool :) Lots of us can translate :)
But I think we should discuss first because everybody's doing something on his own, and that's making a lot of different ways. We should create a topic on the papyrus's dedicated forum no, with one link to download ?

Must see with Alcolo, Alan, you and others who wants to take part of this little project :)
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
Merci pour ton boulot !!!

Tu as essayé de l'adapter pour chrome déjà ? Ou ca ne fonctionne pas avec Chrome ?
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
je vais essayer alors !
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User

Post by slicer
Pas besoin d'adaptation, ca fonctionne avec chrome aussi sans rien faire ! Merci pour le boulot.

Je me permets une petite suggestion : y'a-t-il un moyen pour mettre "en petit" le popup que tu génères ? comme une fenêtre windows que tu réduis dans la barre des taches par exemple :)
slicer
Emeritus Local Champ
Emeritus Local Champ
Posts: 1794
Has thanked: 11 times
Been thanked: 11 times
Send a message
Ghost
.....................................................................
Android User