otuatail Posted September 25, 2009 Share Posted September 25, 2009 Is there a way to add a flash swf file into a php webpage. I have been told by several people that it can be done but have not been told how. I have created a simple swf file, but looking at code on other websites is strange. <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="248" height="141"> <param name="movie" value="template/img/sub.swf"> <param name="quality" value="high"> <embed src="template/img/sub.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="248" height="141"></embed> </object></td> What is clsid? I have created the simple swf file but I don't have any class ID Desmond. Quote Link to comment https://forums.phpfreaks.com/topic/175505-flash-php/ Share on other sites More sharing options...
peranha Posted September 25, 2009 Share Posted September 25, 2009 Not sure you need to put it in an object. I just use the < embed> portion on my site, and it works fine. <embed src="template/img/sub.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="547" height="248"></embed> Quote Link to comment https://forums.phpfreaks.com/topic/175505-flash-php/#findComment-924773 Share on other sites More sharing options...
otuatail Posted September 25, 2009 Author Share Posted September 25, 2009 Ok thanks. This is what I have, but the swf file is missing a bottom border. Also can I fix the size of the swf. I am currently using Action script 3.0 <?php ini_set ("display_errors", "1"); // At the top of the page for page errors. error_reporting(E_ALL); // At the top of the page for page errors ?> <html> <body> <embed src="flash/ExampleRunner.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="547" height="248"></embed> </body> </html> www.des-otoole.co.uk/myswf.php Quote Link to comment https://forums.phpfreaks.com/topic/175505-flash-php/#findComment-924782 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.