函数:inputKey 输入按键码(仅支持 iOS)
函数名称:输入按键码
函数功能:模拟键盘输入按键码
TSLib 版本:仅 v1.2.8 及其以上版本支持
函数方法
inputKey(str,time_min,time_max)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
str | string | 是 | 需要输入的字符串 |
time_min | number | 否 | 最小时间间隔,单位:毫秒 |
time_max | number | 否 | 最大时间间隔,单位:毫秒 |
参数介绍
time_min、time_max 参数都不写默认输入字符之间延时时间为 10 毫秒;
只写 time_min 参数则延时时间默认为 time_min 的参数;
time_min、time_max 参数都存在则在 time_min ~ time_max 之间随机延时时间。
函数用例
--此函数为触动精灵专用函数请勿用于积木编程
require("TSLib")
--延时时间默认是 10 毫秒。
inputKey("123")
--延时时间默认是 15 毫秒。
--inputKey("123",15)
--延时时间为 15 ~ 20 毫秒之间。
--inputKey("123",15,20)