MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. justjim1220
    3. Best
    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: MMM-TouchAlarm - Your touchable Alarm Clock

      @mykle1

      I have tried it out and YES, it does work with clicking mouse and touchpad

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: MMM-DigitalAlarmClock Upcoming alarm Format

      @RecklessOne

      This is fixed now.
      Apologies for taking so long
      Please do a git pull && npm i
      Thank You

      0_1553485769490_Screenshot (26).png

      0_1553485779267_Screenshot (27).png

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: YouTube video not available

      @darbos

      some YouTube videos won’t play in an app outside of the actual YouTube site.

      Try a different video.

      I have a playlist, and have removed quite a few videos due to this issue.

      Sometimes if you find a different source for the same video, it will work, so try that route also.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: MMM-TouchAlarm - Your touchable Alarm Clock

      @janloebel

      Thanks for fixing the snooze button! :winking_face:

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: Playing a local mp4 file as a module

      @remylpat

      I think I can work out something. might take me a few days to get it done, but I should be able to come up with something.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: Can you help me about this error

      @fonfon

      no need to cut/paste each module…

      you can add

         disabled: false
      

      above each module, like this…

      {
          disabled: false,
          module: "clock",
          position: "top_center"
      },
      

      then, you can change it to true to shut off the module.

      it would be the easiest way to determine which module is causing the issue.
      load all your modules back into the config.js,
      add the code above,
      make all the default modules ‘false’,
      and all the rest ‘true’,
      refresh your mirror,
      if you still get the same issues,
      turn off the mirror and your terminal,
      maybe even restart your computer,
      then open your terminal,
      restart the mirror with ‘npm start -dev’
      this will give you an error log, find that and post it in here,
      this would be easier for us to help you

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: BBC News feed

      there is an omission in the newsfeed.js file, that is causing this problem…

      this secton:

      if(!this.config.showFullArticle){
              var title = document.createElement("div");
      	title.className = "bright medium light" + (!this.config.wrapTitle ? " no-wrap" : "");
      	title.innerHTML = this.newsItems[this.activeItem].title;
      	wrapper.appendChild(title);
      }
      

      states if(!this.config.showFullArticle){

      But there isn’t a showFullArticle: false; in 'defaults

      So, basically it is ignoring the showSourceTitle: true, because this section cannot be executed

      I think it would make more sense to have the above code snippet be worded like this:

      if(this.config.showSourceTitle){
              var title = document.createElement("div");
      	title.className = "bright medium light" + (!this.config.wrapTitle ? " no-wrap" : "");
      	title.innerHTML = this.newsItems[this.activeItem].title;
      	wrapper.appendChild(title);
      }
      

      then maybe add:

      showSourceTitle = false;
      

      to this section of code:

      if (this.config.showFullArticle) {
      	var fullArticle = document.createElement("iframe");
      	fullArticle.className = "";
      	fullArticle.style.width = "100vw";
      	// very large height value to allow scrolling
      	fullArticle.height = "3000";
      	fullArticle.style.height = "3000";
      	fullArticle.style.top = "0";
      	fullArticle.style.left = "0";
      	fullArticle.style.border = "none";
      	fullArticle.src = this.getActiveItemURL()
      	fullArticle.style.zIndex = 1;
      	wrapper.appendChild(fullArticle);
      }
      

      if you don’t want the title to display while the article is being displayed.

      posted in Utilities
      justjim1220J
      justjim1220
    • RE: Playing a local mp4 file as a module

      @sputnik & @remylpat …

      Give this a try…

      See if it is anything close to what you are wanting…

      Still tweaking it a bit, but it is working.

      I am working on getting it to work with the RasPi buttons also.

      Please give me any and all feedback, Thanks! :smiling_face_with_sunglasses:

      Description:

      A very simple video player module with clickable thumbnails to show playlist.

      Screenshots:

      0_1544778617287_Screenshot (442).png
      0_1544778640438_Screenshot (443).png
      0_1544778668486_Screenshot (444).png
      0_1544778726663_Screenshot (445).png
      0_1544778755884_Screenshot (446).png
      0_1544778856502_Screenshot (447).png

      Variations:

      this is the first version, working on: simplifying configurations,
      size of player, buttons, number of videos, buttons can be changed to text as well as color
      and upcoming… option to use physical buttons on RasPi

      Any options anyone may want with this module… Feel free to let me know! :smiling_face_with_sunglasses:

      Download:

      [card:justjim1220/MMM-MyVideoPlayer]

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: Help file confing. js

      @gianluca

      I just switched mine to Italian and the only module that changed was MMM-NOAA3 which is a really good weather module.

      posted in Troubleshooting
      justjim1220J
      justjim1220
    • RE: BBC News feed

      @TamP

      you might try deleting the module then reinstalling it

      I just tried exactly what you have configured and it works just fine…

      Since newsfeed is a part of the initial MM2 installation, go here: https://github.com/MichMich/MagicMirror/tree/master/modules/default/newsfeed
      and get the newsfeed files themselves. You probably only need the actual js files: fetcher.js & newsfeed.js
      right click on the file and click Save Link As… then save to your newsfeed directory within MM2

      posted in Utilities
      justjim1220J
      justjim1220
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 7 / 8