[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference hydra::amiga_v1

Title:AMIGA NOTES
Notice:Join us in the *NEW* conference - HYDRA::AMIGA_V2
Moderator:HYDRA::MOORE
Created:Sat Apr 26 1986
Last Modified:Wed Feb 05 1992
Last Successful Update:Fri Jun 06 1997
Number of topics:5378
Total number of notes:38326

847.0. "VT300 emulator and help with ASK" by WARDER::ELLIS () Sat Oct 24 1987 09:56

    AM I going crazy, or was there a VT300 emulator available a while
    ago? If there is/was can somebody make it available for me?

    Lastly, can anyone tell me how to use the ASK command in V1.2, I
    want to do something like this in startup-sequence
    
    ASK "Do you want to load WB?"
    IF 'Y" then LOADWB
    
    Any help gratefully received
    
    Martin
    
T.RTitleUserPersonal
Name
DateLines
847.1misc answersMPGS::BAEDERSat Oct 24 1987 12:3113
    re the vt300 emulator...I haven't seen anything on it, but SMOKEY
    is a great vt2xx emulator! (as good as vt100 -thanks dbw-, vt2xx
    is further improved -thanks mike-)
    
    as for the ASK program...if i remember, it sets a fail code or
    something like that..I'll poke around all my stuff and see what
    I can find...too bad its not a real amigaDOS command...
    
    another alternative is to use the Shell! (another great piece of
    work thanks Matt, and especially Steve)
    
    scott.
    
847.2Better use the SHELLVENERE::ZABOTMarco Zabot-Adv.Tech.mgr-Turin ACTMon Oct 26 1987 12:1716
    Re: ASK
    1st. I support suggestion of using SHELL 2.07
    2nd. Just in case ...
    
    Failat 20
    Echo "Do you want WorkBench  (Y,N) ?? - "
    SKIP ?
    LAB Y
    LoadWB
    LAB N
    LAB				<-- In case of <RETURN>
    ... do what you want....

    marco.
    
    
847.3An old problem re-visitedHARDLY::ELLISMMon Oct 31 1988 17:1419
    O.K. This is what I call revisiting a problem.....
    
    This is how you use ASK
    
    ASK "Do you want to load WB? (Y/N)"
    IF WARN
        SKIP LOAD_WB
    ELSE
        ENDCLI
    ENDIF
    LAB LOAD_WB
        LOADWB
        ENDCLI
    
    The error condition is set if you reply "y". Seems an odd way to
    do it....but who am I to reason why?
    
    Martin