4

I am trying to output this xdotool type '172.06' into a textbox, but it enters 17206. Is there something wrong with the encoding? Why would it enter the period last? Note that when I run this in terminal it works perfectly.

I found a google group discussion about the topic, but didnt see an answer that applied to the . symbol

Notes:

  • xdotool version 3.20150503.1
  • layout: us
  • xdotool works in terminal (linux mint)
  • textbox is a text input field in the game EVE (not sure how to give more info about this)

  • 4

    1 回答 1

    1

    What happens when you run

    xdotool type '172' && xdotool type '.' && xdotool type '06'
    

    ? if it works, try to increase the typing delay

    xdotool type --delay 25 '172.06'
    
    于 2016-10-22T18:15:54.857 回答