<?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>Sun, 19 Apr 2026 15:07:54 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 &lt;WinAPISysWin.au3&gt;
#include &lt;WindowsConstants.au3&gt;
#include &lt;WinAPI....]]></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 id="" 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="#code019da648ad8375de87a8bf8fd87089f4" class="ClipboardCopyControl"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019da648ad8375de87a8bf8fd87089f4Js'); return false;"><img src="https://www.displayfusion.com/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;vertical-align:middle !important;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="code019da648ad8375de87a8bf8fd87089f4Js" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">#include &lt;WinAPISysWin.au3&gt;
#include &lt;WindowsConstants.au3&gt;
#include &lt;WinAPI.au3&gt;

Global $bHook = 1

;GUI stuff:
Global $hGui = GUICreate("", 1, 1, -100, -100)

;Notification timeout:
Global $iTimeout = 1000
Global $iBlinkCount = 0
Global $iExpireCount = 0

;ToolTip data
Global $iTooltipIcon = 0
Global $iTooltipX = @DesktopWidth - 400
Global $iTooltipY = @DesktopHeight - 40

;Hook stuff:
GUIRegisterMsg(_WinAPI_RegisterWindowMessage("SHELLHOOK"), "HShellWndProc")
ShellHookWindow($hGui, $bHook)

; Perform action on 
Func HShellWndProc($hWnd, $Msg, $wParam, $lParam)
    Switch $wParam
        Case $HSHELL_FLASH
            $iTooltipIcon = Mod($iTooltipIcon + 1, 2) + 1
            $iBlinkCount = $iBlinkCount + 1
            ToolTip(WinGetTitle($lParam), $iTooltipX, $iTooltipY, "Notification:",  $iTooltipIcon, $TIP_FORCEVISIBLE)
            AdlibRegister(NotificationTimeout, $iTimeout)
    EndSwitch
EndFunc

Func NotificationTimeout()
    $iExpireCount = $iExpireCount + 1    
    If $iExpireCount == $iBlinkCount Then
        ToolTip("")
        AdlibUnRegister(NotificationTimeout)
    EndIf
EndFunc

Func ShellHookWindow($hWnd, $bFlag)
    Local $sFunc = 'DeregisterShellHookWindow'
    If $bFlag Then $sFunc = 'RegisterShellHookWindow'
    Local $aRet = DllCall('user32.dll', 'int', $sFunc, 'hwnd', $hWnd)
    ;MsgPrint($sFunc & ' = ' & $aRet[0])
    Return $aRet[0]
EndFunc

While 1
    Sleep(1000)
WEnd</pre><textarea id="code019da648ad8375de87a8bf8fd87089f4" name="code019da648ad8375de87a8bf8fd87089f4" 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>