Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Clarion in general: Play mp3 files or any other media files using an OLE control 2002-08-12 -- Jim Kane Newsgroups: softvelocity.products.c55ee
> I need to play an mp3 file from my app
> Any help where to begin with this ?
This code will cause windows media player to play anything you want. Of
course, the user must have windows media player installed.
program
map
end
Window WINDOW('WMP'),AT(,,260,142),SYSTEM,GRAY,DOUBLE
OLE,AT(42,14,104,74),USE(?Ole)
END
END
code
open(window)
display()
accept
case event()
of event:openwindow
?ole{prop:create}='MediaPlayer.MediaPlayer.1'
?ole{'FILENAME'}='"D:\CLARION5\APPS\MCI\UGACHAKA.AVI"'
?OLE{'AUTOSIZE'}=1
?OLE{'AUTOSTART'}=0
?OLE{'AUTOREWIND'}=1
?OLE{'CLIPCONTROLS'}=1
?OLE{'SHOWCONTROLS'}=1
?ole{'PLAY()'}
end
end
close(window)
Today is November 21, 2024, 5:48 am This article has been viewed 35283 times. Google search has resulted in 83 hits on this article since January 25, 2004.
|
|