i'm trying to get my app to install a font. I've downloaded the fontName and fontNameAdv stuff from Vytautas but I can't get it to work.
The .nsh files seem to be in th eright place, as does the dll but my code
gives me the error
!include FontRegAdv.nsh
!include FontName.nsh
!define FontBackup Software\myapp\Telnet
Section "Fonts"
StrCpy $FONT_DIR $FONTS
!insertmacro InstallTTF 'D:\AProducts\Utilities\Telnet\fonts\linedraw.ttf'
SendMessage ${HWND_BROADCAST} ${WM_FONTCHANGE} 0 0 /TIMEOUT=5000
SectionEnd
!insertmacro: InstallTTF
Push: $0
Push: $R0
Push: $R1
Push: $R2
Push: $R3
!define: "Index"="Line207.7"
!insertmacro: GetFileNameCall
!insertmacro: macro "GetFileNameCall" requires 2 parameter(s), passed 3!
Error in macro InstallTTF on macroline 10
Error in script "D:\AProducts\Utilities\Setup\NSIS\telnet_setup.nsi" on line 207 -- aborting creation process
Any ideas where I'm going wrong?
Rob