我有一個安裝程序與滾動許可證插件有交互問題。安裝程序在沒有插件的情況下工作得很好,這就是插件所包含的內容:NSIS滾動許可歡迎屏幕
!
include MUI.nsh
!define MUI_PAGE_CUSTOMFUNCTION_SHOW LicenseShow
!insertmacro MUI_PAGE_LICENSE "EULA.txt"
unction LicenseShow
ScrollLicense::Set /NOUNLOAD
FunctionEnd
Function .onGUIEnd
ScrollLicense::Unload
FunctionEnd
Section A
Section End
我遇到的問題就在這裏。如果歡迎頁面顯示在許可證頁面之前,它將無法進入下一個屏幕,因爲它正在查找滾動條並接受按鈕。如果我刪除WELCOME頁面,一切正常。有沒有人有這個插件的經驗?或者我如何讓插件忽略MUI_PAGE_WELCOME?
!insertmacro MUI_PAGE_WELCOME <--- If I remove this Welcome page everything works great!
!insertmacro MUI_PAGE_LICENSE "eula.rtf"
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
我很困惑你的文件是什麼。它是第一塊還是第二塊? – crashmstr