Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

3D Falsh Tag Cloud in Apex?

705103Nov 24 2009 — edited Nov 24 2009
Hi experts,

I would like to implement a 3D Tag cloud in Apex. Here is the Output http://halotemplates.s3.amazonaws.com/wp-cumulus-example/tagcloud.swf .
Here it can be downloaded : http://wordpress.org/extend/plugins/wp-cumulus/download/

This cloud uses 3 files:

swfobject.js -> the js to render
tagloud .swf -> the animation
tagloud.xml -> the text format

And the HTML file should look like this
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>WP-Cumulus example</title>
	<meta http-equiv="Content-Type" content="text/html" />
	<!-- SWFObject embed by Geoff Stearns geoff@deconcept.com http://blog.deconcept.com/swfobject/ -->
	<script type="text/javascript" src="swfobject.js"></script>
	<style type="text/css">
		body { background-color: #eee; padding: 20px; } 
	</style>
</head>

<body>

	<div id="flashcontent">This will be shown to users with no Flash or Javascript.</div>

	<script type="text/javascript">
		var so = new SWFObject("tagcloud.swf", "tagcloud", "600", "400", "7", "#ffffff");
		// uncomment next line to enable transparency
		so.addParam("wmode", "transparent");
		so.addVariable("tcolor", "0x333333");
		so.addVariable("tcolor2", "0x009900");
		so.addVariable("hicolor", "0x000000");
		so.addVariable("tspeed", "100");
		so.addVariable("distr", "true");
		so.addVariable("xmlpath", "tagcloud.xml");
		so.write("flashcontent");
	</script>

</body>
I have tried to Import these files in the Shared Components -> Cascade Style Sheets and give the Path of the files to *#WORKSPACE_IMAGES#* but this doesnt help at all..



Anybody got an ideea?



Kind regards,
Alex
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 22 2009
Added on Nov 24 2009
7 comments
453 views