Posts: 28
Threads: 12
Joined: Apr 2008
I have an html dialog, it was an example out of the archive mac, is there a way to embed a online music code into it? I was looking thru diffrent html codes online and found some embedded coding but none seem to work! I would like to have background music in the html dialog. thanks in advance.
Posts: 12,097
Threads: 142
Joined: Dec 2002
Function
dlg_html_music
\Dialog_Editor
function# hDlg message wParam lParam
if(hDlg) goto messages
str controls = "3"
str ax3SHD
ax3SHD=
;<html>
;<head>
;<embed src="http://www.xxxxxx.com/zzzzzz.mp3">
;</head>
;<body>
;-
;</body>
;</html>
if(!ShowDialog("dlg_html_music" &dlg_html_music &controls)) ret
;BEGIN DIALOG
;0 "" 0x90C80A44 0x100 0 0 223 135 "Dialog"
;3 ActiveX 0x54030000 0x0 0 22 222 114 "SHDocVw.WebBrowser"
;END DIALOG
;DIALOG EDITOR: "" 0x2030006 "*" "" ""
ret
;messages
sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
str s
sel wParam
,case IDOK
,case IDCANCEL
ret 1