Gambas France BETA


Pas de compte ? Incription

Erreur xdotool

Ce sujet est résolu.

1
AuteurMessages
décapode#1 Posté le 26/11/2013 à 09:19:49
Salut :sunny:
j'ai une erreur sur xdotool key :

1
2
3
4
5
6
7
8
9
10
11
12
13
PUBLIC SUB form_OPEN()
DIM chaine AS STRING
DIM sOUTPUT AS VARIANT '[] ' Long[] 'String[]


SHELL "xterm"

SHELL "xdotool getwindowfocus" TO sOUTPUT '[]
chaine = " " & Left(sOUTPUT, -1) & " \" k \""
PRINT chaine
SHELL "xdotool key " & chaine ' Wait

END


46137359 " k "
:affraid: -Error: Invalid key sequence ' k '
Failure converting key sequence ' k ' to keycodes
Error: Invalid key sequence ' k '
Failure converting key sequence ' k ' to keycodes
xdo_send_keysequence_window reported an error for string ' k '

Maître Yoda s'il vous plait...
décapode#2 Posté le 26/11/2013 à 09:59:31
je viens de trouver.

En fait même si on lance un exe, le focus est sur Gambas.
il faut faire une recherche :
"xdotool search --classname xterm getwindowpid", pour récupérer le pid, et après ça pédale.

Merci les gars :lol!:
1