There may be a requirement to display SWF inside Oracle Webcenter Space. The SWF file can be added to space as content presenter in following way.
All we need to do is to embed our SWF file inside HTML file. Following is the code that can be used:
<html>
<body>
<object width="500" height="500">
<param name="movie" value="http://localhost:16200/cs/groups/public/documents/document/newswf.swf">
<embed src="http://localhost:16200/cs/groups/public/documents/document/newswf.swf" width="400" height="400">
</embed>
</object>
</body>
</html>
The SWF file in above code is coming from UCM. Once done, the HTML file can be easily added to Webcenter Space as content presenter. The same concept can also be used for some video files.
All we need to do is to embed our SWF file inside HTML file. Following is the code that can be used:
<html>
<body>
<object width="500" height="500">
<param name="movie" value="http://localhost:16200/cs/groups/public/documents/document/newswf.swf">
<embed src="http://localhost:16200/cs/groups/public/documents/document/newswf.swf" width="400" height="400">
</embed>
</object>
</body>
</html>
The SWF file in above code is coming from UCM. Once done, the HTML file can be easily added to Webcenter Space as content presenter. The same concept can also be used for some video files.