joetesta
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2012
04:45 PM
roPinEntryDialog clear PIN after incorrectly entered
On the roPinEntryDialog if the user enters the PIN wrong, is there a simple way to clear the entry so they can try again without needing to first backspace/delete the prior attempt?
I read the ComponentReference and don't see anything, maybe I would need to close and re-open the dialog window to do it?
I read the ComponentReference and don't see anything, maybe I would need to close and re-open the dialog window to do it?
aspiring
2 REPLIES 2

TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2012
05:55 PM
Re: roPinEntryDialog clear PIN after incorrectly entered
I don't think so. Probably easiest to just open a new screen, then close the old one from underneath it.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)

RokuJoel
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2012
12:18 PM
Re: roPinEntryDialog clear PIN after incorrectly entered
A loop that calls the pin screen and checks the validity of the pin might be one way to do it:
while pinverfied=false
result=doPinEntryScreen()
pinVerified=VerifyPin(result)
end while