Advertisement
Advertisement
| 03.06.2008 at 07:19AM PST, ID: 23219777 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: |
var img_xml = new XML()
img_xml.ignoreWhite = true;
img_xml.load("images.xml");
var imgArray = new Array();
img_xml.onLoad = function()
{
var slideTimer:Number = Number(img_xml.firstChild.firstChild.attributes.time);
for (i = 1; i < img_xml.firstChild.childNodes.length; i++)
{
_root.imgArray[i - 1] = img_xml.firstChild.childNodes[i].attributes.path;
}
imgLoader.load( _root.imgArray[0] );
setInterval(nextImage, slideTimer);
}
var curImage = 0;
_root.onEnterFrame = function()
{
if (imgLoader.percentLoaded != 100)
{
Bar._visible = 1
Bar._xscale = imgLoader.percentLoaded
}
else
{
Bar._visible = 0
}
}
function nextImage()
{
_root.curImage++
if (_root.curImage == _root.imgArray.length)
{
_root.curImage = 0;
}
_root.imgLoader.load( _root.imgArray[curImage] );
}
|