Hi, I have opened options dialog and trying to open the Help in another dialog by closing the options dialog but it is not working, it makes the roku to restart My code function onKeyEvent(...
I am not sure if you can have nested dialog components. You can give this a try: E.g: dialog = m.top.createChild("Dialog") MainSceneNode = m.top.getScene() MainSceneNode.dialog = dialog
and for closing: function dismissPopupDialog() ?"---Dismiss popup---" MainSceneNode = m.top.getScene() if MainSceneNode.dialog <> invalid then MainSceneNode.dialog.close = true end if