Search the Community

Showing results for tags 'graphic'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Found 2 results

  1. Hi All, Hope you all doing well in this pandemic life.  I would need your expertise with an issue I have been struggling with for past few days and thought to reach out here. I am working on a migration project with GE PLC and Citect SCADA 7.10. The GE PLC is migrated to ControlLogix L74 Rev24.10 while Citect SCADA is retained. For testing I only have L71 and L82 and could not managed to organise L74. When the code the loaded in L71 and connected to Citect, I cannot see tags in Graphic page but I see the subscription.txt in Debug folder shows all tags good . The same code when loaded in L82, the Citect works instantly.  Does anyone know this behaviour of PLC and SCADA? Regards, DeeEngr    
  2. Hi, I'm looking for a way to change the button graphic (From "non-pressed button" to "pressed button" which is much lighter) via script.  The main problem is that, the button has to change it's graphic whenever i change a bit in my PLC program, more accurately, I press button in Factory IO, not in HMI, that thing I've already made, so I've set up my button "is pressed" graphic. I've got my tags prepared correctly, and I'm trying to reach the property of the button with this script:   Do  If SmartTags("Variable_1") Is True Then     HmiRuntime.Screens("Screen_1").ScreenItems("Template_Button_2")  End If Loop Is it even proper way to do stuff like that? I THINK it'll work like, if Variable_1 (Bool %Q0.0 for e.g. in PLC program) is 1 Then ->  And when I'm at ScreenItems, i don't know which property should I choose next in order to change button graphic.   Hope you can help :)