REM SETSIZE2.WSM -- no hot key necessary.

Sub Main
    AutoRestore(ON)
    WSQuiet(ON)

REM -- Again, treat the {Alt+F} line as above.  The ^@ line is a do-nothing
REM -- delay to let WS catch its breath.  Some systems may need it, others
REM -- may not.

    Key("^@^@^@")
REM Key("{Alt+F}s")

    Key("^Qs^D")                             'Checks if in a file
       IfException
       NCM: Key("^Kq")                       'NCM = at opening menu
            WSQuiet(OFF)
            Stop
       End IfException

    Key("^S^Qa*~*{Tab}{Tab}n^K")
    Key("^Ks")
    WSQuiet(OFF)

End Sub
