|
Sep
14
|
To get the results of a search in XML format, for example, to see the properties that are returned, copy/paste the following code in the "Search Core Result" XSLT window.
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/> <xsl:template match="/"> <xmp><xsl:copy-of select="*"/></xmp> </xsl:template> </xsl:stylesheet>
One question of my customer today was: Can I show a Flash file on a page ?
He provides me an HTML and the SWF files.
I’ve found two easy solutions:
<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=”800” height=”600“>
<param name=”movie” value=”your animation.swf“>
<param name=”quality” value=”high“>
<embed src=”your animation .swf” quality=”high” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”800” height=”600“></embed></object>
For me the best solution is the second, it’s faster.
Of course it will be another story if you want it on the master page, you will need to play with the “.master” page. ![]()