Welcome, Guest. Please login or register.

Author Topic: Backdrops and Windows  (Read 1221 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline lionstorm

Re: Backdrops and Windows
« on: June 24, 2022, 08:34:05 PM »
on OS4 you have an AREXX script called "closealldrawers" but for whatever reason it does not work uner OS3.x

here is the script if you want to give a try :

/*
   $VER: CloseAllDrawers.rexx 1.0 (21.12.99)

  closes all drawers except root.
*/

options results

address WORKBENCH

GETATTR WINDOWS STEM WINDOW

do i = 0 to WINDOW.count-1
  IF WINDOW.i ~= "root" THEN
    WINDOW '"'||WINDOW.i||'"' CLOSE
END