- From: Pablo Fernicola <pablofe@microsoft.com>
- Date: Mon, 8 Jul 2002 11:12:26 -0700
- To: "Timothy Partridge" <tpartrid@mitra.com>, <www-smil@w3.org>
It is the same issue as with adding other HTML content to a page. You
could add the elements to the page dynamically or you could use an
IFrame.
-Pablo
-----Original Message-----
From: Timothy Partridge [mailto:tpartrid@mitra.com]
Sent: Monday, July 08, 2002 7:35 AM
To: www-smil@w3.org
Subject: include external smil file
I have added some very basic smil to an HTML page to make it dynamic. I
want to put that code into a separate file (backgroundColor.smil) and
include it instead of embedding it in my HTML page. Is this possible?
I've looked all over the net and I can't find very much information on
smil used as DHTML. My HTML looks like the following:
<html xmlns:smil="urn:schemas-microsoft-com:time">
<head>
<!-- Set up framework for smil -->
<style>
smil\:* { behavior:url(#default#time2) }
time:* { behavior:url(#default#time2) }
</style>
</head>
<body>
<div><p id="serverStatusTitle" style="background-color:">Server
Status</p></div>
<smil:seq begin="serverStatusTitle.onmouseover">
<smil:animateColor
targetElement="serverStatusTitle"
attributeName="background-color:#4682b4;" attributeType="CSS"
values="#4682b4;#5cacee;" dur="0.5s" autoreverse="true"
/>
</smil:seq>
</body>
</html>
Received on Monday, 8 July 2002 14:12:59 UTC