I loved the simplicity of HyperCard's cmd-F "Find", so I created my own in 
LiveCode:

on commandKeyDown whichKey
   switch whichKey
      case "e"
         global prevFindString
         ask "Find:" with prevFindString
         find it
         if the result <> "" then beep
         put it into prevFindString
         break
      case "g"
         global prevFindString
         find prevFindString
      default
         pass commandKeyDown
   end switch
end commandKeyDown

Now, when I want to find some text in the current stack, I press cmd-E, start 
typing, press enter. To find subsequent occurrences, I press cmd-G.

I tried scripting the message-box, to make it work just like HyperCard, but I 
couldn't get it to work for some reason. Can't remember why – it was a long 
time ago (when LiveCode was still called "Revolution").

Jonathan

Jonathan Cooper
www.doctordada.com

On 18/09/2014, at 9:18 AM, use-livecode-requ...@lists.runrev.com wrote:

> -- It is true that there is no "go" menu, and you have to script your own 
> find. What has replaced it, with cmd-F, is the find and replace gadget. Much 
> more flexible and powerful, if less quaint.

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to