<?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: Launch multiple applications pref. with Window Position Profiles.</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9</link>
<description>DisplayFusion RSS: Launch multiple applications pref. with Window Position Profiles.</description>
<lastBuildDate>Thu, 30 Apr 2026 04:48:56 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9</generator>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#9</link>
<pubDate>Wed, 14 Aug 2024 19:13:36 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#9</guid>
<category>DisplayFusion</category>
<description><![CDATA[This should do the trick:
Code
Copy
Select All
using System;
using System.Drawing;
using System.Collections.Generic;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set the Window Position Profile name, window title, application path, and ar...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
This should do the trick:

<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="#code019ddcb7f37777d696176807207c162d" 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('code019ddcb7f37777d696176807207c162dJs'); 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="code019ddcb7f37777d696176807207c162dJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;
using System.Collections.Generic;

public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        // Set the Window Position Profile name, window title, application path, and arguments here
        string windowPositionProfile = "profile name";
        List&lt;(string windowTitle, string appPath, string appArgs)&gt; applications = new() {
            new("*Notepad++",@"C:\Program Files\Notepad++\notepad++.exe",""),
            new ("*LogFusion*",@"C:\Program Files\LogFusion\LogFusion.exe","")
        };
        
        foreach (var application in applications)
        {
            string windowTitle = application.windowTitle;
            string appPath = application.appPath;
            string appArgs = application.appArgs;
            
            // Try to get the window
            IntPtr window = BFS.Window.GetWindowByText(windowTitle);
            
            // If the handle is null, launch it and apply the Window Position Profile
            if (window == IntPtr.Zero)
            {
                BFS.Application.Start(appPath, appArgs);
                BFS.DisplayFusion.LoadWindowPositionProfile(windowPositionProfile);
            }
            // Otherwise, give it focus
            else
            {
                BFS.Window.Focus(window);
            }        
        }
    }
}</pre><textarea id="code019ddcb7f37777d696176807207c162d" name="code019ddcb7f37777d696176807207c162d" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#8</link>
<pubDate>Wed, 07 Aug 2024 16:59:12 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#8</guid>
<category>DisplayFusion</category>
<description><![CDATA[what is the script if after pressing a set of hotkeys combo or from a created shortcut, I want display fusion to check if application(s) are already openned. launch multiple applications. if already openned, do not open a new session. then apply a preset windows position profile. Thank you.
That...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
what is the script if after pressing a set of hotkeys combo or from a created shortcut, I want display fusion to check if application(s) are already openned. launch multiple applications. if already openned, do not open a new session. then apply a preset windows position profile. Thank you.<br/>
<br/>
That last script looks like it might work but i just don't know what to duplicate for multiple apps.
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#7</link>
<pubDate>Fri, 09 Oct 2020 15:02:36 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#7</guid>
<category>DisplayFusion</category>
<description><![CDATA[Something like this should get the job done!
Code
Copy
Select All
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Set the Window Position Profile name, window title, application path, and arguments here
st...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Something like this should get the job done!<br/>
<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="#code019ddcb7f386710693c1122d385ab7a9" 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('code019ddcb7f386710693c1122d385ab7a9Js'); 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="code019ddcb7f386710693c1122d385ab7a9Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        // Set the Window Position Profile name, window title, application path, and arguments here
        string windowPositionProfile = "profile name";
        string windowTitle = "*Notepad*";
        string appPath = @"C:\Windows\system32\notepad.exe";
        string appArgs = "";
        
        // Try to get the window
        IntPtr window = BFS.Window.GetWindowByText(windowTitle);
        
        // If the handle is null, launch it and apply the Window Position Profile
        if (window == IntPtr.Zero)
        {
            BFS.Application.Start(appPath, appArgs);
            BFS.DisplayFusion.LoadWindowPositionProfile(windowPositionProfile);
        }
        // Otherwise, give it focus
        else
        {
            BFS.Window.Focus(window);
        }        
    }
}</pre><textarea id="code019ddcb7f386710693c1122d385ab7a9" name="code019ddcb7f386710693c1122d385ab7a9" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#6</link>
<pubDate>Fri, 09 Oct 2020 05:29:36 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#6</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thank you, that worked perfectly.
I'm trying to do what OP mentioned in his original post, perhaps you could help with next steps.
What I'd like to do is:
1. When hotkey is pressed, check if window is open
2. If not, open window(s)
3. Apply Windows Position Profile
Would appreciate any help!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you, that worked perfectly.<br/>
<br/>
I'm trying to do what OP mentioned in his original post, perhaps you could help with next steps.  <br/>
<br/>
What I'd like to do is: <br/>
1. When hotkey is pressed, check if window is open <br/>
2. If not, open window(s) <br/>
3. Apply Windows Position Profile<br/>
<br/>
Would appreciate any help!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#5</link>
<pubDate>Tue, 29 Sep 2020 15:28:47 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#5</guid>
<category>DisplayFusion</category>
<description><![CDATA[That function requires a window handle, so you'd need to do it like this:
Code
Copy
Select All
BFS.Application.GetAppIDByWindow(BFS.Window.GetWindowByText("*windowtitle*"))]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
That function requires a window handle, so you'd need to do it like this:<br/>
<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="#code019ddcb7f398771ab764897aeee33585" 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('code019ddcb7f398771ab764897aeee33585Js'); 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="code019ddcb7f398771ab764897aeee33585Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">BFS.Application.GetAppIDByWindow(BFS.Window.GetWindowByText("*windowtitle*"))</pre><textarea id="code019ddcb7f398771ab764897aeee33585" name="code019ddcb7f398771ab764897aeee33585" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#4</link>
<pubDate>Fri, 25 Sep 2020 06:23:35 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thanks for posting this, Nenn- your solution is exactly what I have been looking for.
Could you suggest how to modify this function to check if the application is running by using the window title instead of the file name?
I tried changing BFS.Application.GetAppIDByFile("*notepad++.exe"); to BF...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thanks for posting this, Nenn- your solution is exactly what I have been looking for.<br/>
<br/>
Could you suggest how to modify this function to check if the application is running by using the window title instead of the file name? <br/>
<br/>
I tried changing <b><i>BFS.Application.GetAppIDByFile("*notepad++.exe");<br/></i></b> to <b><i>BFS.Application.GetAppIDByWindow("*windowname");</i></b> but that returns the following error: <i>Argument 1: cannot convert from 'string' to 'System.IntPtr'<br/></i><br/>
<br/>
Mods, or anyone else have any idea how best to go about this?
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#3</link>
<pubDate>Wed, 13 Feb 2019 07:10:27 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thank you, that helped a lot.
I ended up doing the following to only start applications that aren't running yet (I don't know if it's the best way, but it seems to work).
Code
Copy
Select All
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static vo...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you, that helped a lot.<br/>
<br/>
I ended up doing the following to only start applications that aren't running yet (I don't know if it's the best way, but it seems to work).<br/>
<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="#code019ddcb7f3a875f2948c9e6253eaefaa" 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('code019ddcb7f3a875f2948c9e6253eaefaaJs'); 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="code019ddcb7f3a875f2948c9e6253eaefaaJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        uint appID1 = BFS.Application.GetAppIDByFile("*notepad++.exe");

        while (true)
                {
                    windowHandle = BFS.Application.GetMainWindowByAppID(appID1);
                    if (windowHandle != IntPtr.Zero)
                        break;

                    else
                        BFS.Application.Start("C:\\Program Files\\Notepad++\\notepad++.exe", "");
                        break;
                }
    }
}</pre><textarea id="code019ddcb7f3a875f2948c9e6253eaefaa" name="code019ddcb7f3a875f2948c9e6253eaefaa" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#2</link>
<pubDate>Tue, 12 Feb 2019 15:20:50 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[On the Settings  Functions tab, you could add a Scripted Function that launches the applications. Here's an example that opens Notepad++, you can duplicate the BFS.Application.Start line and add other programs as needed.
Code
Copy
Select All
using System;
using System.Drawing;
public static...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
On the Settings > Functions tab, you could add a Scripted Function that launches the applications. Here's an example that opens Notepad++, you can duplicate the BFS.Application.Start line and add other programs as needed.<br/>
<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="#code019ddcb7f3b27366b90ec041db9367bd" 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('code019ddcb7f3b27366b90ec041db9367bdJs'); 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="code019ddcb7f3b27366b90ec041db9367bdJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">using System;
using System.Drawing;

public static class DisplayFusionFunction
{
    public static void Run(IntPtr windowHandle)
    {
        BFS.Application.Start("C:\\Program Files\\Notepad++\\notepad++.exe", "");
    }
}</pre><textarea id="code019ddcb7f3b27366b90ec041db9367bd" name="code019ddcb7f3b27366b90ec041db9367bd" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
You could then load your Window Position Profile after running the Scripted Function.<br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>Launch multiple applications pref. with Window Position Profiles.</title>
<link>https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9</link>
<pubDate>Tue, 12 Feb 2019 10:21:14 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/launch-multiple-applications-pref-with-window-position-profiles/?ID=3f9671ec-eeac-4a79-aa5c-320749d4a1f9</guid>
<category>DisplayFusion</category>
<description><![CDATA[Hello there,
I bought the software yesterday and I am trying to launch multiple different application with one hotkey.
I'd love if this was possible with Window Position Profiles, but have been unable to find any setting that would launch all missing windows / processes and them put them in pos...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hello there,<br/>
<br/>
I bought the software yesterday and <b>I am trying to launch multiple different application with one hotkey.</b><br/>
<br/>
I'd love if this was possible with Window Position Profiles, but have been unable to <b>find any setting that would launch all missing windows / processes and them put them in position</b>. Is this possible? If not, I'd very much love to see it implemented, if that could happen <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" /><br/>
<br/>
If it's not possible, <b>how can I then achieve opening up multiple applications with preferably one hotkey, maximum two?</b> I have tried making custom functions, but I am unable to bind multiple functions to the same hotkey and as I have seven applications to open, I'd have to have seven different hotkeys <img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/face-frown.light.svg" alt=":(" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:16px;height:16px;" HelpButtonData=":(" HelpButtonDataAlign="BelowMiddle" /><br/>
<br/>
Also, I prefer not to use any triggers that fire when a applications, window, process is created, as I also use the applications one by one sometimes.<br/>
<br/>
Thank you very much in advance, I already love the Window Position Profiles for my workflow.<br/>
<br/>
/Nenn
</div>
]]></content:encoded>
</item>
</channel>
</rss>