• File Auto Pause

    From Adam B to All on Wednesday, January 07, 2009 22:58:47
    Hello everyone. I am setting up a BBS system and am currently customizing it. When a user creates an account I am having the caller contract displayed. Its a rather big file, more than 25 lines. Is there an easy way to have the file auto-pause when it is being diplayed? Or will I just have to create a routine in my javascript file to do this?

    Thanks!

    -Adam
  • From Digital Man to Adam B on Thursday, January 08, 2009 18:40:44
    Re: File Auto Pause
    By: Adam B to All on Wed Jan 07 2009 10:58 pm

    Hello everyone. I am setting up a BBS system and am currently customizing it. When a user creates an account I am having the caller contract displayed. Its a rather big file, more than 25 lines. Is there an easy way to have the file auto-pause when it is being diplayed? Or will I just have to create a routine in my javascript file to do this?

    What JS method are you using to display the file? The console.printfile() method will automatically pause for each screen, normally.

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #11:
    Flamingos are pink because they eat shrimp.
    Norco, CA WX: ---°F, ---% humidity, NaN mph --- wind, 0.00 inches rain/24hrs
  • From Corey@TSGC to Digital Man on Thursday, January 08, 2009 19:43:38
    Re: File Auto Pause
    By: Digital Man to Adam B on Thu Jan 08 2009 06:40 pm

    Re: File Auto Pause
    By: Adam B to All on Wed Jan 07 2009 10:58 pm

    Hello everyone. I am setting up a BBS system and am currently customizing it. When a user creates an account I am having the caller contract displayed. Its a rather big file, more than 25 lines. Is there an easy wa to have the file auto-pause when it is being diplayed? Or will I just hav to create a routine in my javascript file to do this?

    What JS method are you using to display the file? The console.printfile() method will automatically pause for each screen, normally.

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #11:
    Flamingos are pink because they eat shrimp.
    Norco, CA WX: ---°F, ---% humidity, NaN mph --- wind, 0.00 inches rain/24hrs


    I once knew a guy who could not program a line of code untill after he had his java... lol

    Caput meum major podice meo.
    This message has ended, go in peace...

    ---
    ■ Synchronet ■ Three Stooges Gentlemens Club - Las Vegas, Nv
  • From Adam B to Digital Man on Friday, January 09, 2009 02:41:37
    Re: File Auto Pause
    By: Digital Man to Adam B on Thu Jan 08 2009 06:40 pm

    What JS method are you using to display the file? The console.printfile() method will automatically pause for each screen, normally.

    Thanks for the reply. I am using:

    console.printfile( "/sbbs/text/contract.txt", P_NONE );

    I also tried it with no 2nd argument. No pause.

    Any ideas?

    Thanks! - Adam
  • From Deuce@SYNCNIX to Adam B on Friday, January 09, 2009 10:52:56
    Re: File Auto Pause
    By: Adam B to Digital Man on Fri Jan 09 2009 02:41 am

    What JS method are you using to display the file? The
    console.printfile() method will automatically pause for each screen, normally.

    console.printfile( "/sbbs/text/contract.txt", P_NONE );

    Any ideas?

    Do you have "Screen Pause" turned off in your user config?

    ---
    Synchronet - Jump on the Web 0.2 bandwagon!

    ---
    ■ Synchronet ■ My Brand-New BBS (All the cool SysOps run STOCK!)
  • From Digital Man to Adam B on Friday, January 09, 2009 13:35:27
    Re: File Auto Pause
    By: Adam B to Digital Man on Fri Jan 09 2009 02:41 am

    Re: File Auto Pause
    By: Digital Man to Adam B on Thu Jan 08 2009 06:40 pm

    What JS method are you using to display the file? The
    console.printfile() method will automatically pause for each screen, normally.

    Thanks for the reply. I am using:

    console.printfile( "/sbbs/text/contract.txt", P_NONE );

    I also tried it with no 2nd argument. No pause.

    Any ideas?

    Things to try:

    1. Verify that none of the lines in the file are > 79 chars in length.
    2. Add the code "@pon@" (uppercase the PON part) to the top off the file.

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #113:
    The fastest recorded speed of a racehorse was over 43 mph.
    Norco, CA WX: ---°F, ---% humidity, NaN mph --- wind, 0.00 inches rain/24hrs
  • From Adam B to Deuce on Monday, January 12, 2009 21:05:00
    Re: File Auto Pause
    By: Deuce to Adam B on Fri Jan 09 2009 10:52 am

    Do you have "Screen Pause" turned off in your user config?

    Well, there is no logged in user when this is shown. The user is in the craeation process. This might be why.
  • From Adam B to Digital Man on Monday, January 12, 2009 21:05:31
    Re: File Auto Pause
    By: Digital Man to Adam B on Fri Jan 09 2009 01:35 pm

    2. Add the code "@pon@" (uppercase the PON part) to the top off the file.

    The PON macro worked! Thanks!