Archive: 2 small question


2 small question
hello

1. how can i alignment to right text in hebrew that show in the window -licence agreement

2.how can i display 2 lines in the window -choos install location?
i want to give 2 default directorys for the install
one for install the program files and the other default for install the data files


thanks a lot


To make almost everything in the installer (still not perfect) go from right to left use ChangeUI /RTL all your_ui.exe. If you are using the Modern UI, get the latest CVS version and define !MUI_RTL_UI before you insert MUI_SYSTEM. You can also just create an RTF that will be RTL and use that as your license text.

To show two text fields in the same dialog use InstallOptions. Alternatively, you can put two directory pages and when the second one is created copy $INSTDIR (it will be the one from the last directory selection dialog [will only work with the latest CVS version]) into another variable (in the second page's show function). I think the IO solution will be easier for now... See Contrib\InstallOptions for an example and Examples\Modern UI\InstallOptions.nsi if you are using the MUI.


thank you very much it was quick
.