WinCC Unified V16: change screens and process values from PopUps

Sdílet
Vložit
  • čas přidán 27. 08. 2024
  • This video was a wish from the user "Paul Golden" I hope it helps you.
    In this Video I show you how change a screen from a popup or manipulate a process value.
    00:06 start configuration
    00:32 change Value
    02:29 change Screen
    precondition video
    • WinCC Unified V16: rem...
    #DerHecht #WinCC #Unified #TIAPortal

Komentáře • 9

  • @rafaolmos
    @rafaolmos Před 4 lety +1

    Congratulations for your videos. They are very helpful.

  • @paulgolden2408
    @paulgolden2408 Před 4 lety

    Thanks!

  • @sergio_photto02
    @sergio_photto02 Před 2 lety

    Como activar la visibilidad de un motor o objeto desde el POP-UP??

  • @MrAndrej12
    @MrAndrej12 Před 2 lety

    Is It possible to know how I can associated the values inside the Popup? For example, If I open a screen as popup how can I do to associated the values? Thanks for your help

    • @DerHecht40
      @DerHecht40  Před 2 lety

      Hi Andre,
      That cannot be answered in a general way. It is depending how your screen architecture looks.
      what in work my case:
      UI.FindItem("/YourPopUpName/YourTextBoxInsideThePopUp").Text = "MyNewText";

  • @philipchoo7936
    @philipchoo7936 Před 2 lety

    Thanks, what about if it's a popup call another popup to modify the initial popup?

    • @DerHecht40
      @DerHecht40  Před 2 lety +1

      Hi,
      the path is .//NameOfYourPopUp/NameOfTheObjectInthePopUp
      in JS it looks like this
      Screen.FindItem(".//MyPopUp/IO field_1").ProcessValue = 5;

    • @philipchoo7936
      @philipchoo7936 Před 2 lety +1

      @@DerHecht40 Danke!!!! Testing it out.