You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have the "Controller" be able to input a whole string instead of just one word at a time. Example script I have used on Android in the past that might help implement this:
#!/system/bin/sh
phrase="$@"
word_count=`echo $phrase| wc -w`
n=0
foriin$phrasedolet n++
input text $iif [ $n-lt$word_count ]
then# Add a space between words.
input keyevent 62
fidone
The text was updated successfully, but these errors were encountered:
It would be great to have the "Controller" be able to input a whole string instead of just one word at a time. Example script I have used on Android in the past that might help implement this:
The text was updated successfully, but these errors were encountered: