MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. Sven1894
    MagicMirror² v2.24.0 is available! For more information about this release, check out this topic.
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 26
    • Best 4
    • Controversial 0
    • Groups 0

    Sven1894

    @Sven1894

    4
    Reputation
    17
    Profile views
    26
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Sven1894 Unfollow Follow

    Best posts made by Sven1894

    • RE: My Magic Miror

      Wow that looks amazing! Great work!

      posted in Show your Mirror
      S
      Sven1894
    • RE: Basic Text on Magic Mirror

      The deafualt module “helloworld” can do this 🙂

      posted in General Discussion
      S
      Sven1894
    • RE: News module wiht pictures

      @cowboysdude Wow thank you so much! 🙂 It works really good, thank you! 🙂

      posted in Requests
      S
      Sven1894
    • RE: News module wiht pictures

      @cowboysdude alright thank you 🙂

      posted in Requests
      S
      Sven1894

    Latest posts made by Sven1894

    • RE: My Magic Miror

      Wow that looks amazing! Great work!

      posted in Show your Mirror
      S
      Sven1894
    • RE: How to send notification with MMM-EasyPix

      @sdetweil In the MMM-EasyPix.js

      posted in Troubleshooting
      S
      Sven1894
    • How to send notification with MMM-EasyPix

      How can I send notifications with the MMM-EasyPix module?
      I tried

      image.onerror = this.sendNotification('Pic is not exisiting');
      

      but nothing happened.
      If I do

      image.onerror = console.log('Pic is not exisiting');
      

      it logs ‘Pic is not existing’ in the console.

      Any Ideas?

      posted in Troubleshooting
      S
      Sven1894
    • RE: MMM-EasyPix - skip non-existend pics

      @sdetweil Thank you that helped me a little bit.
      Do you know how I can send notifications to other modules with the MMM-EasyPix module?
      I tried

      image.onerror = this.sendNotification('Pic is not exisiting');
      

      but it didnt send a notification.

      posted in Requests
      S
      Sven1894
    • RE: MMM-EasyPix - skip non-existend pics

      @sdetweil do you have any Idea how I could detect the loading error?

      posted in Requests
      S
      Sven1894
    • RE: MMM-EasyPix - skip non-existend pics

      Does nobody have an idea?

      posted in Requests
      S
      Sven1894
    • MMM-EasyPix - skip non-existend pics

      I have different images that are displayed. Each of them has an MMM-EasyPix entry in the config. The images are switched through with MMM pages. Is there a way to jump directly to the next page if an image doesn’t exist in the pix folder?

      posted in Requests
      S
      Sven1894
    • MMM-BackgroundSlideshow animation

      Hello,
      I want to display a picture which is bigger than the screen. The height of the pic is bigger than the height of the screen, so I used the backgroundAnimationEnabled Option of the MMM-BackgroundSlideshow module. Now the picture scrolls either from top to bottom, or from bottom to top. But I want that it only scrolls from top to bottom. Is there any option to set that?

      Here is my config entry of the module:

      {
          module: 'MMM-BackgroundSlideshow',
          position: 'fullscreen_below',
          config: {
            imagePaths: ['modules/MMM-BackgroundSlideshow/bt-background/'],
      	  slideshowSpeed: 86400,
            transitionImages: true,
            randomizeImageOrder: true,
      	  transitionSpeed: '0s',
      	  backgroundAnimationEnabled: true,
      	  backgroundPosition: 'top',
      	  backgroundSize: 'cover',
      	  animations: ['slide'],
      	  backgroundAnimationLoopCount: '1',
      	  backgroundAnimationDuration: '5s',
          },
        },
      

      Thanks for any help

      posted in Troubleshooting
      S
      Sven1894
    • RE: Help me fix my dashboard (see 1st comment) - Issue with duplicating method with MMM-EveryNews

      @j-lewis You are welcome

      posted in Troubleshooting
      S
      Sven1894
    • RE: Help me fix my dashboard (see 1st comment) - Issue with duplicating method with MMM-EveryNews

      I’m not a css expert either, but I hope I can explain it to you in an understandable way.

      1. Why do you think this worked? (and/or why did it not work before)

      The .MMM-EveryNews is the selector, so for example

      .MMM-EveryNews .header {
        color: cyan;             /* Color the title text. Default is white. */
        text-align: center;           /* Align the title text. (left, center, right) */
        /*  display: none; */         /* Uncomment if you don't want title text */
      }
      

      wanted to select the header from MMM-EveryNews and set the color to cyan and the the text-align to center.

      You renamed the modules to MMM-EveryNews2 and MMM-EveryNews3 but didn’t change the selector in the css file.
      So for example in your MMM-EveryNews2 module the css file still wanted to change the header from MMM-EveryNews. But there was nothing with the name MMM-EveryNews, because you changed the Name to MMM-EveryNews2.

      I hope this was understandable 😅

      1. Is there another way to do this as it would be a pain to do with every update of the module

      You could copy and paste the css entrys of each module in the custom.css file. (/MagicMirror/css/custom.css). I think that should work.

      But I also think adding three different modules is not the best solution. It should somehow be possible to do this by adding the same module three times, but I haven’t been able to figure out how until now. Maybe someone else has an idea, I am also a just MM beginner.
      But as long as this works for you, this solution is fine for now.

      I am glad I was able to help you. 🙂

      posted in Troubleshooting
      S
      Sven1894