installationservices/swi/test/tuiscriptadaptors/scripts/options123.xml
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     1 <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
       
     2 <!-- simple.sis: Installation of a simple text file -->
       
     3 <Script>
       
     4 	<!-- Accept installation prompt -->
       
     5 	<dialog name="DisplayInstall">
       
     6 		<return type="TBool">true</return>
       
     7 	</dialog>
       
     8 
       
     9 	<!-- Choose the first language by its index -->
       
    10 	<dialog name="DisplayLanguage">
       
    11 		<return type="TInt">0</return>
       
    12 	</dialog>
       
    13 
       
    14 	<!-- Choose drive C which is the first in the list -->
       
    15 	<dialog name="DisplayDrive">
       
    16 		<return type="TInt">c</return>
       
    17 	</dialog>
       
    18 	<dialog name="DisplayUpgrade">
       
    19 		<return type="TBool">true</return> 
       
    20 	</dialog>
       
    21 	<dialog name="DisplayOptions">
       
    22 		<selection>
       
    23 			<item index="0">true</item> 
       
    24 			<item index="1">true</item>
       
    25 			<item index="2">true</item>
       
    26 		</selection>
       
    27 		<return type="TBool">true</return> 
       
    28 	</dialog>
       
    29 	<dialog name="DisplayText">
       
    30 		<return type="TBool">true</return> 
       
    31 	</dialog>
       
    32 
       
    33 	<!-- Display security warning, continue if possible -->
       
    34 	<dialog name="DisplaySecurityWarning">
       
    35 		<return type="TBool">true</return>
       
    36 	</dialog>
       
    37 </Script>