How do i get the installer to make .cfg files allways open with notepad...?
And how with EXperience UI can i make some options on the finish page to do certain things... like Launch the website and launch a file...
Open file with a certain program...?
6 posts
Open a file in Notepad:
Lauch a website:
See 4.9.1.2 and 4.9.1.3 in the manual 🙄
Exec '"$WINDIR\NOTEPAD.EXE" "$INSTDIR\Make.cfg"'
Lauch a website:
ExecShell "open" "http://www.example.com/"
See 4.9.1.2 and 4.9.1.3 in the manual 🙄
Can't i make it so all .cfg files n there computer are automatically opend with notepad?
Also I want to make an option at the end page, the finish page a radiobox... so they can tick, them like:
View Readme?:[*]
Edit Config?:[*]
Launch Program?: [ ]
Also I want to make an option at the end page, the finish page a radiobox... so they can tick, them like:
View Readme?:[*]
Edit Config?:[*]
Launch Program?: [ ]
Originally posted by XxXGoDYou would need to mess around with the user's file associations. That can be done using the Registry functions, but it's not very easy to do. And it requires your installer to run with Admin privileges, if you want to change it system-wide. Also keep in mind that the user might not want your installer to change his file associations, so this "feature" should be optional at least!
Can't i make it so all .cfg files n there computer are automatically opend with notepad?
Originally posted by XxXGoD Also I want to make an option at the end page, the finish page a radiobox... so they can tick, them like:You would need to create a custom page with InstallOptions or nsDialog.
View Readme?:[*]
Edit Config?:[*]
Launch Program?: [ ] [/B]
ahh yeah, i understand.
I looked at:
and
It just confused me more, and there not for ExperienceUI...
I looked at:
and
It just confused me more, and there not for ExperienceUI...
I don't know how "compatible" ExperienceUI is for custom pages 😕
But you can try like this:
But you can try like this:
; pages
; ...
; Put ExperienceUI page macros here, but *no* XPUI_PAGE_FINISH
; ...
page custom CreateMyPage LeaveMyPage "My Custom Finish Page"
Function CreateMyPage
; Create custom page with InstallOptions or nsDialog here
FunctionEnd
Function LeaveMyPage
; Check whatever needs to be checked here
FunctionEnd