aboutsummaryrefslogtreecommitdiff
path: root/data/tutorialwizard.xml
blob: a63dbb38e3a659235ec3f376f31ac73b844c9b91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<wizard>
		<step number="1">
			<text value="Do you want to view a tutorial?" />
			<list>
				<listentry caption="Yes, view the tutorial" step="next" />
				<listentry caption="No, just start my dreambox" step="end" />
			</list>
		</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>
			<code pos="after">
self.infobardialog.instance.hide()
del self.infobardialog
			</code>

		</step>
		
		<step number="3">
			<text value="This is step number 2." />
		</step>
</wizard>