Mark Wieder wrote:

Mike-

Wednesday, February 25, 2015, 11:45:21 AM, you wrote:

Am I doing something really crazy here?

Depends maybe on what you're trying to do. If you're looking for a
list of handlers in a script, here's what I use:

function getHandlersList pScript
  local tHandlers
  filter pScript with "end*"
  repeat for each line tLine in pScript
    put word 2 of tLine & cr after tHandlers
  end repeat
  return tHandlers
end getHandlersList

One more way:

get the revAvailableHandlers of tSomeObject

--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for Desktop, Mobile, and Web
 ____________________________________________________________
 ambassa...@fourthworld.com        http://www.FourthWorld.com

_______________________________________________
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