Re: List of handlers

2011-09-13 Thread Geoff Canyon Rev
Interesting -- I'd forgotten about the token keyword. It still doesn't handle block comments though: on mouseUp /*this is a on aCommentedCommand comment*/ put token 1 to -1 of the script of me into tText put empty into tMenuText repeat for each line L in tText

Re: List of handlers

2011-09-13 Thread Andre Garzia
On Sun, Sep 11, 2011 at 5:27 PM, zryip theSlug zryip.thes...@gmail.comwrote: On Sat, Sep 10, 2011 at 4:47 PM, Andre Garzia an...@andregarzia.com wrote: Hi Andre, Is revavailablehandlers available on a standalone? (Just curious...) Not sure of the usage we could have with that, but

Re: List of handlers

2011-09-11 Thread zryip theSlug
On Sat, Sep 10, 2011 at 4:47 PM, Andre Garzia an...@andregarzia.com wrote: Hi Andre, Is revavailablehandlers available on a standalone? (Just curious...) Not sure of the usage we could have with that, but revavailablehandlers not working in a standalone. Best regards, -- -Zryip TheSlug-

Re: List of handlers

2011-09-11 Thread Geoff Canyon Rev
This doesn't work with block comments, but this is what I used in revNavigator: put the script of tID into tText put empty into tMenuText repeat for each line L in tText     if word 1 of L is among the items of on,function,getprop,setprop then put L cr after tMenuText end repeat

Re: List of handlers

2011-09-11 Thread Mark Schonewille
Geoff, Try this: put token 1 to -1 of the script of tID into tText put empty into tMenuText repeat for each line L in tText if word 1 of L is among the items of on,function,getprop,setprop,command,private then put L cr after tMenuText end repeat -- Best regards, Mark Schonewille

Re: List of handlers

2011-09-10 Thread zryip theSlug
On Sat, Sep 10, 2011 at 1:50 AM, Chip Thomas livecode.l...@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? Hi Chip, Try: put the revavailablehandlers of myControl Best regards, -- -Zryip TheSlug- wish you the best! 8

Re: List of handlers

2011-09-10 Thread Peter M. Brigham, MD
On Sep 9, 2011, at 11:56 PM, Phil Davis wrote: Hi Peter, Actually the 'filter' command I described will only include the 'end' statements that start at char 1 of a line. Normally, only 'end handler' statements would be in that category. (I'm assuming the coder used a script editor like

Re: List of handlers

2011-09-10 Thread Andre Garzia
Hey Zryip, Is revavailablehandlers available on a standalone? (Just curious...) Cheers andre On Sat, Sep 10, 2011 at 6:11 AM, zryip theSlug zryip.thes...@gmail.comwrote: On Sat, Sep 10, 2011 at 1:50 AM, Chip Thomas livecode.l...@gmail.com wrote: Hey all, is there a way to get a list

List of handlers

2011-09-09 Thread Chip Thomas
Hey all, is there a way to get a list of handlers within a control? Or see if a handler/function exists? Thanks! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: List of handlers

2011-09-09 Thread Roger Eller
On Fri, Sep 9, 2011 at 7:50 PM, Chip Thomas livecode.l...@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

Re: List of handlers

2011-09-09 Thread Phil Davis
, Sep 9, 2011 at 7:50 PM, Chip Thomaslivecode.l...@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 ofyour object here into tHandList filter tHandList with *on space * -- just for readability

Re: List of handlers - snake

2011-09-09 Thread Joe Lewis Wilkins
livecode.l...@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

Re: List of handlers

2011-09-09 Thread Peter M. Brigham, MD
-- if you like put tList Phil Davis On 9/9/11 5:05 PM, Roger Eller wrote: On Fri, Sep 9, 2011 at 7:50 PM, Chip Thomaslivecode.l...@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

Re: List of handlers

2011-09-09 Thread Peter M. Brigham, MD
On Sep 9, 2011, at 8:33 PM, I wrote: The filter with end* will pick up end if and end repeat and end try as well. -- first: replace end if with empty in tList replace end repeat with empty in tList replace end try with empty in tList -- then filter tList with end* replace cr end with

Re: List of handlers

2011-09-09 Thread Phil Davis
, is there a way to get a list of handlers within a control? Or see if a handler/function exists? Thanks! put the script ofyour object here into tHandList filter tHandList with *on space * -- just for readability... could also be *on * answer tHandList put the script ofyour object here

Re: List of handlers

2011-09-09 Thread Phil Davis
On 9/9/11 7:14 PM, Peter M. Brigham, MD wrote: On Sep 9, 2011, at 8:33 PM, I wrote: The filter with end* will pick up end if and end repeat and end try as well. -- first: replace end if with empty in tList replace end repeat with empty in tList replace end try with empty in tList -- then