• Syntaxtic!

    From Mindless Automaton@ELDRITCH to DOVE-Net.Programming_(Javascript) on Thursday, February 17, 2011 23:17:37
    What is the correct way to use no pause when using console.printfile?

    console.printfile(filename [,mode=P_NONE])

    Or at least point me to a js file I can look it up in. :)

    Thanks!

    Mindless Automaton
    ---
    ■ Synchronet ■ Eldritch Clockwork BBS - eldritch.darktech.org
  • From Digital Man to Mindless Automaton on Friday, February 18, 2011 13:54:51
    Re: Syntaxtic!
    By: Mindless Automaton to DOVE-Net.Programming_(Javascript) on Thu Feb 17 2011 11:17 pm

    What is the correct way to use no pause when using console.printfile?

    console.printfile(filename [,mode=P_NONE])

    Or at least point me to a js file I can look it up in. :)

    console.printfile("somefile.txt", P_NOPAUSE);

    digital man

    Snapple "Real Fact" #70:
    A "jiffy" is actually 1/100 of a second.
  • From Dreamer@SETXBBS to All on Saturday, February 19, 2011 08:42:00
    Re: Syntaxtic!
    By: Digital Man to Mindless Automaton on Fri Feb 18 2011 01:54 pm

    Snapple "Real Fact" #70:
    A "jiffy" is actually 1/100 of a second.

    Just thought I'd throw this out there: has anyone actually looked this up?
    The best, most concise definition I found:

    1) 1/100 of a second 2) one millisecond 3) approximately one nanosecond
    4) indeterminate time from a few seconds to forever

    Read more: http://www.answers.com/topic/jiffy#ixzz1EPqg2EF5

    'jiffy' has to be the most general word in the english language! ;)

    ---
    ■ Synchronet ■ Southeast Texas BBS -- setxbbs.synchro.net
  • From Mindless Automaton@ELDRITCH to Digital Man on Monday, February 21, 2011 11:41:06
    On 02/18/2011 04:54 PM, Digital Man wrote:
    Re: Syntaxtic!
    By: Mindless Automaton to DOVE-Net.Programming_(Javascript) on Thu Feb 17 2011 11:17 pm

    > What is the correct way to use no pause when using console.printfile?
    >
    > console.printfile(filename [,mode=P_NONE])
    >
    > Or at least point me to a js file I can look it up in. :)

    console.printfile("somefile.txt", P_NOPAUSE);


    Thanks! But I guess I was using an old bullet.js and its changed a bit
    so the line is:

    load(new Object, "typeasc.js", str, "BullsEye Bulletin #"+b);

    What I am trying to accomplish is to have bulletin just dump the file
    and have any pause in the asc or whatever file I am displaying.

    I put in the "-nopause" between str & "BullsEye.." but after the two
    sections of my bulletin file are displayed, I still got the [Hit any
    Key] at the end of the file.

    I suppose there is something I am missing in there..

    Thanks!

    -Mindless Automaton
    ---
    ■ Synchronet ■ Eldritch Clockwork BBS - eldritch.darktech.org
  • From Mindless Automaton@ELDRITCH to Mindless Automaton on Monday, February 21, 2011 14:05:01
    On 02/21/2011 11:41 AM, Mindless Automaton wrote:
    On 02/18/2011 04:54 PM, Digital Man wrote:


    I suppose there is something I am missing in there..


    Like the fact its not on the console.print line that is a few lines up:

    console.printfile(mod_dir+"bullseye/text/bullseye.asc", P_NOPAUSE);

    Posting the question always helps point out the obvious answer. :P

    Thanks!

    Mindless Automaton
    ---
    ■ Synchronet ■ Eldritch Clockwork BBS - eldritch.darktech.org
  • From Nightfox@DIGDIST to Dreamer on Wednesday, February 23, 2011 14:35:24
    Re: Jiffy
    By: Dreamer to All on Sat Feb 19 2011 08:42:00

    The best, most concise definition I found:

    1) 1/100 of a second 2) one millisecond 3) approximately one nanosecond 4) indeterminate time from a few seconds to forever

    'jiffy' has to be the most general word in the english language! ;)

    ;) I wonder if it could also be used as an adjective, meaning "like Jif peanut butter". :P

    Nightfox

    ---
    ■ Synchronet ■ Digital Distortion BBS: digdist.bbsindex.com
  • From Poindexter Fortran@REALITY to Nightfox on Thursday, February 24, 2011 09:28:21
    Re: Jiffy
    By: Nightfox to Dreamer on Wed Feb 23 2011 02:35 pm


    I always heard that a Jiffy was 1/60th of a second, based on AC cycles or timer interrupts on a Commodore PET.

    --pF


    poindexter fortran │ realitycheckbbs.org
    pfortran@realitycheckbbs.org
    │ 1:218/700@fidonet

    ---
    ■ Synchronet ■ realitycheckBBS -- http://realitycheckBBS.org
  • From Digital Man to Mindless Automaton on Friday, February 25, 2011 15:42:05
    Re: Re: Syntaxtic!
    By: Mindless Automaton to Digital Man on Mon Feb 21 2011 11:41 am

    On 02/18/2011 04:54 PM, Digital Man wrote:
    Re: Syntaxtic!
    By: Mindless Automaton to DOVE-Net.Programming_(Javascript) on Thu Feb 17 2011 11:17 pm

    > What is the correct way to use no pause when using
    console.printfile?
    >
    > console.printfile(filename [,mode=P_NONE])
    >
    > Or at least point me to a js file I can look it up in. :)

    console.printfile("somefile.txt", P_NOPAUSE);


    Thanks! But I guess I was using an old bullet.js and its changed a bit
    so the line is:

    load(new Object, "typeasc.js", str, "BullsEye Bulletin #"+b);

    What I am trying to accomplish is to have bulletin just dump the file
    and have any pause in the asc or whatever file I am displaying.

    I put in the "-nopause" between str & "BullsEye.." but after the two sections of my bulletin file are displayed, I still got the [Hit any
    Key] at the end of the file.

    I suppose there is something I am missing in there..

    So you tried load(new Object, "typeasc.js", "-nopause", str, "BullsEye..."); ? That should work.

    digital man

    Snapple "Real Fact" #143:
    Q is the only letter in the alphabet not appearing in the name of any U.S. state.
  • From Nightfox@DIGDIST to Poindexter Fortran on Saturday, February 26, 2011 07:03:16
    Re: Jiffy
    By: Poindexter Fortran to Nightfox on Thu Feb 24 2011 09:28:21

    I always heard that a Jiffy was 1/60th of a second, based on AC cycles or ti

    I remember hearing that somewhere too.

    Nightfox

    ---
    ■ Synchronet ■ Digital Distortion BBS: digdist.bbsindex.com