<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to interact with the news module?]]></title><description><![CDATA[<p dir="auto">Hi All,</p>
<p dir="auto">I want to interact with the default news module by being able to press it and show the website of the news/a pop up.<br />
It is supposed to be ARTICLE_MORE_DETAILS  but I am not sure where to put this code in nor how to activate this function.<br />
Would appreciate some pointers!</p>
<p dir="auto">Also, could the calendar module allow scrolling/interactive function?</p>
]]></description><link>https://forum.magicmirror.builders/topic/15002/how-to-interact-with-the-news-module</link><generator>RSS for Node</generator><lastBuildDate>Sat, 09 May 2026 17:12:32 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/15002.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 29 Apr 2021 14:13:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to interact with the news module? on Sun, 02 May 2021 14:15:12 GMT]]></title><description><![CDATA[<p dir="auto">Does the interaction with the news module only work for this MMM-Gesture module?<br />
As I read through the description, yes I am looking for a module that would allow me to interact with the news module, meaning if I press the “read more” button it would bring me to another page or use the Iframe to show the news.<br />
I have an IR screen so I can touch the screen using that frame, but the hardware required in this Gesture module requires different sensors?</p>
]]></description><link>https://forum.magicmirror.builders/post/91220</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91220</guid><dc:creator><![CDATA[clhe0423]]></dc:creator><pubDate>Sun, 02 May 2021 14:15:12 GMT</pubDate></item><item><title><![CDATA[Reply to How to interact with the news module? on Sun, 02 May 2021 13:48:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clhe0423" aria-label="Profile: clhe0423">@<bdi>clhe0423</bdi></a> You can find here an example how it is used in MMM-Gestures: <a href="https://github.com/thobach/MMM-Gestures/blob/master/MMM-Gestures.js#L110" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/thobach/MMM-Gestures/blob/master/MMM-Gestures.js#L110</a> &amp; <a href="https://github.com/thobach/MMM-Gestures/blob/master/MMM-Gestures.js#L118" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/thobach/MMM-Gestures/blob/master/MMM-Gestures.js#L118</a></p>
]]></description><link>https://forum.magicmirror.builders/post/91219</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91219</guid><dc:creator><![CDATA[thobach]]></dc:creator><pubDate>Sun, 02 May 2021 13:48:57 GMT</pubDate></item><item><title><![CDATA[Reply to How to interact with the news module? on Fri, 30 Apr 2021 15:15:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clhe0423" aria-label="Profile: clhe0423">@<bdi>clhe0423</bdi></a> said in <a href="/post/91183">How to interact with the news module?</a>:</p>
<blockquote>
<p dir="auto">articleMoreDetails:true,</p>
</blockquote>
<p dir="auto">u did</p>
<p dir="auto">that text above is useless…</p>
<p dir="auto">the module layout in confg.js is</p>
<pre><code>{
    module:"modulename",
    position:"someposition",
    disabled: true or false,
    classes:"somestring if u want more",
    config : {      // everything to configure the module goes inside here
        // all parms NOT related to a SPECIFIC feed (but all feeds in this case)
        settingname: settingvalue,
            ..
            ..
        setting_list: [   // like feeds
            {     // feed 1
             // all parms related to a specific feed
               feed_parm1:" feed_parm1_value",
               feed_parm2:"feed_pamr2_value"
            },
            {  // feed 2
               ...
            }
        ]                   
    }
}
</code></pre>
<p dir="auto">also, EVERY parm   is name:value  never just a string of text</p>
<p dir="auto">and general rules</p>
<pre><code>       the thing the the left of ';'  does not need quotes
       the thing to the right of colon is a number (1234, 1234.5) or true/false, does not need quotes
       otherwise if needs  quotes if it contains letters 1234, some_street, fred, sue, 
       when u get to the end of a line, ask yourself, is ther MORE to this setting?
      if so, this line should end with a comma  , comma means more to come
</code></pre>
<p dir="auto">if u see an error  ‘unexpected token’,<br />
that USUALLY means missing comma on the line prior to the error line<br />
the rest of the (usually) is a missing close } or ]</p>
]]></description><link>https://forum.magicmirror.builders/post/91184</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91184</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 30 Apr 2021 15:15:50 GMT</pubDate></item><item><title><![CDATA[Reply to How to interact with the news module? on Fri, 30 Apr 2021 14:14:08 GMT]]></title><description><![CDATA[<p dir="auto">oh dear, am a bit lost in this as coding is all new to me<br />
don’t really understand where to place this ‘ARTICLE_MORE_DETAILS’ part in the code…:(</p>
<pre><code>{
module: "newsfeed",
position: "lower_third",
			
config: {
'ARTICLE_MORE_DETAILS'
feeds: [
{
title: "The Star",
url: "https://www.thestar.com.my/rss/News"
},
{
title: "Malay Mail",
url: "https://www.malaymail.com/feed/rss/malaysia"
},
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true,
articleMoreDetails:true,	
}
},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/91183</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91183</guid><dc:creator><![CDATA[clhe0423]]></dc:creator><pubDate>Fri, 30 Apr 2021 14:14:08 GMT</pubDate></item><item><title><![CDATA[Reply to How to interact with the news module? on Fri, 30 Apr 2021 14:02:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clhe0423" aria-label="Profile: clhe0423">@<bdi>clhe0423</bdi></a> it goes before the feeds: [] list as it is not about a specific feed…</p>
<p dir="auto">and the this. line doesn’t go in config.js</p>
<p dir="auto">and you should practice aligning the {} and [] and indenting the things inside each</p>
<p dir="auto">you have 1 too many }</p>
]]></description><link>https://forum.magicmirror.builders/post/91181</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91181</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 30 Apr 2021 14:02:01 GMT</pubDate></item><item><title><![CDATA[Reply to How to interact with the news module? on Fri, 30 Apr 2021 13:58:40 GMT]]></title><description><![CDATA[<p dir="auto">hi sam,</p>
<p dir="auto">thanks for replying me.<br />
the code below isn’t working though…not sure where to put it :(</p>
<pre><code>{
module: "newsfeed",
position: "lower_third",
config: {
 feeds: [
	{
	title: "The Star",
	url: "https://www.thestar.com.my/rss/News"
	},
	{
	title: "Malay Mail",
	url: "https://www.malaymail.com/feed/rss/malaysia"
	},
	],
	showSourceTitle: true,
	showPublishDate: true,
	broadcastNewsFeeds: true,
	broadcastNewsUpdates: true,
	articleMoreDetails:true,
	this.sendNotification('ARTICLE_MORE_DETAILS');
				
	}
	},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/91180</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91180</guid><dc:creator><![CDATA[clhe0423]]></dc:creator><pubDate>Fri, 30 Apr 2021 13:58:40 GMT</pubDate></item><item><title><![CDATA[Reply to How to interact with the news module? on Thu, 29 Apr 2021 15:43:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/clhe0423" aria-label="Profile: clhe0423">@<bdi>clhe0423</bdi></a> it just goes in the config;{} section of the newsreader module.</p>
<p dir="auto"><a href="https://docs.magicmirror.builders/modules/newsfeed.html#using-the-module" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.magicmirror.builders/modules/newsfeed.html#using-the-module</a></p>
<p dir="auto">but you can’t ‘touch’ to do anything</p>
<p dir="auto">not on calendar either.</p>
<p dir="auto">mm is an output only medium…</p>
]]></description><link>https://forum.magicmirror.builders/post/91154</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/91154</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 29 Apr 2021 15:43:37 GMT</pubDate></item></channel></rss>