Refreshing pages in loop

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Colin Walls

    Refreshing pages in loop

    I will be running a fencing tournament later this year. One of the problems
    is directing fencers to the appropriate part of the hall.

    The software we use for running the tournament outputs this information as
    an HTML page, so the aim is to simply output it to a large screen and let
    competitors read this. However, we will have multiple competitions running
    at the same time, each of which will have its own page.

    What I want to do is to loop through the pages, showing each for about 30s
    or so, then moving on to the next. Is this possible using meta tags, or am
    I going to have to do something a little more clever?

    --
    Colin Walls
    Removed the pink meat to mail me
  • PeterMcC

    #2
    Re: Refreshing pages in loop

    Colin Walls wrote in
    <cbm8rd$plg$1$8 30fa79d@news.de mon.co.uk>
    [color=blue]
    > I will be running a fencing tournament later this year. One of the
    > problems is directing fencers to the appropriate part of the hall.
    >
    > The software we use for running the tournament outputs this
    > information as an HTML page, so the aim is to simply output it to a
    > large screen and let competitors read this. However, we will have
    > multiple competitions running at the same time, each of which will
    > have its own page.
    >
    > What I want to do is to loop through the pages, showing each for
    > about 30s or so, then moving on to the next. Is this possible using
    > meta tags, or am I going to have to do something a little more clever?[/color]

    Meta refresh should do it:

    <META HTTP-EQUIV="Refresh" CONTENT="30; URL=filename goes here">

    Best of luck with the tournament.

    --
    PeterMcC
    If you feel that any of the above is incorrect,
    inappropriate or offensive in any way,
    please ignore it and accept my apologies.

    Comment

    • Brian

      #3
      Re: Refreshing pages in loop

      Colin Walls wrote:
      [color=blue]
      > we will have multiple competitions running at the same time, each
      > of which will have its own page.
      >
      > What I want to do is to loop through the pages, showing each for
      > about 30s or so, then moving on to the next. Is this possible using
      > meta tags,[/color]

      Meta refresh is a hack that might do what you want.
      [color=blue]
      > or am I going to have to do something a little more clever?[/color]

      Perhaps you should think about being a little *less* clever. What's
      wrong with a link to the next and previous tournament. Or an index of
      all tournaments, with a list of links to the individual pages? KISS!

      --
      Brian (remove ".invalid" to email me)

      Comment

      • Neal

        #4
        Re: Refreshing pages in loop

        On Sun, 27 Jun 2004 11:13:07 -0400, Brian
        <usenet3@juliet remblay.com.inv alid> wrote:
        [color=blue]
        > What's
        > wrong with a link to the next and previous tournament. Or an index of
        > all tournaments, with a list of links to the individual pages? KISS![/color]

        Read the OP: "The software we use for running the tournament outputs this
        information as
        an HTML page, so the aim is to simply output it to a large screen and let
        competitors read this." This is not for WWW use (despite his choice of
        ng!), it is for large-screen display in a foyer or someplace.

        To the OP: This would be a crappy WWW situation, but if all the files are
        right there on the computer being used, and it's just that one, it would
        be fine as a meta refresh. Just don't ever do this on a website. And for
        non-www applications of html alt.html might be a better newsgroup.

        Comment

        • Brian

          #5
          Re: Refreshing pages in loop

          Neal wrote:
          [color=blue]
          > Read the OP: "The software we use for running the tournament
          > outputs this information as an HTML page, so the aim is to simply
          > output it to a large screen and let competitors read this."[/color]

          In that case, the solution is probably better handled client side, by
          configuring a browser. Moz, and possibly Opera, can be configured to
          reload a page after so much time has elasped. Perhaps the op can
          inquire in a browser group.
          [color=blue]
          > This is not for WWW use (despite his choice of ng!), it is for
          > large-screen display in a foyer or someplace.[/color]

          Fair enough, this is off-topic, so eot for me.

          --
          Brian (remove ".invalid" to email me)

          Comment

          • PeterMcC

            #6
            Re: Refreshing pages in loop

            Neal wrote in
            <opr99jxloq6v66 56@news.individ ual.net>
            [color=blue]
            > On Sun, 27 Jun 2004 11:13:07 -0400, Brian
            > <usenet3@juliet remblay.com.inv alid> wrote:
            >[color=green]
            >> What's
            >> wrong with a link to the next and previous tournament. Or an index of
            >> all tournaments, with a list of links to the individual pages? KISS![/color]
            >
            > Read the OP: "The software we use for running the tournament outputs
            > this information as
            > an HTML page, so the aim is to simply output it to a large screen and
            > let competitors read this." This is not for WWW use (despite his
            > choice of ng!), it is for large-screen display in a foyer or
            > someplace.
            >
            > To the OP: This would be a crappy WWW situation,[/color]

            Agreed - in fact I almost had the temerity to suggest PowerPoint but lost my
            nerve at the last moment :)
            [color=blue]
            > but if all the files
            > are right there on the computer being used, and it's just that one,
            > it would be fine as a meta refresh.[/color]

            And that was the clincher, really - if the program's chucking it out in
            HTML, the meta refresh is the line of least resistance.


            --
            PeterMcC
            If you feel that any of the above is incorrect,
            inappropriate or offensive in any way,
            please ignore it and accept my apologies.

            Comment

            Working...