home *** CD-ROM | disk | FTP | other *** search
- /* This script is for use with DirectoryOpus
-
- Rexx script to delete T:#? and then change dir to T:
- - If one of the windows starts with T:
-
- It's another Detron&Duff Production (02-Sep-94) */
-
- Options Results
-
- Address Command 'C:Delete T:#? ALL FORCE'
-
- Status 3
- ActiveWin = Result
-
- Status 13 ActiveWin
- ActDirName = Result
-
- Status 13 1-ActiveWin
- NonActDirName = Result
-
- If Left(ActDirName,2) = 'T:' Then Status 13 ActiveWin Set 'T:'
- If Left(NonActDirName,2) = 'T:' Then Status 13 1-ActiveWin Set 'T:'
-
- Exit
-