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

DL_SetScriptField

Revision
Revised on

Description


Code

function DL_SetScriptField field,script,value
  put "-" & "- " & field into label
  put UL_LineOffset(label,script) into pos
  if pos ­ 0 then
    get line pos of script
    put space & value into char offset(":",it)+1 to length(it) of line pos of script
  else
    put label && ":" && value & return before script
  end if
  return script
  
end DL_SetScriptField