Is there a way to refresh the previous screen after a user closes out a roMessageDialog screen? From my dialog, I’m changing some registry values, and I’d like my previous screen to reflect those changes after the dialog is closed.
What type of screen component do you want to refresh?
Joel
“RokuJoel” wrote:
What type of screen component do you want to refresh?Joel
I’m calling the dialog from a roParagraphScreen
You have to recreate the screen if you want to change anything.
-JT
For screens that you need to recreate after they are updated, you generally need to put them inside a conditional loop so that they reload:
while not userExited
userExited=showMyParagraphScreen(content)
end while
