gpt4 book ai didi

德尔福: How to set sound/image locations?

转载 作者:行者123 更新时间:2023-12-03 18:18:24 26 4
gpt4 key购买 nike

如何有效地设置声音/图像位置,例如:

procedure TForm1.Button1Click(Sender: TObject); begin
begin
PlaySound('C:\Users\username\Desktop\project\sfx\Sounds\ding.wav', 0, SND_ASYNC);
end;

类似:

procedure TForm1.Button1Click(Sender: TObject); begin
begin
PlaySound('ding.wav', 0, SND_ASYNC);
end;

每次我移动包含项目的文件夹时,声音似乎不再起作用,因为目录发生了变化。

最佳答案

您应该设置/声明相对于项目文件的位置。例如:

var lApplicationExecutablePath: String;
lApplicationExecutablePath := ExtractFilePath(ParamStr(0));
...
var lSoundFile: String;
lSoundFile := TPath.Combine(FolderName, 'sfx\ding.wav');

这样,无论应用程序安装在何处,您都可以并排获得所有需要的文件。

关于德尔福: How to set sound/image locations?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34485552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com