Hi all, Im a newbe so beware... I have been using Multimedia Builder for quite some time, this app uses dll files and Im tryin to make one, a simple mp3 dll (open,play),Im using the MediaPlayer in delphi 7 (will probably get something better later) but this is what I have so far..
------------------
procedure DllOpen; cdecl;
implementation
procedure DllOpen; cdecl;
begin
g_theForm.MediaPlayer1.Stop;
g_theForm.MediaPlayer1.FileName:=g_sScriptString;
g_theForm.MediaPlayer1.Open;
g_theForm.MediaPlayer1.Play;
end;
------------------
Most of this I got from the Delphi 7 help files or what I could understand of em, And im know Im probably way off...
------------------
procedure DllOpen; cdecl;
implementation
procedure DllOpen; cdecl;
begin
g_theForm.MediaPlayer1.Stop;
g_theForm.MediaPlayer1.FileName:=g_sScriptString;
g_theForm.MediaPlayer1.Open;
g_theForm.MediaPlayer1.Play;
end;
------------------
Most of this I got from the Delphi 7 help files or what I could understand of em, And im know Im probably way off...