I need an apple script that will generate a random word from a database of words and enter it into a searchbox. In other words, I need an apple script to auto search for me.
This is what I have so far:
repeat 100 times
set x to {}
repeat (random number from 4 to 10) times
set end of x to some item of "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
end repeat
display dialog x as string
end repeat
As you can see, it's not exactly what I am looking for.
This is what I have so far:
repeat 100 times
set x to {}
repeat (random number from 4 to 10) times
set end of x to some item of "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
end repeat
display dialog x as string
end repeat
As you can see, it's not exactly what I am looking for.
Last edited: