【发布时间】:2013-05-09 18:53:55
【问题描述】:
我正在使用 nsis 编写安装程序。 在“.onInit”上,我正在检查必备软件是否存在,并基于此我想启用或禁用组件页面的“下一步”按钮。这是我正在尝试的内容
Function .onInit
${If} $JavaExists == false ;check if java is installed
${OrIf} $TomcatExists == false ;check if tomcat is installed
${OrIf} $MysqlExists == false ;check if mysql is installed
;code to disable next button of component page
${EndIf}
FunctionEnd
【问题讨论】: