diff options
Diffstat (limited to 'data/tutorialwizard.xml')
| -rw-r--r-- | data/tutorialwizard.xml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/data/tutorialwizard.xml b/data/tutorialwizard.xml index f48812d2..53046a20 100644 --- a/data/tutorialwizard.xml +++ b/data/tutorialwizard.xml @@ -1,5 +1,20 @@ <wizard> <step number="1"> - <text value="Your dreambox is a very powerful digital receiver." /> + <text value="By pressing the OK Button on your remote control, the info bar is being displayed." /> + <code> +from Screens.InfoBar import InfoBar +self.infobardialog = self.session.instantiateDialog(InfoBar) +self.infobardialog.hideTimer.stop() +self.infobardialog.instance.show() + </code> + </step> + <step number="2"> + <text value="By pressing the OK Button on your remote control, the info bar is being displayed." /> + <code> +from Screens.InfoBar import InfoBar +self.infobardialog = self.session.instantiateDialog(InfoBar) +self.infobardialog.hideTimer.stop() +self.infobardialog.instance.show() + </code> </step> </wizard> |
