<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>DisplayFusion RSS: [Dev Question] Would this cause a problem?</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc</link>
<description>DisplayFusion RSS: [Dev Question] Would this cause a problem?</description>
<lastBuildDate>Fri, 01 May 2026 13:01:17 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc</generator>
<item>
<title>RE: [Dev Question] Would this cause a problem?</title>
<link>https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc#4</link>
<pubDate>Thu, 06 Mar 2014 17:16:00 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[No problem, glad I could help!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
No problem, glad I could help!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: [Dev Question] Would this cause a problem?</title>
<link>https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc#3</link>
<pubDate>Wed, 05 Mar 2014 22:42:06 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Keith,
Thanks for all the info.
The profiles option looked like it could have been interesting, but they would have had to be dynamic/creatable profiles for it to work. Had they been stored in files, that would have been okay, but they appear to be stored in the registry as keys, which makes th...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Keith,<br/>
Thanks for all the info.<br/>
<br/>
The profiles option looked like it could have been interesting, but they would have had to be dynamic/creatable profiles for it to work. Had they been stored in files, that would have been okay, but they appear to be stored in the registry as keys, which makes them tricky to work with.<br/>
<br/>
The idea is, that I have a selection of sub-folders inside a main folder, that the programme I write will pick from. There could be twenty or thirty folders, maybe more, and I don't really want to sit there manually creating that many profiles. The idea behind my task, is to fully automate the creation and selection of options. So if I add or delete folders, I won't need to do anything, as my programme will simply adapt and pick from what's available.<br/>
<br/>
So it looks like changing the single registry key is the option I will go down, as that offers me more flexibility outside DF.I appreciate the help, for what is probably a fairly unique request... thank you.  <img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/face-smile.light.svg" alt=":)" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":)" HelpButtonDataAlign="BelowMiddle" />
</div>
]]></content:encoded>
</item>
<item>
<title>RE: [Dev Question] Would this cause a problem?</title>
<link>https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc#2</link>
<pubDate>Wed, 05 Mar 2014 19:17:27 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[You should be able to do that, but you'd need to close DisplayFusion before changing the registry values, then re-open it after they're changed. You can close it via command line using DisplayFusionCommand.exe -CloseAll. The registry values you'd want to change are the HKCU\Software\Binary Fortre...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
You should be able to do that, but you'd need to close DisplayFusion before changing the registry values, then re-open it after they're changed. You can close it via command line using <b>DisplayFusionCommand.exe -CloseAll</b>. The registry values you'd want to change are the <b>HKCU\Software\Binary Fortress Software\DisplayFusion\Wallpaper\guid\Wallpaper_#_RotatePaths</b> multi-line string values.<br/>
<br/>
Alternatively, you could create a bunch of different Wallpaper Profiles (<a href="http://www.displayfusion.com/Help/#wallpaper-profiles" target="_blank" rel="nofollow"><b>http://www.displayfusion.com/Help/#wallpaper-profiles</b></a>), then create a script that will randomly pick a profile using <b>DisplayFusionCommand.exe -wallpaperloadprofile "profile name"</b><br/>
<br/>
Here's the full DisplayFusionCommand.exe reference: <a href="http://www.displayfusion.com/KB/CommandLine/" target="_blank" rel="nofollow"><b>http://www.displayfusion.com/KB/CommandLine/</b></a><br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>[Dev Question] Would this cause a problem?</title>
<link>https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc</link>
<pubDate>Wed, 05 Mar 2014 00:50:08 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/dev-question-would-this-cause-a-problem/?ID=f4f4f3c2-e3fc-40ee-935a-81b26f8553bc</guid>
<category>DisplayFusion</category>
<description><![CDATA[One feature I would like in DF, is the ability to set a different folder each day, to select pictures from. That's probably an isolated request, so I (hopefully) plan to create my own solution.
On another machine that I use as a Digital Picture Frame, I use the Picassa screensaver. I have writte...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
One feature I would like in DF, is the ability to set a different folder each day, to select pictures from. That's probably an isolated request, so I (hopefully) plan to create my own solution.<br/>
<br/>
On another machine that I use as a Digital Picture Frame, I use the Picassa screensaver. I have written my own piece of software, that runs each day, randomly chooses a folder from a selection, and updates the Picassa config files, to use that folder. I was thinking about doing the same thing with DF, where I write a bit of software that runs at startup, picks a folder, then sets the specific registry key for that monitor in the Binary Fortress registry settings.<br/>
<br/>
Can the devs say whether they think this will cause any problems with DF, or should it fine to do? Doing it this way, is quicker than requesting the feature, because like the "Specific orientation only" feature I requested years ago, it might not be popular enough for the devs to spend time on. I can add this facility in no time, if it won't cause any problems.
</div>
]]></content:encoded>
</item>
</channel>
</rss>