| | |
|
|
|
Re: Timelines - What's going wrong? |
| message from Murray *TMM* on 15 Jul 2004 |
Show me your code for the body tag, please.
|
| Kezele replied to Murray *TMM* on 16 Jul 2004 |
Hi Murray,
<body>
<div id="Layer1" style="position:absolute; width:300px; height:200px;
z-index:1; left: 250px; top: 280px;"><img
src="http://localhost/%7Eleeevans/IPB%20Solutions/nylogo.gif" width="500"
height="169" onload="MM_timelinePlay('Timeline1')"></div>
</body>
Cheers.
Lee.
|
| Murray *TMM* replied to Kezele on 16 Jul 2004 |
The problem is that you haven't triggered the timeline properly. Change
your code as follows -
Change this -
<body>
<div id="Layer1" style="position:absolute; width:300px; height:200px;
z-index:1; left: 250px; top: 280px;"><img
src="http://localhost/%7Eleeevans/IPB%20Solutions/nylogo.gif" width="500"
height="169" onload="MM_timelinePlay('Timeline1')"></div>
</body>
to this -
<body onLoad="MM_timelinePlay('Timeline1')">
<div id="Layer1" style="position:absolute; width:300px; height:200px;
z-index:1; left: 250px; top: 280px;"><img
src="http://localhost/%7Eleeevans/IPB%20Solutions/nylogo.gif" width="500"
height="169"></div>
</body>
and see what happens.
|
|
Archived message: Re: Timelines - What's going wrong? (Macromedia Dreamweaver)