Hi,
I need some help with something.
Is it possible to set a local variable in a sequence diagram and then modify it in the while loop once the program is running?
To break down the code....I am using a sequence diagram to initialize some values for a PPL that is running in the main while loop in my program. But once it is running, I want to be able to adjust these parameters live....is this possible?
My thinking was to use a local variable and pass is across. Either by creating it in the while loop and passing the value to the sequence diagram for inialization or to the while loop. But then I don't think I can change the value as it starts in the sequence diagram and it only runs the one time.