I'm trying to embed a Flash Lite (2.x) movie into a widget using the following object/embed tag. Both the object and embed regions are defined within the layout on the device(s) (5800 XpressMusic, N79) but the *.swf file never loads on the 5800, nor do any of the parameters (bgcolor) get applied to the object. The src/data path is fine as the SWF files load just fine within Aptana with the WRT plug-in and the N79.
I've got SVG (and MP3, 3GP and MIDI) working just fine (see below - except that SVG objects receive focus and can be manipulated - which isn't always ideal) with both the object and embed tags. As such I feel like I'm missing the blatantly obvious in regards to embedding Flash Lite within a WRT widget.Code:<object data="resources/gnu.swf" width="100" height="100" type="application/x-shockwave-flash"> <param name="movie" value="resources/gnu.swf" /> <param name="play" value="true" /> <param name="loop" value="false" /> <param name="menu" value="false" /> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="bgcolor" value="#4C81A9" /> <param name="scale" value="noborder" /> <embed src="resources/gnu.swf" width="100" height="100" loop="false" menu="false" quality="high" wmode="opaque" bgcolor="#ff3399" type="application/x-shockwave-flash" /> </object>
Any input extremely welcome.Code:<object data="resources/gnu.svg" width="120" height="120" type="image/svg+xml"></object> <embed src="resources/gnu.svg" width="120" height="120" type="image/svg+xml" />

Reply With Quote



