It's easy to roll your own. Here's handy function: function expandError tErr -- expands LC runtime error numbers -- with explanatory text -- requires sr() repeat for each line e in tErr put item 1 of e into errNbr put item 2 of e into tLineNbr put item 3 of e into tCharNbr put "• error #" && errNbr & " (line" && tLineNbr & "," && "char" && tCharNbr & "):" && \ sr(line errNbr of the cErrorsList of card 1 of stack "revErrorDisplay") \ into tErrMsg put tErrMsg & cr after errorlist end repeat return sr(errorlist) end expandError
function sr str -- sr = "strip returns" -- actually, strips all white space fore and aft return word 1 to -1 of str end sr -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Jul 31, 2012, at 6:42 PM, J. Landman Gay wrote: > On 7/31/12 2:38 PM, Chris Sheffield wrote: >> Anyone know where I can download Jacque's excellent error plugin? I'm >> talking about the one where you can feed it LiveCode error numbers >> and have it return the English equivalent of those errors. :-) I saw >> her use it in one of the videos from RevLive but I missed the >> download link (if there is one). >> >> Jacque, if you're watching... > > It's here for now: > <https://dl.dropbox.com/u/23431607/ErrorLookup.livecode.zip> > > I'll try to put it on RevOnline, I just keep forgetting. Glad you like it. > > > -- > Jacqueline Landman Gay | jac...@hyperactivesw.com > HyperActive Software | http://www.hyperactivesw.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 _______________________________________________ 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