MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. justjim1220
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 7
    • Followers 5
    • Topics 35
    • Posts 649
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Playing a local mp4 file as a module

      @sputnik

      Are you wanting something to play a single mp4 file or several (like in a playlist) or to be given a choice to play from of a list of files stored in a local directory?

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: O365 task solution?

      @schwoediauer

      Which aspect of Office 365 are you referring to?

      posted in Development
      justjim1220J
      justjim1220
    • RE: Magic Vanity Mirror

      @praxxxer

      is the mirror round or oval?

      or is it square or rectangle?

      With the square or rectangle, you could easily place a white frame around the mirror with a bit of custom css code, with the mirror having black background, this white frame might just be enough light to not have to worry about external light reflections.

      Add this to the top of your custom.css file:

      html {
        cursor: none;
        overflow: hidden;
        background: #fff;
      }
      
      body {
        margin: 60px;
        height: calc(100% - 120px);
        width: calc(100% - 120px);
      }
      

      then adjust the size of the frame to suit the needs:

      note that the height and width are 100% -
      So, if you change the margin size to 80px, you’ll need tot change the height & width to 100% - 160px

      Play with those numbers and see if you can get a good lighting with the mirror’s built-in frame.

      My example:

      with margin: 80px and H & W at 100% - 160px

      0_1543891034132_Screenshot (165).png

      posted in General Discussion
      justjim1220J
      justjim1220
    • RE: Forum bug

      @bkeyport

      If you set the skin to forums to dark, the buttons show…

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33

      If you did not make any changes to the original files, run git pull && npm install

      If you made changes to any of the original files that you want to keep, rename those files, then run git pull && npm install

      if there isn’t anything you need saved, delete the MMM-NewsFeedTicker directory and run the git clone '. . .'

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33

      This error you got is just letting you know it can’t overwrite file within the module that you made any changes to
      You have to rename the file or delete it or just remove it from the directory

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      New Update —> please run a git pull && npm install within the NewsFeedTicker directory

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      If anyone is interested…

      Adding the following will scroll the image with the article, but it will stop at the left while the rest of the article finishes scrolling:

      @Keyframes marqueeImage {
      0% {left: 100%;}
      100% {left: 0;}
      }
      
      .MMM-NewsFeedTicker .image {
      position: absolute;
      display: inline-block;
      vertical-align: middle;
      margin-left: 0;
      height: 100px;
      z-index: 1;
      background-color: rgb(175, 175, 175);
      animation: marqueeImage 20s linear;
      }
      
      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33

      Nothing just yet, been a bit under the weather with the flu. Keep falling asleep or losing concentration.

      I will keep trudging through. :winking_face:

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-MyScoreboard

      @nhl
      The problem I had Thursday was with NFL

      posted in Sport
      justjim1220J
      justjim1220
    • RE: MagicMirror not showing, even though pm2 says it's online

      @jrinco11

      try npm rebuild

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-MyScoreboard

      @nhl

      I had that problem last night, first time though.

      posted in Sport
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33

      To stop the marquee (scroll) put the following in your config file:

      showMarquee: false,
      
      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33

      Yep! Always lad to help! :smiling_face_with_sunglasses:

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: Syntax Errorn in Config.js

      @sollekram said in Syntax Errorn in Config.js:

      {
      module: “currentweather”,
      position: “top_right”,
      config: {
      location: “New York”,
      locationID: “”, //ID from http://www.openweathermap.org/help/city_list.txt
      appid: “YOUR_OPENWEATHER_API_KEY”
      }
      },
      {
      module: “weatherforecast”,
      position: “top_right”,
      header: “Weather Forecast”,
      config: {
      location: “New York”,
      locationID: “5128581”, //ID from http://www.openweathermap.org/help/city_list.txt
      appid: “YOUR_OPENWEATHER_API_KEY”
      }
      },

      one thing I see is a blank spot…

      {
      			module: "currentweather",
      			position: "top_right",
      			config: {
      				location: "New York",
      				locationID: "",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      		{
      			module: "weatherforecast",
      			position: "top_right",
      			header: "Weather Forecast",
      			config: {
      				location: "New York",
      				locationID: "5128581",  //ID from http://www.openweathermap.org/help/city_list.txt
      				appid: "YOUR_OPENWEATHER_API_KEY"
      			}
      		},
      

      locationID: "", can’t be left blank
      use the same code for weatherforecast: locationID: "5128581",

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33 said in MMM-NewsFeedTicker:

      you might have better luck using encoding: "ISO-8859-15" or encoding: "ISO-8859-9"
      The latter one is supposed to work best with European characters

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-NewsFeedTicker

      @cr4z33

      In the css file, just change background-color: maroon; to background: none;
      can be done with the image as well, but that could make the image difficult to see.

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-MyScoreboard

      So, I know this result was an accident for @xclsior
      0_1541385267757_Screenshot (417).png

      But I would like to do it on purpose so that I can scroll the scores across the screen…

      Any ideas how this can be done?

      posted in Sport
      justjim1220J
      justjim1220
    • RE: alarm clock on/off

      I have been able to press the spacebar to turn it off. Found that out by accident.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-MyScoreboard

      @xclsior

      Did you get your one line issue fixed?

      And, Do you know what caused it?

      I was looking to actually do this on purpose as a scroll to show the results along the bottom or top of the screen.

      If you don’t remember, that’s ok, just thought if you did it would make it easier for me to figure out. :winking_face:

      posted in Sport
      justjim1220J
      justjim1220
    • 1 / 1