vbs
1.0.0
import vbs
vbs . tts ( "words to speak" ) import vbs
vbs . alert ( "alert body" , boxtype = "yesno" , title = "title text" ) import vbs
vbs . sendkeys ( "keys to send" )vbs.sendkeys:
acts as if all keys in string are pressed in order near instantly.
script contiunes once all keys are sent.
sending special keys such as backspace ({bs}) or enter (~) can be found by referencing
| 열쇠 | 암호 |
|---|---|
| 역행 키이 | {BACKSPACE} 또는 {BS} |
| 부서지다 | {부서지다} |
| 대문자 잠금 | {CAPSLOCK} |
| 분명한 | {분명한} |
| 삭제 | {DELETE} 또는 {DEL} |
| 아래쪽 화살표 | {아래에} |
| 끝 | {끝} |
| ENTER(숫자 키패드) | {입력하다} |
| 입력하다 | ~ |
| ESC | {ESCAPE} 또는 {ESC} |
| 돕다 | {돕다} |
| 집 | {집} |
| INS | {끼워 넣다} |
| 왼쪽 화살표 | {왼쪽} |
| Num Lock | {NUMLOCK} |
| 페이지 아래로 | {PGDN} |
| 페이지 위로 | {PGUP} |
| 반품 | {반품} |
| 오른쪽 화살표 | {오른쪽} |
| 스크롤 잠금 | {스크롤잠금} |
| 꼬리표 | {꼬리표} |
| 위쪽 화살표 | {위로} |
| F1~F15 | {F1}부터 {F15}까지 |
vbs.경고:
alert times out by default after 100 minutes.
this can be changed by passing a different value to the timeout optional argument.
which is passed as an integer number of secounds.
you can change the type of alert by a value to the optional argument boxtype.
possible values are
"okay", "cancel", "cancelable", "retry", "yesnocancel", "yesno", "warning", "critical", "info"
this function then returns one of the following strings:
"ok", "cancel", "abort", "retry", "ignore", "yes", "no"
you can change the title of the alert by passing a string to the option title argument
vbs.tts:
calling tts freezes execution path untill entire messege is spoken
then returns "done" as a string