I have the following simple script trying to utilize the messagebox plugin:
Function .onInit
messagebox::show MB_ICONEXCLAMATION "HiTitle" "" "HiMessage" IDOK
FunctionEnd
Section
SectionEnd Now, when I compile with the GUI version (makensisw) it works perfectly.however, when I compile with the console version (makensis) instead of showing a messagebox, it creates two files in it's currentdirectory: one being "HiTitle" and "HiMessage" (the title and message of the messagebox I'm trying to create)...
now I've been reading through the output of the console and it is infact recognizing the messagebox plugin and seemingly including it in the build, as shown here:
Function: ".onInit"
File: "messagebox.dll"->"$PLUGINSDIR\messagebox.dll" 6144 bytes
Plugin Command: show MB_ICONEXCLAMATION HiTitle HiMessage IDOK
FunctionEnd Do you have any idea of how I can solve this problem?Thanks for the time.