AutoHotKey:热键随机选择几个预先选择的字符串之一

时间:2011-05-29 23:25:38

标签: random autohotkey

创建可能字符串列表然后让热键随机键入其中一个字符串的最简单方法是什么?

作为解释,在python中它将是......

random.choice(["Hi, dork.", "Hello, titmouse.", "Greetings, ass.", "Sup, barnacle."])

3 个答案:

答案 0 :(得分:4)

一种方式:

F2::
Values = pick,one of,these,choices
StringSplit, ValueArray, Values, `,
Random, rand, 1, 4
SendInput % ValueArray%rand%

我还没有找到一个获得数组大小的好方法。

答案 1 :(得分:2)

如果您需要在每个列表项中处理逗号,则可以使用单独的分隔符。

F2::
   list := "Hi, dork.;Hello, titmouse.;Greetings, ass.;Sup, barnacle."
   listsize := list#items(list, ";")
   Random, rand, 1, %listsize%
   MsgBox, % listGet(list, rand, ";")
return


; return item at said position in said list
listGet(list,pos=1,del=",") {
   StringSplit, item, list, %del%
   return item%pos%
}


; returns # of items 
list#items(list, del=",") {
   ifEqual, list,, return 0
   StringReplace, var, list, % del,, useErrorLevel
   return ErrorLevel+1
}

这里有更多的列表操作函数: http://www.autohotkey.com/forum/topic3195.html

答案 2 :(得分:0)

试试这个

Voice := ComObjCreate("SAPI.SpVoice")

F2::        ;Press F2
Random, rand, 1, 4
goto, %rand%

1:
Voice.Speak("number 1")
; Or you can use    send 1
return

2:
Voice.Speak("number 2?")
return

3:
Voice.Speak("number 3")
return

4:
Voice.Speak("number 4")
return