|
I've got a little bit better of an answer for you. I made up this short html code so you can view the movies. I tried it out with a flash file I have and it worked. It's just a quick rough attempt, so play around with the code if you know how. All you have to do is copy this code into notepad click save as and name it whatever.html. Add this html file and the .swf in the same directory and use file explorer and click on the html. Change the YOUR_FILE part to whatever your .swf file name is.
You can't edit html on the pocket pc (at least that I know of) so you need to either keep changing the html and re-sending it to your axim, or have an html for every flash movie.
Hope this code goes through as plain text....
<HTML>
<HEAD>
<TITLE>Pocket PC Flash Player By IronMonkeyGF</TITLE>
</HEAD>
<BODY bgcolor="#FFFFFF">
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
cab#version=5,0,0,0"
WIDTH=100% HEIGHT=100%>
<PARAM NAME=movie VALUE="YOUR_FILE.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="YOUR_FILE.swf" quality=high bgcolor=#FFFFFF WIDTH=100% HEIGHT=100%
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/
shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</EMBED>
</OBJECT>
</BODY>
</HTML>
__________________
-Gabe
|