[求助]请版主出山--怎样在AutoPlay Media Studio中保存特殊字体!
我想一定要这样做的话也可以,就是在光盘运行时先复制字体到FONTS目录中,然后注册字体.退出是在注销字体并删除字体,不过就是有点麻烦,要用到File.copy和System.RegisterFont命令.
而且要应用Project-->Actions下的On Startup和On Shutdown标签,在这里加入Action可以在光盘自动运行时先执行.
拷贝和删除相信你已经会了,所以简单说一下注册字体吧
System.RegisterFont
注册字体
例:将Windows\FONTS目录付给fonts_dir变量;然后在系统中注册myfont.ttf文件为Crazy Font字体.
fonts_dir = Shell.GetFolder(SHF_FONTS); -- Gets the path to the user';s Font directory.
System.RegisterFont(fonts_dir .. "\\myfont.ttf", "Crazy Font", true);