Link to home
Start Free TrialLog in
Avatar of DircoBuddy
DircoBuddy

asked on

SWF and XML banner in Drupal

Good Day i need some help i bought a banner with an xml data file and would like to use it in drupal page.tpl.php.

How do i change the following ?

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>
<script type="text/javascript" src="swfobject.js"></script>
</head>

<body>
<div align="center">
	<div id="flashcontent">
		<script type="text/javascript">
			var so = new SWFObject("banner.swf", "mymovie", "490", "300", "8");
			so.addVariable("xmlPath", "data.xml");// <----You can change the path to the XML file here.
			so.addParam("menu", "false");
			so.write("flashcontent");
		</script>
	</div>
</div>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of RobertPope
RobertPope
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial