FactoryTalk View SE V13

tanderson05

Member
Join Date
Apr 2015
Location
MN
Posts
5
In FactoryTalk View SE v13, how do I get an audbile alarm/bell from the PC speakers to work? The checkbox option that was in the alarm banner properties box is not available as it was in older versions.
 
Last edited:
it's the same as it was in v10. Alarm Banner properties -> States

Check boxes in the Sound column. Maybe your display is narrow and the column is scrolled off screen.
 
Make an invisible banner either on a toolbar/menu display that's always open or on a /ZA type display opened in the background.

On the event subscriptions tab make the event source reference just your particular alarm. Then in the states tab, use the configure sounds button to play the .wav you want.

You could also do this with VBA on a numeric display change event using the PlaySound API.

Code:
Public Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" _
        (ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long
 
3. Add this event into Startup macro with command:
EventOn Bell_Trigger

The simple question: Did you run your Startup macro or Command Line execute 'EventOn Bell_Trigger' prior to testing?

PS: This is certainly the hard way of going about it. Alarm Banner is the simple easy way.
 

Similar Topics

Hello, I have a panelview plus that reads from 4 different PLC's. 2 of these used to be Micrologix PLC's and someone else went and updated them to...
Replies
3
Views
110
Hi. I need to create several alarm servers in an application, but first I need to know if there is any impact on communication, or if more...
Replies
0
Views
74
Hello all, I'm having trouble opening an application. After clicking open I'm prompted to login and after putting in username & password it...
Replies
0
Views
90
Has anyone found information on using the variable message file? I keep looking for documentation on how to implement the message file name as a...
Replies
0
Views
80
I have two identical machines running similar HMI projects, the only difference is one is done in FactoryTalk View Version 10 and the other is...
Replies
5
Views
264
Back
Top Bottom