ok..Word Search Generator..beginning
for now..pulls random words from "ArrayAllWords" to "ArrayChosenWords"..sorts them descending by length..
then....starting with the longest word puts them in a grid ("ArrayLetters")
..of course..first needs to find starting cell and check is word fits there in any direction ..
(for now only "forward","back",up",down")
so..when you replace empty cells with random letter..looks like this
Edit1:
added "forwardDown"(startX+loopindex;startY+loopindex)
if i optimize this events little bit..it may be space for "forwardUp"(startX+loopindex;startY-loopindex),"backDown"(startX-loopindex;startY+loopindex) and "backUP"(startX-loopindex;startY-loopindex)
Word Search Generator2.capx