I have been looking at creating some interfaces with flash from data held in Drupal. I didn't want to use complex methods such as web services gateways so it occured to me that I could expose my data using XML and views. Flash is pretty good at reading in XML. I used the following code to prove the concept taken from an example an kirupa.com
This Flash action script takes the rss feed for my site and passes it into Flash.
var my_xml = new XML();
my_xml.onLoad = function(success){
if (success){
trace(this);
}
}
my_xml.load("http://www.pauldjohnson.co.uk/rss.xml");
Bookmark/Search this post with: