Madokan
April 15th, 2003, 07:36 PM
Hi Folks,
Here something to play around - just simple productslider.
XML-Code:
my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.load("produkte.xml");
my_xml.onLoad = function(status) {
if (status) {
obj_xml = this.firstChild.childNodes;
clipGen();
}
};
function clipGen() {
for (var i = 0; i < obj_xml.length; i++) {
this.attachMovie("clip", "clip" + i, i);
this["clip" + i].display_txt.text = i+1;
this["clip" + i]._x = this["clip" + i]._width * i;
this["clip" + i]._y = 0;
this["clip" + i].titel_txt.text = obj_xml[i].attributes.titel;
this["clip" + i].date_txt.text = obj_xml[i].attributes.datum;
this["clip" + i].content_txt.text = obj_xml[i].firstChild;
this["clip" + i].image_mc.loadMovie(obj_xml[i].attributes.bild);
this["clip" + i].url_btn.url = obj_xml[i].attributes.links;
this["clip" + i].url_btn.onRelease = function() {
getURL(this.url,"_blank");
}
}
}
Examplel:
Example Hor. (http://www.flashangel.de/mx/fsslideh.swf)
Example Vert. (http://www.flashangel.de/mx/fsslidev.swf)
Download:
FLA Portal (http://www.flashstar.de/tutlist/)
Be inspired.
yours
Matze K.
Here something to play around - just simple productslider.
XML-Code:
my_xml = new XML();
my_xml.ignoreWhite = true;
my_xml.load("produkte.xml");
my_xml.onLoad = function(status) {
if (status) {
obj_xml = this.firstChild.childNodes;
clipGen();
}
};
function clipGen() {
for (var i = 0; i < obj_xml.length; i++) {
this.attachMovie("clip", "clip" + i, i);
this["clip" + i].display_txt.text = i+1;
this["clip" + i]._x = this["clip" + i]._width * i;
this["clip" + i]._y = 0;
this["clip" + i].titel_txt.text = obj_xml[i].attributes.titel;
this["clip" + i].date_txt.text = obj_xml[i].attributes.datum;
this["clip" + i].content_txt.text = obj_xml[i].firstChild;
this["clip" + i].image_mc.loadMovie(obj_xml[i].attributes.bild);
this["clip" + i].url_btn.url = obj_xml[i].attributes.links;
this["clip" + i].url_btn.onRelease = function() {
getURL(this.url,"_blank");
}
}
}
Examplel:
Example Hor. (http://www.flashangel.de/mx/fsslideh.swf)
Example Vert. (http://www.flashangel.de/mx/fsslidev.swf)
Download:
FLA Portal (http://www.flashstar.de/tutlist/)
Be inspired.
yours
Matze K.