Disable notification pop-up in AlarmViewer

A forum devoted to the discussion of all topics having to do with scripting and other advanced programming using iX Developer.
Post Reply
Paul
Posts: 5
Joined: Thu Jun 06, 2013 6:59 am

Disable notification pop-up in AlarmViewer

Post 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.
Attachments
notification.png
notification.png (16.17 KiB) Viewed 11215 times

User avatar
Edmund
Posts: 92
Joined: Thu Nov 29, 2012 2:27 pm

Re: Disable notification pop-up in AlarmViewer

Post 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 11212 times
Edmund Andersson

AITECH AB

Part of Beijer Integrator Group

Paul
Posts: 5
Joined: Thu Jun 06, 2013 6:59 am

Re: Disable notification pop-up in AlarmViewer

Post by Paul »

I tried it and it works. Thank you

mariekythe
Posts: 2
Joined: Thu Feb 27, 2014 7:58 am

Re: Disable notification pop-up in AlarmViewer

Post 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.

Post Reply