gdmiller105
January 21st, 2003, 11:19 PM
Does anyone know if, or how well, I can integrate Macromedia Flash movies into VB?
|
Click to See Complete Forum and Search --> : flash gdmiller105 January 21st, 2003, 11:19 PM Does anyone know if, or how well, I can integrate Macromedia Flash movies into VB? DaddyGweedo January 23rd, 2003, 12:45 PM I'm not sure if it will help or not but I found this in my searches: http://www.programmersheaven.com/search/download.asp?FileID=25235 I have not used it or even downloaded it. I am searching on how to play sound files in a form application and stumbled accross it. Iouri January 27th, 2003, 10:21 AM Private Sub playflash() With AxShockwaveFlash1 'my control name .Stop() 'make sure you control the running of the movie .Movie = "C:\Documents and Settings\MySide _ \My Documents\Visual Studio _ Projects\WindowsApplication8\rose.swf" 'The file HAS TO BE IN THE BIN DIRECTORY 'or this code with result in an EXCEPTION! .Movie = String.Concat _(Application.StartupPath, _ "\rose.swf") ' is like using the App.path in VB6, The file HAS TO BE IN THE BIN DIRECTORY as well .Movie =System.Windows.Forms.Application. _ _StartupPath & "\rose.swf" .playing = True End With End Sub Byapti January 23rd, 2008, 03:45 AM Hi, I think the Flash/VB article on http://www.adobe.com/devnet/flash/articles/flash_vb.pdf may be helpful in this discussion. This popular white paper is written by some engineering folks from our organization Mindfire Solutions (http://www.mindfiresolutions.com). I hope you find it useful! Cheers, Byapti codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |