• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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.

MMM-MyScoreboard

Scheduled Pinned Locked Moved Sport
277 Posts 60 Posters 414.7k Views 63 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.
  • S Offline
    SirFM
    last edited by Nov 6, 2022, 10:50 AM

    Updated my mirror and now the module is stuck with the message “Loading…”

    I’ve updated the module since a new version came out but I still have the same problem.

    I’ve also tried deleting the MMM-MyScoreboard directory and did a new pull and install but still no success.

    In the console I get a MESA-LOADER: failed to retrieve device information. My GoogleFu failed to produce success.

    S 1 Reply Last reply Nov 6, 2022, 11:11 AM Reply Quote 0
    • S Offline
      sdetweil @SirFM
      last edited by Nov 6, 2022, 11:11 AM

      @SirFM I would open an issue in the modules GitHub to engage the author.

      how did u upgrade mm? manual or use my script?

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      S 1 Reply Last reply Nov 6, 2022, 11:47 AM Reply Quote 0
      • S Offline
        SirFM @sdetweil
        last edited by Nov 6, 2022, 11:47 AM

        @sdetweil Manual

        1 Reply Last reply Reply Quote 0
        • R Offline
          richmp95
          last edited by Sep 7, 2023, 10:13 PM

          i am liking this module however when inspecting it, there is a parameter mismatch in module.show: callback is not an optional parameter! showing line 392 on module.js. is this something with this module or something with the new update of MagicMirror?

          M 1 Reply Last reply Sep 8, 2023, 11:02 AM Reply Quote 0
          • M Offline
            MMRIZE @richmp95
            last edited by MMRIZE Sep 8, 2023, 11:02 AM Sep 8, 2023, 11:02 AM

            @richmp95
            MM2.24 changed some codes then showing somewhat annoying “error” message. Not related with real “error”, just ignore it.

            1 Reply Last reply Reply Quote 1
            • F Offline
              Fuen
              last edited by Oct 26, 2023, 11:35 PM

              Hi everyone and thanks fore the MMM-MyScoreboard module who is running just fine. I’m wondering why one team disapear of the scoreboard ? During the day i can see teams i setup to be listed and the hour the game is but when its time for the game to be played then one team (MTL as for Montreal Canadiens in NHL) disapear from the scoreboard with the team the play against, that game ain’t show live stats but every other teams i can follow on screen.

              Is there a place to look at if that team isnt’ write correctly for the live score? Or is it something else that i miss like in the setting?

              Regards

              1 Reply Last reply Reply Quote 0
              • 1 Offline
                1a2a3a
                last edited by Dec 7, 2023, 3:38 PM

                @j-e-f-f how do you reduce the font size of the content? i maanged to reduce them in css but then when the next game appear, the entire thing is back to default.

                these are the 2 css i made but it seems like it doesnt port over to another game…

                .MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.home {
                left: 120px;
                font-size: 0.8rem;
                }
                
                
                .MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.visitor {
                left: 120px;
                font-size: 0.8rem;
                }
                
                S 1 Reply Last reply Dec 7, 2023, 3:43 PM Reply Quote 0
                • S Offline
                  sdetweil @1a2a3a
                  last edited by sdetweil Dec 7, 2023, 3:57 PM Dec 7, 2023, 3:43 PM

                  @1a2a3a said in MMM-MyScoreboard:

                  .MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.visitor

                  the logic of your css selector clause is

                  .MMM-MyScoreboard .box-score.stackedWithLogos.home-team-first .score.visitor
                  

                  elements in elements with class MMM-MyScoreboard
                  AND
                  elements with ALL classes specified on the same element

                       .box-score.stackedWithLogos.home-team-first 
                  
                   classes box-score **AND** stackedWithLogos **AND** home-team-first  
                  

                  AND
                  elements with ALL classes specified on the same element

                      .score.visitor
                  
                  classes  score   **AND** visitor
                  

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  1 1 Reply Last reply Dec 7, 2023, 3:49 PM Reply Quote 0
                  • 1 Offline
                    1a2a3a @sdetweil
                    last edited by Dec 7, 2023, 3:49 PM

                    @sdetweil i dont understand sam…

                    did you mean like this?

                    .MMM-MyScoreboard .box-score AND stackedWithLogos AND home-team-first .score AND visitor {
                    left: 120px;
                    font-size: 0.8rem;
                    }
                    
                    S 1 Reply Last reply Dec 7, 2023, 3:54 PM Reply Quote 0
                    • S Offline
                      sdetweil @1a2a3a
                      last edited by sdetweil Dec 7, 2023, 3:55 PM Dec 7, 2023, 3:54 PM

                      @1a2a3a I was specifying the logic of you selector clause

                      . means class

                      if there are multiple . in a string with no spaces it means
                      all these classes MUST be specified on the element explicitly

                      so you have some weak ands (with spaces)
                      .MMM-MyScoreboard (weak and) .box-score.stackedWithLogos.home-team-first (weak and) .score.visitor

                      and some ABSOLUTE ands
                      .box-score(ABSOLUTE and).stackedWithLogos(ABSOLUTE and).home-team-first
                      all these classes MUST be on the same element
                      class=“box-score stackedWithLogos home-team-first”
                      and
                      .score(ABSOLUTE and).visitor
                      class=“score visitor”

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 1 Reply Last reply Dec 7, 2023, 4:01 PM Reply Quote 0
                      • 1
                      • 2
                      • 24
                      • 25
                      • 26
                      • 27
                      • 28
                      • 26 / 28
                      • 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