How do you make plain text linkable?
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    osco
    Posts: 680 from 2009/10/21
    From: Boston, USA
    Using the "Search" command a list of files outputs on the console..They are a list of files..other than a user written script is there a quick "ED" way to make the files "clickable to DOS?

    Output of file names clicking on them will open a pdf file

    Data:Suf/200907011009wv300en.pdf
    Data:Suf/200907131340wv300en.pdf
    Data:Suf/200907250945wv300en.pdf
    Data:Suf/200908241313wv300en.pdf
    How do you make them DOS addressable?
    Is it done by MUI Ed Ced Arexx Script?

    [ Edited by osco on 2010/6/20 22:05 ]

    /*pdf reader*/

    OPTIONS RESULTS

    IF OPEN(input,test8, R) THEN DO /* opens the batch file in ram, names it input to the script*/
    DO UNTIL EOF(input) /* starts a do loop to the end of file */
    line=READLN(input) /*reads a line (actually a name of a file in ram:*/

    ADDRESS COMMAND OPEN line /*opens the pdf file */

    ADDRESS COMMAND WAIT 20 secs /*time to study/read pdf file*/


    END
    END
    :-D :-D :-D :-D

    [ Edited by osco on 2010/6/24 21:23 ]
    Mac Mini 1.5GHz, 1G, 250G Drive, Apple Cinema Display, MorphOS 3.1 registered, MacOS 10 PowerBook (5,8) 1.67Hz, 2G, 80G Drive,........Waiting
    PowerBook (5,8) 1.67Hz, 2G, 40G MorphOS 3.1 unregisterd
  • »21.06.10 - 01:55
    Profile