View Single Post
Old 06-20-05, 11:50 PM   #3 (permalink)
OddbOd
Aximsite Minor League
 
OddbOd's Avatar
Member
 
Join Date: Nov 2004
Location: Australia
Posts: 208
Thanked 1 Time in 1 Post
Flash player is just an ActiveX control you need to give IE some information on how to play it. In this case a simple HTML file will do, simply paste the code below into notepad, change Whatever_your_Flash_File_is_called.swf to your swf's filename and save it as a .htm file then transfer it to the same directory as the swf. Now open the page in Pocket IE. If you want to change the size or quality then the values for this are clearly marked.
Code:
<HTML>
<HEAD>
<TITLE>FlashPlayer</TITLE>
</HEAD>
<BODY bgcolor="#53695C">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=6,0,0,0"
 ID=rapier4  WIDTH=230 HEIGHT=255>
<PARAM NAME=movie VALUE="Whatever_your_Flash_File_is_called.swf">
<PARAM NAME=menu VALUE=false>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#53695C>
</OBJECT>
</BODY>
</HTML>
OddbOd is offline   Reply With Quote