;NSIS Script For MediaCar SKIN ;Backgound Colors BGGradient 0000FF 000000 FFFFFF ;Title Of Your Application ;REPLACE NAME BELOW CORRESPONDING TO YOUR SKIN Name "Mediacar xxxxxx skin" CompletedText "Thanx for using MediaCar, Coyote ;-)" ;Do A CRC Check CRCCheck On ;Output File Name ;REPLACE NAME BELOW CORRESPONDING TO YOUR SKIN OutFile "MediaCar_xxxxxx_skin.exe" ;The Default Installation Directory InstallDir "$PROGRAMFILES\MediaCar\SKINS" ;The text to prompt the user to enter a directory DirText "Please select the Mediacar SKINS folder below" Section "Install" ;Install Files SetOutPath $INSTDIR SetCompress Auto SetOverwrite On ;CHANGE THE PATH BELOW TO POINT TO THE FOLDER OF YOUR SKIN ORIGINE FILES File /r "C:\MEDIACAR\SOFT\SKINS\xxxx" SetOutPath $windir\fonts ;CHANGE THE PATH BELOW TO POINT TO THE FOLDER WHERE ARE YOUR SPECIFIC SKIN FONTS File /r "C:\MEDIACAR\SOFT\SKINS\FONTSXXX" SectionEnd