Page 1 of 1

Disable notification pop-up in AlarmViewer

Posted: Thu Nov 14, 2013 8:30 am
by Paul
Would it be possible to disable the notification shown in attachment so it does not appear when an alarm event occurs?

I would prefer just the alarm text to appear in the alarm banner only.

Re: Disable notification pop-up in AlarmViewer

Posted: Thu Nov 14, 2013 11:46 am
by Edmund
Hi!

In the Alarm Server, Click on the Settings Button and in the new window that appears Unselect all three check boxes for Show Alarm Indicator.
AlarmInd.png
AlarmInd.png (77.66 KiB) Viewed 11929 times

Re: Disable notification pop-up in AlarmViewer

Posted: Mon Nov 18, 2013 9:28 am
by Paul
I tried it and it works. Thank you

Re: Disable notification pop-up in AlarmViewer

Posted: Mon May 11, 2015 7:57 am
by mariekythe
Hi I'm having a problem

in Alarm Server Settings:

I had set trigger so that if Any Active, Set Tag (Buzzer = 1)
the problem for me is that I want a trigger where if ALL Alarms are inactive or ALL acknowledged, Set Tag (Buzzer = 0)

the Trigger only includes..
Image


Before Action settings Had tried this in Alarm Server script: but it didn't work for me for some reason...
namespace Neo.ApplicationFramework.Generated
{
using System.Windows.Forms;
using System;
using System.Drawing;
using Neo.ApplicationFramework.Tools;
using Neo.ApplicationFramework.Common.Graphics.Logic;
using Neo.ApplicationFramework.Controls;
using Neo.ApplicationFramework.Interfaces;


public partial class AlarmServer
{

void AlarmServer_AlarmsChanged(System.Object sender, Neo.ApplicationFramework.Interfaces.Events.AlarmEventsEventArgs e)
{
if (Globals.AlarmServer.IsAnyActive)
{
Globals.Tags.Buzzer.Value = true;
}
else Globals.Tags.Buzzer.Value = false;
}

}
}


any help would be great thank you.