Photovor
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014
08:11 AM
Refresh screen after dialog close-out?
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.
4 REPLIES 4

RokuJoel
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014
08:41 AM
Re: Refresh screen after dialog close-out?
What type of screen component do you want to refresh?
Joel
Joel
Photovor
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014
08:45 AM
Re: Refresh screen after dialog close-out?
"RokuJoel" wrote:
What type of screen component do you want to refresh?
Joel
I'm calling the dialog from a roParagraphScreen
renojim
Community Streaming Expert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014
10:31 AM
Re: Refresh screen after dialog close-out?
You have to recreate the screen if you want to change anything.
-JT
-JT
Roku Community Streaming Expert
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.
Help others find this answer and click "Accept as Solution."
If you appreciate my answer, maybe give me a Kudo.
I am not a Roku employee.

RokuJoel
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2014
11:38 AM
Re: Refresh screen after dialog close-out?
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