Aspect Script to write in another Aspect
I try to create a script to change the severity of an alarm.
I wrote this script but no action will be create when I click on the command button.
Have you got an idea to change the severity value on an external boolean information?
Sub Event_OnClickButton( Index )
'Msgbox "Command" & Index & " clicked"
' We set the BkColor property of the dialog:
if Index = 1 then
'PSMAlarmConfigurationAspectCategory:BALM-Severity.value' = 100
else
if Index = 2 then
'PSMAlarmConfigurationAspectCategory:BALM-Severity.value' = 200
end if
end if
end sub
I wrote this script but no action will be create when I click on the command button.
Have you got an idea to change the severity value on an external boolean information?
Sub Event_OnClickButton( Index )
'Msgbox "Command" & Index & " clicked"
' We set the BkColor property of the dialog:
if Index = 1 then
'PSMAlarmConfigurationAspectCategory:BALM-Severity.value' = 100
else
if Index = 2 then
'PSMAlarmConfigurationAspectCategory:BALM-Severity.value' = 200
end if
end if
end sub
Add new comment