<?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: (Feature question) Taskbar overlay fullscreen app on 'orange flashing'</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3</link>
<description>DisplayFusion RSS: (Feature question) Taskbar overlay fullscreen app on 'orange flashing'</description>
<lastBuildDate>Sat, 26 Sep 2026 11:27:27 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3</generator>
<item>
<title>RE: (Feature question) Taskbar overlay fullscreen app on 'orange flashing'</title>
<link>https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#5</link>
<pubDate>Tue, 28 Jan 2020 16:34:40 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#5</guid>
<category>DisplayFusion</category>
<description><![CDATA[Nice workaround, thanks for sharing that!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Nice workaround, thanks for sharing that!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: (Feature question) Taskbar overlay fullscreen app on 'orange flashing'</title>
<link>https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#4</link>
<pubDate>Tue, 28 Jan 2020 09:59:46 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#4</guid>
<category>DisplayFusion</category>
<description><![CDATA[I've solved the problem with AutoIt. I've prepared a script which shows simple blinking tooltip at the bottom of the screen for as long as some application is 'blinking' orange.
Code
Copy
Select All
#include &amp;lt;WinAPISysWin.au3&amp;gt;&#xA;#include &amp;lt;WindowsConstants.au3&amp;gt;&#x...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I've solved the problem with AutoIt. I've prepared a script which shows simple blinking tooltip at the bottom of the screen for as long as some application is 'blinking' orange.<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="#code01a0dd785b50717ab2cdc45bcf5f23ca" 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('code01a0dd785b50717ab2cdc45bcf5f23caJs'); 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="code01a0dd785b50717ab2cdc45bcf5f23caJs" name="code01a0dd785b50717ab2cdc45bcf5f23caJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%;min-height:75px">#include &amp;lt;WinAPISysWin.au3&amp;gt;&#xA;#include &amp;lt;WindowsConstants.au3&amp;gt;&#xA;#include &amp;lt;WinAPI.au3&amp;gt;&#xA;&#xA;Global $bHook = 1&#xA;&#xA;;GUI stuff:&#xA;Global $hGui = GUICreate(&quot;&quot;, 1, 1, -100, -100)&#xA;&#xA;;Notification timeout:&#xA;Global $iTimeout = 1000&#xA;Global $iBlinkCount = 0&#xA;Global $iExpireCount = 0&#xA;&#xA;;ToolTip data&#xA;Global $iTooltipIcon = 0&#xA;Global $iTooltipX = @DesktopWidth - 400&#xA;Global $iTooltipY = @DesktopHeight - 40&#xA;&#xA;;Hook stuff:&#xA;GUIRegisterMsg(_WinAPI_RegisterWindowMessage(&quot;SHELLHOOK&quot;), &quot;HShellWndProc&quot;)&#xA;ShellHookWindow($hGui, $bHook)&#xA;&#xA;; Perform action on &#xA;Func HShellWndProc($hWnd, $Msg, $wParam, $lParam)&#xA;    Switch $wParam&#xA;        Case $HSHELL_FLASH&#xA;            $iTooltipIcon = Mod($iTooltipIcon &#x2B; 1, 2) &#x2B; 1&#xA;            $iBlinkCount = $iBlinkCount &#x2B; 1&#xA;            ToolTip(WinGetTitle($lParam), $iTooltipX, $iTooltipY, &quot;Notification:&quot;,  $iTooltipIcon, $TIP_FORCEVISIBLE)&#xA;            AdlibRegister(NotificationTimeout, $iTimeout)&#xA;    EndSwitch&#xA;EndFunc&#xA;&#xA;Func NotificationTimeout()&#xA;    $iExpireCount = $iExpireCount &#x2B; 1    &#xA;    If $iExpireCount == $iBlinkCount Then&#xA;        ToolTip(&quot;&quot;)&#xA;        AdlibUnRegister(NotificationTimeout)&#xA;    EndIf&#xA;EndFunc&#xA;&#xA;Func ShellHookWindow($hWnd, $bFlag)&#xA;    Local $sFunc = &#x27;DeregisterShellHookWindow&#x27;&#xA;    If $bFlag Then $sFunc = &#x27;RegisterShellHookWindow&#x27;&#xA;    Local $aRet = DllCall(&#x27;user32.dll&#x27;, &#x27;int&#x27;, $sFunc, &#x27;hwnd&#x27;, $hWnd)&#xA;    ;MsgPrint($sFunc &amp; &#x27; = &#x27; &amp; $aRet[0])&#xA;    Return $aRet[0]&#xA;EndFunc&#xA;&#xA;While 1&#xA;    Sleep(1000)&#xA;WEnd</pre><textarea id="code01a0dd785b50717ab2cdc45bcf5f23ca" name="code01a0dd785b50717ab2cdc45bcf5f23ca" style="position:absolute;top:0;left:-999999px;width:1px;height:1px"></textarea></div>
</div></div></div>
</div>
]]></content:encoded>
</item>
<item>
<title>RE: (Feature question) Taskbar overlay fullscreen app on 'orange flashing'</title>
<link>https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#3</link>
<pubDate>Mon, 27 Jan 2020 19:40:05 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[I could adapt no problem (move app to designated screen) so thats not a blocker for me. I just would like to know if there is such feature buried somewherw]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I could adapt no problem (move app to designated screen) so thats not a blocker for me. I just would like to know if there is such feature buried somewherw
</div>
]]></content:encoded>
</item>
<item>
<title>RE: (Feature question) Taskbar overlay fullscreen app on 'orange flashing'</title>
<link>https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#2</link>
<pubDate>Mon, 27 Jan 2020 19:21:56 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[Is it the taskbar on the Primary monitor or second monitor that you're referring to here?]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Is it the taskbar on the Primary monitor or second monitor that you're referring to here?
</div>
]]></content:encoded>
</item>
<item>
<title>(Feature question) Taskbar overlay fullscreen app on 'orange flashing'</title>
<link>https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3</link>
<pubDate>Fri, 24 Jan 2020 09:44:56 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/feature-question-taskbar-overlay-fullscreen-app-on-orange-flashing/?ID=3a7934c3-bb6b-4b9a-98a5-b9a85b55ecc3</guid>
<category>DisplayFusion</category>
<description><![CDATA[When application request action (new message on IM, new mail etc) it blinks the icon on taskbar.
When I have fullscreen application (eg RDP connection) i don't see that kind of notifications..
Is it possible for DisplayFusion to 'hook' on that event and perform some action? The simples feature ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
When application request action (new message on IM, new mail etc) it blinks the icon on taskbar.<br/>
<br/>
When I have fullscreen application (eg RDP connection) i don't see that kind of notifications..<br/>
<br/>
Is it possible for DisplayFusion to 'hook' on that event and perform some action? The simples feature I would expect would be to overlay taskbar on top on running fulscreen app.
</div>
]]></content:encoded>
</item>
</channel>
</rss>