Farbflash projects: Imaging lingo table | 3-D scene list | Find all | Handler menu | Lingo message window

Changeset 25 for trunk/lingosource


Ignore:
Timestamp:
09/14/07 13:34:02 (5 years ago)
Author:
alex
Message:

commit test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lingosource/castlib1/alexUtilities.ls

    r23 r25  
    58205820  retval = 0 
    58215821   
    5822   if pStatusMode = On_Off then return retval 
    5823   pStatusMode = 0 
     5822  if pStatusMode = 0 then 
     5823    if On_Off = 0 then 
     5824      return retval 
     5825    end if 
     5826  else 
     5827    if On_Off = 1 then 
     5828      return retval 
     5829    end if 
     5830  end if 
     5831   
    58245832   
    58255833  pHandlerMenuWindowName = string(pHandlerMenuWindowName) 
     
    58315839  retval = 1 
    58325840   
    5833   pStatusMode = On_Off 
     5841   
    58345842   
    58355843  r = w.rect 
    58365844   
     5845  oldwidth = pStatusMode 
     5846  if On_Off = 1 then pStatusMode = r.width 
     5847  else pStatusMode = 0 
     5848   
    58375849  tell w 
    58385850     
     
    58405852     
    58415853    if On_Off = 1 then 
     5854       
    58425855       
    58435856      member("statusOutput").text = "The following operation may take some time..." 
    58445857      spr.member = member("statusOutput") 
    58455858       
    5846       newRect = rect(r.left, r.top, r.right, r.top + spr.rect.bottom) 
     5859      newRect = rect(r.left, r.top, r.left + spr.rect.right, r.top + spr.rect.bottom) 
    58475860       
    58485861      if (label("withSearch") <> marker(0)) then 
     
    58505863      end if 
    58515864       
     5865       
    58525866    else 
    58535867       
    58545868      spr.member = member("helptext") 
    58555869       
    5856       newRect = rect(r.left, r.top, r.right, r.top + spr.rect.top) 
     5870      if ilk(oldwidth) <> #integer then oldwidth = r.width 
     5871      if oldwidth < 1 then oldwidth = r.width 
     5872       
     5873      newRect = rect(r.left, r.top, r.left + oldwidth, r.top + spr.rect.top) 
    58575874       
    58585875      if (label("withoutSearch") <> marker(0)) then go "withoutSearch" 
Note: See TracChangeset for help on using the changeset viewer.