Hello guys
Can you please help me find out the xml code for this actionScript as preview with categories
function loadPhotoXML(filename, filename2)
{
PhotoXML.ignoreWhite = true;
PhotoXML.load(filename);
_root.loadVariables(filename2);
PhotoXML.onLoad = function (success)
{
if (success)
{
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
preload.onLoadStart = function (targetMC)
{
targetMC._parent.loadbar_mc._visible = true;
};
preload.onLoadProgress = function (targetMC, lBytes, tBytes)
{
targetMC._parent.loadbar_mc.bar._width = lBytes / tBytes * 100;
targetMC._parent.loadbar_mc.pText.text = Math.round(lBytes / tBytes * 100) + " %";
};
preload.onLoadComplete = function (targetMC)
{
targetMC._parent.loadbar_mc._visible = false;
};
my_mc.loadClip("photo/" + targetMC.firstChild.childNodes[0].childNodes[0].attributes.jpegURL, lBytes.thbnails_mc.pic1.img_mc);
my_mc.loadClip("photo/" + targetMC.firstChild.childNodes[1].childNodes[0].attributes.jpegURL, lBytes.thbnails_mc.pic2.img_mc);
my_mc.loadClip("photo/" + targetMC.firstChild.childNodes[2].childNodes[0].attributes.jpegURL, lBytes.thbnails_mc.pic3.img_mc);
my_mc.loadClip("photo/" + targetMC.firstChild.childNodes[3].childNodes[0].attributes.jpegURL, lBytes.thbnails_mc.pic4.img_mc);
lBytes.thbnails_mc.title1.text = targetMC.firstChild.childNodes[0].attributes.name;
lBytes.thbnails_mc.title2.text = targetMC.firstChild.childNodes[1].attributes.name;
lBytes.thbnails_mc.title3.text = targetMC.firstChild.childNodes[2].attributes.name;
lBytes.thbnails_mc.title4.text = targetMC.firstChild.childNodes[3].attributes.name;
lBytes.thbnails_mc.pic1.img_mc._xscale = 45;
lBytes.thbnails_mc.pic1.img_mc._yscale = 40;
lBytes.thbnails_mc.pic2.img_mc._xscale = 45;
lBytes.thbnails_mc.pic2.img_mc._yscale = 40;
lBytes.thbnails_mc.pic3.img_mc._xscale = 45;
lBytes.thbnails_mc.pic3.img_mc._yscale = 40;
lBytes.thbnails_mc.pic4.img_mc._xscale = 45;
lBytes.thbnails_mc.pic4.img_mc._yscale = 40;
} // end if
};
} // End of the function
stop();
_root.bg_mc.loadMovie("pic01.jpg");
var PhotoXML = new XML();
var PhotoNumber;
var TotalPhotos;
var RootNode;
photox._global;
galleryLength._global;
catnum._global;
var speed = 10;
loadPhotoXML("photo.xml", "content.txt");
this.thbnails_mc.btn1.onRelease = function ()
{
tellTarget("/")
{
catnum = 0;
gotoAndPlay(2);
} // End of TellTarget
};
this.thbnails_mc.btn2.onRelease = function ()
{
tellTarget("/")
{
catnum = 1;
gotoAndPlay(2);
} // End of TellTarget
};
this.thbnails_mc.btn3.onRelease = function ()
{
tellTarget("/")
{
catnum = 2;
gotoAndPlay(2);
} // End of TellTarget
};
this.thbnails_mc.btn4.onRelease = function ()
{
tellTarget("/")
{
catnum = 3;
gotoAndPlay(2);
} // End of TellTarget
};
and here is the code for the preview
function loadPhotoXML(filename)
{
PhotoXML.ignoreWhite = true;
PhotoXML.load(filename);
PhotoXML.onLoad = function (success)
{
if (success)
{
PhotoNumber = 0;
var _l3 = this.firstChild.childNodes[catnum].childNodes;
var _l7 = new Array();
var _l6 = new Array();
var _l5 = new Array();
var _l2 = 0;
while (_l2 < _l3.length)
{
_l5.push({src: _l3[_l2].attributes.jpegURL});
_l6.push(this.firstChild.childNodes[catnum].childNodes[_l2].firstChild.nodeValue);
_l7.push({src: _l3[_l2].attributes.description});
_l2++;
} // end while
displayGallery(_l5, _l6, _l7);
} // end if
};
} // End of the function
function displayGallery(gallery_array, caption_array, desc_array)
{
galleryLength = gallery_array.length;
PageTotal = galleryLength;
photox = 0;
var _l2 = 0;
while (_l2 < galleryLength)
{
var _l4 = _root.empty_mc.placeh2.duplicateMovieClip("image" + _l2 + "_mc", _l2, {_x: 290 * _l2, _y: 0});
var _l3 = _root.maintext_mc.empty_content.duplicateMovieClip("clip-" + _l2, _l2, {_x: 330 * _l2, _y: 0});
_l3.caption_txt.text = caption_array[_l2];
_l3.desc_txt.text = desc_array[_l2].src;
my_mc.loadClip("photo/" + gallery_array[_l2].src, _l4.pic_big);
_l2++;
} // end while
my_mc = new MovieClipLoader();
preload = new Object();
my_mc.addListener(preload);
preload.onLoadStart = function (targetMC)
{
targetMC._parent.loadbar_mc._visible = true;
};
preload.onLoadProgress = function (targetMC, lBytes, tBytes)
{
targetMC._parent.loadbar_mc.bar._width = lBytes / tBytes * 100;
targetMC._parent.loadbar_mc.pText.text = Math.round(lBytes / tBytes * 100) + " %";
};
preload.onLoadComplete = function (targetMC)
{
targetMC._parent.loadbar_mc._visible = false;
};
} // End of the function
function SlideMenu()
{
this._x = this._x + (newX - this._x) / 2;
if (this._x == 20)
{
_root.Previous_btn._visible = false;
} // end if
} // End of the function
function Slidecontent()
{
this._x = this._x + (contentX - this._x) / 2;
} // End of the function
stop();
var PhotoXML = new XML();
var PhotoNumber;
var TotalPhotos;
var RootNode;
photox._global;
galleryLength._global;
var speed = 10;
loadPhotoXML("photo.xml");
var mcLoader_mcl = new MovieClipLoader();
var mclListener = new Object();
mclListener.onLoadStart = function ()
{
};
_root.empty_mc.onEnterFrame = SlideMenu;
_root.maintext_mc.onEnterFrame = Slidecontent;
newX = 20;
contentX = 370;
newY = 0;
CounterDisplay = 1;
CounterNumber = 0;
if (CounterNumber == 0)
{
_root.Previous_btn._visible = false;
}
else
{
_root.Previous_btn._visible = true;
} // end if
this.Next_btn.onPress = function ()
{
CounterNumber = CounterDisplay;
trace(CounterNumber);
if (CounterNumber == 0)
{
_root.Previous_btn._visible = false;
}
else if (CounterNumber == PageTotal)
{
_root.Previous_btn._visible = false;
}
else if (CounterNumber > 0)
{
_root.Previous_btn._visible = true;
} // end if
XNumber = 20 - 290 * CounterNumber;
XContent = 370 - 330 * CounterNumber;
if (CounterNumber > PageTotal - 1)
{
CounterNumber = 0;
XNumber = 20;
YNumber = 20;
XContent = 370;
} // end if
CounterDisplay = CounterNumber + 1;
_root.caption_txt = caption_array[CounterNumber + 1];
if (XNumber > 9)
{
XNumber = 20;
XContent = 370;
} // end if
newX = XNumber;
contentX = XContent;
};
this.Previous_btn.onPress = function ()
{
CounterNumber = CounterDisplay;
if (CounterNumber == 2)
{
_root.Previous_btn._visible = false;
} // end if
XNumber = -290 * CounterNumber + 290;
XContent = -330 * CounterNumber + 370;
if (CounterNumber == 1)
{
CounterNumber = PageTotal - 1;
XNumber = 20;
XContent = 370;
YNumber = 9;
} // end if
if (CounterDisplay != 1)
{
CounterDisplay = CounterNumber - 1;
} // end if
if (XNumber < 0)
{
XNumber = -290 * (CounterNumber - 1) + 310;
XContent = -330 * (CounterNumber - 2) + 370;
} // end if
newX = XNumber;
contentX = XContent;
};
PLEASE