`
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" Printed November 23, 2024, 2:06 am This article has been viewed/printed 35239 times. Google search has resulted in 48 hits on this article since January 25, 2004. |