<?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: Is a function to start the window 1/3rd from the left possible?</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b</link>
<description>DisplayFusion RSS: Is a function to start the window 1/3rd from the left possible?</description>
<lastBuildDate>Sun, 31 May 2026 06:47:10 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b</generator>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#12</link>
<pubDate>Tue, 30 Apr 2024 17:19:15 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#12</guid>
<category>DisplayFusion</category>
<description><![CDATA[Thank you!!! That worked!
This helps a ton when I'm trying to show clients a bigger window.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Thank you!!! That worked!<br/>
This helps a ton when I'm trying to show clients a bigger window.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#11</link>
<pubDate>Mon, 29 Apr 2024 20:54:51 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#11</guid>
<category>DisplayFusion</category>
<description><![CDATA[I edited this to offset the origin coordinates by the detected monitor's top/left corner instead of assuming it started at 0,0.  Also includes the edit to use the working area instead of the full area.  (Won't work correctly if you have a top or left aligned taskbar)
Code
Copy
Select All
usin...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I edited this to offset the origin coordinates by the detected monitor's top/left corner instead of assuming it started at 0,0.  Also includes the edit to use the working area instead of the full area.  (Won't work correctly if you have a top or left aligned taskbar)<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="#code019e7cc956537257b48c59c00b4f6dba" 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('code019e7cc956537257b48c59c00b4f6dbaJs'); 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="code019e7cc956537257b48c59c00b4f6dbaJs" 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)
    {
        Rectangle monitorRect = BFS.Monitor.GetMonitorWorkAreaByWindow(windowHandle);
        BFS.Window.SetSizeAndLocation(windowHandle, 
            monitorRect.Left + (int)(monitorRect.Width * 0.3333), monitorRect.Top, 
            monitorRect.Width - (int)(monitorRect.Width * 0.3333), monitorRect.Height);
    }
}</pre><textarea id="code019e7cc956537257b48c59c00b4f6dba" name="code019e7cc956537257b48c59c00b4f6dba" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
I didn't really understand why you changed one of the numbers to <div class="Inline"><pre>0.55</pre></div>.  Is there another requirement that you didn't specify before?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#10</link>
<pubDate>Mon, 29 Apr 2024 16:25:10 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#10</guid>
<category>DisplayFusion</category>
<description><![CDATA[I am using the same code. It constantly puts it on monitor #2 no matter which monitor I have the window on.]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I am using the same code. It constantly puts it on monitor #2 no matter which monitor I have the window on.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#9</link>
<pubDate>Mon, 29 Apr 2024 15:00:01 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#9</guid>
<category>DisplayFusion</category>
<description><![CDATA[Are you using the code from your last post? It should be setting the size of whatever window is currently focused]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Are you using the code from your last post? It should be setting the size of whatever window is currently focused
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#8</link>
<pubDate>Thu, 25 Apr 2024 21:07:52 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#8</guid>
<category>DisplayFusion</category>
<description><![CDATA[How do I get it to work on the CURRENT window and not go to a specific one?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
How do I get it to work on the CURRENT window and not go to a specific one?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#7</link>
<pubDate>Wed, 27 Mar 2024 19:05:47 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#7</guid>
<category>DisplayFusion</category>
<description><![CDATA[Ah! I didn't understand the code initially. Thank you! That Worked! These are the parameters that I used:
Code
Copy
Select All
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
Rectangle monitorRect = BFS.Monito...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Ah! I didn't understand the code initially. Thank you! That Worked! These are the parameters that I used: <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="#code019e7cc95669739e9bd0a9b220c07edb" 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('code019e7cc95669739e9bd0a9b220c07edbJs'); 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="code019e7cc95669739e9bd0a9b220c07edbJs" 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)
    {
        Rectangle monitorRect = BFS.Monitor.GetMonitorBoundsByWindow(windowHandle);
        BFS.Window.SetSizeAndLocation(windowHandle, (int)(monitorRect.Width * 0.3333), 0, monitorRect.Width - (int)(monitorRect.Width * 0.55), monitorRect.Height);
    }
}</pre><textarea id="code019e7cc95669739e9bd0a9b220c07edb" name="code019e7cc95669739e9bd0a9b220c07edb" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#6</link>
<pubDate>Tue, 26 Mar 2024 18:25:57 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#6</guid>
<category>DisplayFusion</category>
<description><![CDATA[It just occurred to me that this might not work perfectly for everyone.  I have my taskbar autohide, so I didn't care about the space that the taskbar occupies.  (it occupies zero)  For most people, their taskbar does occupy space... so please replace GetMonitorBoundsByWindow
with GetMonitorWork...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
It just occurred to me that this might not work perfectly for everyone.  I have my taskbar autohide, so I didn't care about the space that the taskbar occupies.  (it occupies zero)  For most people, their taskbar does occupy space... so please replace <div class="Inline"><pre>GetMonitorBoundsByWindow</pre></div> with <div class="Inline"><pre>GetMonitorWorkAreaByWindow</pre></div>.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#5</link>
<pubDate>Tue, 26 Mar 2024 17:54:44 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#5</guid>
<category>DisplayFusion</category>
<description><![CDATA[Why don't you try it and see if it does what you want?  It does what I was able to understand of your request.  The function literally says it affects size and location.  It uses 0.33
two times... once for left position and once to resize the window to be that much smaller than the entire screen...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Why don't you try it and see if it does what you want?  It does what I was able to understand of your request.  The function literally says it affects size <b>and</b> location.  It uses <div class="Inline"><pre>0.33</pre></div> two times... once for left position and once to resize the window to be that much smaller than the entire screen.<br/>
<br/>
Maybe draw a picture?
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#4</link>
<pubDate>Tue, 26 Mar 2024 15:23:50 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[This looks like it just sizes the windows to 33% and doesn't place it in the 33% of the monitor. Am I reading that wrong?
I've already got 3 functions that split it to the left 1/3rd, the middle 1/3rd, and the right 1/3rd, but I'm wanting the left side of the window to START in the middle left 3...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
This looks like it just sizes the windows to 33% and doesn't place it in the 33% of the monitor. Am I reading that wrong? <br/>
<br/>
I've already got 3 functions that split it to the left 1/3rd, the middle 1/3rd, and the right 1/3rd, but I'm wanting the left side of the window to START in the middle left 3rd and extend right instead of starting in the middle of the screen and extending left AND right. <br/>
<br/>
<div class="BackGrey"><div class="Text"><div><b>Quote:</b></div>Use this as a C# scripted function:<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="#code019e7cc9567976dbb06ee67d87659399" 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('code019e7cc9567976dbb06ee67d87659399Js'); 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="code019e7cc9567976dbb06ee67d87659399Js" 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)
    {
        Rectangle monitorRect = BFS.Monitor.GetMonitorBoundsByWindow(windowHandle);
        BFS.Window.SetSizeAndLocation(windowHandle, (int)(monitorRect.Width * 0.33), 0, monitorRect.Width - (int)(monitorRect.Width * 0.33), monitorRect.Height);
    }
}</pre><textarea id="code019e7cc9567976dbb06ee67d87659399" name="code019e7cc9567976dbb06ee67d87659399" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
If you want to adjust the percentage, replace the two <div class="Inline"><pre>0.33</pre></div> with a different number instead of 33%.</div></div>
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#3</link>
<pubDate>Tue, 26 Mar 2024 01:46:29 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Use this as a C# scripted function:
Code
Copy
Select All
using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
Rectangle monitorRect = BFS.Monitor.GetMonitorBoundsByWindow(windowHandle);
BFS.Window.SetSizeAndLocati...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Use this as a C# scripted function:<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="#code019e7cc9568177e9ac358f3862dcfc31" 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('code019e7cc9568177e9ac358f3862dcfc31Js'); 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="code019e7cc9568177e9ac358f3862dcfc31Js" 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)
    {
        Rectangle monitorRect = BFS.Monitor.GetMonitorBoundsByWindow(windowHandle);
        BFS.Window.SetSizeAndLocation(windowHandle, (int)(monitorRect.Width * 0.33), 0, monitorRect.Width - (int)(monitorRect.Width * 0.33), monitorRect.Height);
    }
}</pre><textarea id="code019e7cc9568177e9ac358f3862dcfc31" name="code019e7cc9568177e9ac358f3862dcfc31" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
If you want to adjust the percentage, replace the two <div class="Inline"><pre>0.33</pre></div> with a different number instead of 33%.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>RE: Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#2</link>
<pubDate>Mon, 25 Mar 2024 19:06:37 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[options for alignment]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
options for alignment
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
<item>
<title>Is a function to start the window 1/3rd from the left possible?</title>
<link>https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b</link>
<pubDate>Mon, 25 Mar 2024 19:06:18 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/is-a-function-to-start-the-window-13rd-from-the-left-possible/?ID=018e7701-9a2b-76b0-9e86-1d2ff3ed776b</guid>
<category>DisplayFusion</category>
<description><![CDATA[I have a Custom function to move Window to the Center and enlarge, but I was hoping to have a function that does the same thing, but have the start position 1/3rd from the left of the screen and enlarge to the right (I have an ultrawide monitor).
Is it possible to start at a percentage of the sc...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I have a Custom function to move Window to the Center and enlarge, but I was hoping to have a function that does the same thing, but have the start position 1/3rd from the left of the screen and enlarge to the right (I have an ultrawide monitor). <br/>
<br/>
Is it possible to start at a percentage of the screen? The Alignment options seem somewhat limted and none of them would work the way I'm trying to get it to work. <br/>
<br/>
I was using the Beta, but was having to many issues with these functions so I went back to standard.
</div>
]]></content:encoded>
<media:thumbnail url="https://www.displayfusion.com/Discussions/Download/?ID=018e7701-9b67-7541-9641-e82a403f706b"/>
</item>
</channel>
</rss>