hi all,

i make an alias for resizing of picwin and custom windows, but if status window is not in cascade and on top this don't work.

i put this code here:
Code:
 
alias window_resize {
  var %i 1
  while (%i <= $$2) {
    if ($3 == cusmwin) {
      window -nw3 $+(@,$1) -1 -1 %i %i 
      var %t 1 
      while (%t <= 80) inc %t
    }
    if ($3 == picwin) {
      window -pw3 $+(@,$1) -1 -1 %i %i 
      var %t 1 
      while (%t <= 80) inc %t
    }
    inc %i
  }
}