List of handlers

Roger Eller roger.e.eller at sealedair.com
Fri Sep 9 20:05:59 EDT 2011


On Fri, Sep 9, 2011 at 7:50 PM, Chip Thomas <livecode.list at gmail.com> wrote:

> Hey all, is there a way to get a list of handlers within a control?
>
> Or see if a handler/function exists?
>
> Thanks!


put the script of <your object here> into tHandList
filter tHandList with "*on" & space & "*" -- just for readability... could
also be "*on *"
answer tHandList

put the script of <your object here> into tFuncList
filter tFuncList with "*function" & space & "*" -- just for readability...
could also be "*function *"
answer tFuncList

˜Roger



More information about the use-livecode mailing list