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 Windows API: Playing videos on Clarion windows 2002-08-25 -- Jim Kane Newsgroups: TopSpeed.Topic.Third_Party
this code plays an avi from the command line on a cw window and could be
easily integrated.
for other stuff, if you can require your users to have window media player
you can make an instance of it on your window and play just about anything.
this code does that.
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'}='"C:\Documents and Settings\JimKane\My Documents\My
Music\GLJ-Gorgeous.mp3"'
?OLE{'AUTOSIZE'}=1
?OLE{'AUTOSTART'}=0
?OLE{'AUTOREWIND'}=1
?OLE{'CLIPCONTROLS'}=1
?OLE{'SHOWCONTROLS'}=1
?ole{'PLAY()'}
end
end
close(window)
"James Fortune"
Today is December 3, 2024, 11:16 am This article has been viewed 35250 times. Google search has resulted in 48 hits on this article since January 25, 2004.
|
|