news
About Elegant Chaos
info
About me and my friends
people
Software from Elegant Chaos
software
Other stuff...
stuff

DL_Functions

Revision
Revised on

Description


Code

function DL_Functions script
  put return before script
  put return & "function " into key
  put empty into handlers
  
  repeat
    set cursor to busy
    get offset(key,script)
    if it is 0 then
      exit repeat
    else
      delete char 1 to it+9 of script
      put (word 1 of script) & comma after handlers
    end if
  end repeat
  
  return handlers
  
end DL_Functions