<?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: Closing a Program Using Triggers.</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=72f9c0e8-9b73-4145-ab45-b581c10b77b7" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=72f9c0e8-9b73-4145-ab45-b581c10b77b7</link>
<description>DisplayFusion RSS: Closing a Program Using Triggers.</description>
<lastBuildDate>Tue, 26 May 2026 03:16:18 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=72f9c0e8-9b73-4145-ab45-b581c10b77b7</generator>
<item>
<title>RE: Closing a Program Using Triggers.</title>
<link>https://www.displayfusion.com/Discussions/View/closing-a-program-using-triggers/?ID=72f9c0e8-9b73-4145-ab45-b581c10b77b7#3</link>
<pubDate>Sun, 22 Apr 2018 17:21:39 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/closing-a-program-using-triggers/?ID=72f9c0e8-9b73-4145-ab45-b581c10b77b7#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thanks so much. I'll try that when I get home]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks so much. I'll try that when I get home <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: Closing a Program Using Triggers.</title>
<link>https://www.displayfusion.com/Discussions/View/closing-a-program-using-triggers/?ID=72f9c0e8-9b73-4145-ab45-b581c10b77b7#2</link>
<pubDate>Sun, 22 Apr 2018 16:32:44 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/closing-a-program-using-triggers/?ID=72f9c0e8-9b73-4145-ab45-b581c10b77b7#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[Change your current trigger by removing the current action from it and adding a new "Run Funciton: Add New Scripted Function" action. Then paste the following code into the window that opens and change the names of your monitor profiles, the path to the application, and the application name in co...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Change your current trigger by removing the current action from it and adding a new "Run Funciton: Add New Scripted Function" action. Then paste the following code into the window that opens and change the names of your monitor profiles, the path to the application, and the application name in code.<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019e62487c6c77bf99103781b54b0115" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e62487c6c77bf99103781b54b0115Js'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019e62487c6c77bf99103781b54b0115Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

// The 'windowHandle' parameter will contain the window handle for the:
//   - Active window when run by hotkey
//   - Trigger target when run by a Trigger rule
//   - TitleBar Button owner when run by a TitleBar Button
//   - Jump List owner when run from a Taskbar Jump List
//   - Currently focused window if none of these match
public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        var monProfile = BFS.DisplayFusion.GetCurrentMonitorProfile();
        
        if (monProfile == "Monitor profile name which to open app")
            // Edit path to your application
            BFS.Application.Start(@"C:\Windows\System32\notepad.exe", "");
            
        if (monProfile == "Monitor profile name which to close app")
            // Edit application name
            BFS.Application.Kill(BFS.Application.GetAppIDByFile("*notepad.exe"));
            
        else
            return;
    }
}</pre><textarea id="code019e62487c6c77bf99103781b54b0115" name="code019e62487c6c77bf99103781b54b0115" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>Closing a Program Using Triggers.</title>
<link>https://www.displayfusion.com/Discussions/View/closing-a-program-using-triggers/?ID=72f9c0e8-9b73-4145-ab45-b581c10b77b7</link>
<pubDate>Sun, 22 Apr 2018 08:38:19 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/closing-a-program-using-triggers/?ID=72f9c0e8-9b73-4145-ab45-b581c10b77b7</guid>
<category>DisplayFusion</category>
<description><![CDATA[I have managed to set up a trigger that opens an application on a certain profile. I would now like to make a trigger that closes it when another profile is launched. Any help would be much appreciated. Cheers.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I have managed to set up a trigger that opens an application on a certain profile. I would now like to make a trigger that closes it when another profile is launched. Any help would be much appreciated. Cheers.
</div>
]]></content:encoded>
</item>
</channel>
</rss>