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

DL_ShowBkgndPartList

Revision
Revised on

Description


Code

on DL_ShowBkgndPartList
  global DL_BkgndPartWindow
  
  put "Background Parts" into DL_BkgndPartWindow
  
  if there is not a window DL_BkgndPartWindow then
    TextView DL_BkgndPartWindow,true,"Grey,2"
    if there is a window DL_BkgndPartWindow then
      set the editable of window DL_BkgndPartWindow to false
      set the wholeLine of window DL_BkgndPartWindow to true
      set the clickMessage of window DL_BkgndPartWindow to DL_BkgndPartClick
      set the dontWrap of window DL_BkgndPartWindow to false
      set the scrollbar of window DL_BkgndPartWindow to 8
    end if
  end if
  
  if there is a window DL_BkgndPartWindow then
    DL_UpdateBkgndPartWindow
    show window DL_BkgndPartWindow
  end if
  
end DL_ShowBkgndPartList