MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    News Ticker

    Scheduled Pinned Locked Moved Unsolved Requests
    19 Posts 8 Posters 17.5k Views 7 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • T Offline
      Try2Fly
      last edited by

      Hi all, is somebody interested in adjusting the existing news feed module to a news ticker? So news is not alternately shown but in a scrolling bar like on the news. Unfortunately I do not have the skills to do this.

      1 Reply Last reply Reply Quote 0
      • M Offline
        mattlugar
        last edited by

        That would be a cool idea… I was pondering doing something similar for a sports score stream (think what you see at the bottom of the screen on ESPN or something). I hadn’t found any good free sports json API that are still active so I hadn’t put any effort towards iet yet. It was a really quick google search so I might have missed something.

        1 Reply Last reply Reply Quote 1
        • EoFE Offline
          EoF
          last edited by

          Could you elaborate on what you mean?

          1 Reply Last reply Reply Quote 0
          • M Offline
            mattlugar
            last edited by mattlugar

            I think he’s talking the scrolling text like you see on TV (at least it is common here in the states). Can’t find a great solo gif of it, but here’s a gif of 17 different ones at the same time, lol… Hopefully enough to get the idea across. It might be a bit taxing on the pi architecture, not sure.

            alt text

            EoFE T 2 Replies Last reply Reply Quote 0
            • EoFE Offline
              EoF @mattlugar
              last edited by

              @mattlugar Ah I see. So scrolling from side to side? I’ll tinker with it a bit.

              T 1 Reply Last reply Reply Quote 0
              • T Offline
                Try2Fly @mattlugar
                last edited by

                @mattlugar thank you, that is exactly what I mean! Would also be great for sport scores indeed!

                1 Reply Last reply Reply Quote 0
                • T Offline
                  Try2Fly @EoF
                  last edited by

                  @EoF maybe this link helps. http://www.quackit.com/javascript/codes/javascript_scroll.cfm

                  1 Reply Last reply Reply Quote 0
                  • EoFE Offline
                    EoF
                    last edited by

                    As a follow up to this, I have not figured anything out. Not sure how to communicate with the other modules yet. I think you’d have to do that in this case. Unfortunately, I don’t think I’ll be able to help with this one.

                    paviroP 1 Reply Last reply Reply Quote 0
                    • paviroP Offline
                      paviro @EoF
                      last edited by

                      @EoF maybe you could just add the featute to the core module as an option instead of creating a new module (@MichMich)?

                      We're all stories in the end. Just make it a good one, eh?

                      – The Doctor

                      EoFE 1 Reply Last reply Reply Quote 0
                      • C Offline
                        clebo99
                        last edited by

                        I was going to ask something similar. I want to have multiple “news feeds” with one being the standard NYT one but also one from say ESPN as well as the RSS feed for my local train MARC. Are there any good “Mirror Designs” for this? Would I just create a new module section, have this placed say in the bottom_left and list the website RSS feed?

                        1 Reply Last reply Reply Quote 0
                        • EoFE Offline
                          EoF @paviro
                          last edited by

                          @paviro I looked at that as an option, but I don’t really want to go messing with the core modules. I think it would be better to have a new module almost like a “modification” to the core news module.

                          1 Reply Last reply Reply Quote 0
                          • C Offline
                            clebo99
                            last edited by paviro

                            Yea…maybe I’m not saying it correctly…what I’m suggesting is something like the following. Can I load 2 “newsfeeds” in different locations on the page with 2 different RSS feeds?

                            module: 'newsfeed', 
                             			position: 'bottom_bar', 
                             			config: { 
                             				feeds: [ 
                             					{ 
                             						title: "New York Times", 
                             						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml" 
                             					} 
                             				], 
                             				showSourceTitle: true, 
                             				showPublishDate: true 
                             			} 
                            module: 'newsfeed', 
                             			position: 'SOMEOTHERBAR', 
                             			config: { 
                             				feeds: [ 
                             					{ 
                             						title: "MARC TRAIN INFO, 
                             						url: "MARC TRAIN RSS FEED URL" 
                             					} 
                             				], 
                             				showSourceTitle: true, 
                             				showPublishDate: true 
                             			}
                            

                            Note from Moderator: Please use proper markdown for easier reading

                            1 Reply Last reply Reply Quote 0
                            • KirAsh4K Offline
                              KirAsh4 Moderator
                              last edited by

                              Yes you can:
                              0_1464203322650_2feeds.png

                              A Life? Cool! Where can I download one of those from?

                              1 Reply Last reply Reply Quote 0
                              • KirAsh4K Offline
                                KirAsh4 Moderator
                                last edited by

                                                {
                                                        module: 'newsfeed',
                                                        position: 'bottom_bar',
                                                        config: {
                                                                feeds: [
                                                                        {
                                                                                title: "New York Times",
                                                                                url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                                                                        }
                                                                ],
                                                                showSourceTitle: true,
                                                                showPublishDate: true
                                                        }
                                                },
                                                {
                                                        module: 'newsfeed',
                                                        position: 'top_bar',
                                                        config: {
                                                                feeds: [
                                                                        {
                                                                                title: "CNN: Technology",
                                                                                url: "http://rss.cnn.com/rss/edition_technology.rss"
                                                                        }
                                                                ],
                                                                showSourceTitle: true,
                                                                showPublishDate: true
                                                        }
                                                },
                                

                                A Life? Cool! Where can I download one of those from?

                                1 Reply Last reply Reply Quote 0
                                • C Offline
                                  clebo99
                                  last edited by

                                  Worked like a charm. Thanks!!! I am really loving this MM. I’m not sure if mine will actually work with a real mirror (I have too much text on the screen…lol) but I’m having a great time figuring this out.

                                  1 Reply Last reply Reply Quote 1
                                  • KirAsh4K Offline
                                    KirAsh4 Moderator
                                    last edited by

                                    Awesome, glad things are working out and you’re able to configure it the way you want to. As for the mirror … you can always get a larger mirror. :)

                                    A Life? Cool! Where can I download one of those from?

                                    1 Reply Last reply Reply Quote 1
                                    • T Offline
                                      Try2Fly
                                      last edited by

                                      Hi, is someone trying to make this module? If’ve looked further into it, and tried to rewrite the default RSS feed module to a ticker, however this level of coding is too advanced for me. Can html marquee be used for this?

                                      1 Reply Last reply Reply Quote 1
                                      • J Offline
                                        Jeff
                                        last edited by

                                        Any update on this?

                                        1 Reply Last reply Reply Quote 0
                                        • C Offline
                                          chrisfoerg
                                          last edited by

                                          In this video someone did it with stocks: https://www.youtube.com/watch?v=1L9yofDD-Ic&feature=youtu.be

                                          1 Reply Last reply Reply Quote 0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better 💗

                                          Register Login
                                          • 1 / 1
                                          • First post
                                            Last post
                                          Enjoying MagicMirror? Please consider a donation!
                                          MagicMirror created by Michael Teeuw.
                                          Forum managed by Sam, technical setup by Karsten.
                                          This forum is using NodeBB as its core | Contributors
                                          Contact | Privacy Policy