Important Update
The new location of this project is https://code.google.com/p/vcl-styles-plugins/
The VCL Styles Utils project, now includes a plugin (dll) to skin the installers created by NSIS (2.46 and 3.0). The current size of the plugin is about 1.6 mb, but when is included (and compressed) in the script only add ~550 Kb to the final installer.
How to use it
To use the plugin in a NSIS installer you must call the LoadVCLStyle function passing the skin name in the .onInit function.
Function .onInit InitPluginsDir ;Get the skin file to use File /oname=$PLUGINSDIR\Amakrits.vsf "..\Styles\Amakrits.vsf" ;Load the skin using the LoadVCLStyle function NSISVCLStyles::LoadVCLStyle $PLUGINSDIR\Amakrits.vsf FunctionEnd
To use the plugin in a NSIS Uninstaller you must call the LoadVCLStyle function passing the skin name in the un.onInit function.
Function un.onInit InitPluginsDir File /oname=$PLUGINSDIR\Amakrits.vsf "..\Styles\Amakrits.vsf" ;Load the skin using the LoadVCLStyle function NSISVCLStyles::LoadVCLStyle $PLUGINSDIR\Amakrits.vsf FunctionEnd
For download and more info check the page of the plugin
January 23, 2014 at 12:21 pm
Kudos ..This is Awesoooome !
Pingback: VCL Styles for NSIS | Delphi Programming | Scoo...
Pingback: Sip from the Firehose : FireMonkey and VCL Styles - articles, blogs, videos, docs and examples