I'd like to develop a timeline such that each band represents a different 
actor, with its own set of events -- the idea being that instead of a band 
representing a different time scale, it represents a different actor in the 
same time scale.

Perhaps there are multiple ways to accomplish this, but one thought I had was 
to create multiple timelines, then load each with different data sources -- 
like this in the OnLoad event:

  tl = Timeline.create(document.getElementById("my-timeline"), bandInfos);
  tl.loadXML("example2.xml", function(xml, url) { eventSource.loadXML(xml, 
url); });
  
  tl2 = Timeline.create(document.getElementById("my-timeline2"), bandInfos);
  tl2.loadXML("example1.xml", function(xml, url) { eventSource.loadXML(xml, 
url); });

This doesn't work -- both divs get a timeline, but only the second gets loaded. 

Then I thought perhaps I could load different data into each band - but I'm not 
seeing a way to accomplish that.

Anyone have any thoughts?

thanks a lot - pretty cool timeline!

Fred Rowley - Seattle




       
____________________________________________________________________________________Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/
_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to