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

DL_ShowBkgndList

Revision
Revised on

Description


Code

on DL_ShowBkgndList
  global DL_BkgndWindow
  
  put "Backgrounds" into DL_BkgndWindow
  
  if there is not a window DL_BkgndWindow then
    TextView DL_BkgndWindow,true,"Grey,2"
    if there is a window DL_BkgndWindow then
      set the editable of window DL_BkgndWindow to false
      set the wholeLine of window DL_BkgndWindow to true
      set the clickMessage of window DL_BkgndWindow to DL_BkgndClick
      set the dontWrap of window DL_BkgndWindow to false
      set the scrollbar of window DL_BkgndWindow to 8
    end if
  end if
  
  if there is a window DL_BkgndWindow then
    DL_UpdateBkgndWindow
    show window DL_BkgndWindow
  end if
  
end DL_ShowBkgndList