Next button is not showing up when loading kirupa photogallery into a main movie

Hi, I am using kirupa’s flash gallery (not the xml one) and it works fine when I test it individually in it’s own movie. But when I use [COLOR=blue]loadMovie (‘gallery.swf’, loader);[/COLOR] to load the gallery into a main movie, the next/previous buttons disappear!!! I didn’t change the code much, just the path and the name of files which are needed to be load…My boss and I couldn’t figure it out what’s going on…so I am here to see if there’s any pro can help us out! Any suggestion will be nice, thanks.

Let me know if you need me to uploaded my fla files!

Here’s my code:

[COLOR=blue]stop();[/COLOR]
[COLOR=blue]/[/COLOR]
[COLOR=blue]i wrote this code, but you can use and abuse it however you like.[/COLOR]
[COLOR=blue]the methods are defined in the order which they occur to make it[/COLOR]
[COLOR=blue]easier to understand.[/COLOR]
[COLOR=blue]
/[/COLOR]
[COLOR=blue]// variables ------------------------------------------[/COLOR]
[COLOR=blue]// put the path to your pics here, include the slashes (ie. “pics/”)[/COLOR]
[COLOR=blue]// leave it blank if they’re in the same directory[/COLOR]
[COLOR=blue]this.pathToPics = “lightboxes/”;[/COLOR]
[COLOR=blue]// fill this array with your pics[/COLOR]
[COLOR=blue]this.pArray = [“l1.jpg”, “l2.jpg”, “l3.jpg”, “l4.jpg”, “l5.jpg”, “l6.jpg”, “l7.jpg”, “l8.jpg”];[/COLOR]
[COLOR=blue]this.fadeSpeed = 20;[/COLOR]
[COLOR=blue]this.pIndex = 0;[/COLOR]
[COLOR=blue]// MovieClip methods ----------------------------------[/COLOR]
[COLOR=blue]// d=direction; should 1 or -1 but can be any number[/COLOR]
[COLOR=blue]//loads an image automatically when you run animation[/COLOR]
[COLOR=blue]loadMovie(this.pathToPics+this.pArray[0], _root.photo);[/COLOR]
[COLOR=blue]MovieClip.prototype.changePhoto = function(d) {[/COLOR]
[COLOR=blue]// make sure pIndex falls within pArray.length[/COLOR]
[COLOR=blue]this.pIndex = (this.pIndex+d)%this.pArray.length;[/COLOR]
[COLOR=blue]if (this.pIndex<0) {[/COLOR]
[COLOR=blue]this.pIndex += this.pArray.length;[/COLOR]
[COLOR=blue]}[/COLOR]
[COLOR=blue]this.onEnterFrame = fadeOut;[/COLOR]
[COLOR=blue]};[/COLOR]
[COLOR=blue]MovieClip.prototype.fadeOut = function() {[/COLOR]
[COLOR=blue]if (this.photo._alpha>this.fadeSpeed) {[/COLOR]
[COLOR=blue]this.photo._alpha -= this.fadeSpeed;[/COLOR]
[COLOR=blue]} else {[/COLOR]
[COLOR=blue]this.loadPhoto();[/COLOR]
[COLOR=blue]}[/COLOR]
[COLOR=blue]};[/COLOR]
[COLOR=blue]MovieClip.prototype.loadPhoto = function() {[/COLOR]
[COLOR=blue]// specify the movieclip to load images into[/COLOR]
[COLOR=blue]var p = _root.photo;[/COLOR]
[COLOR=blue]//------------------------------------------[/COLOR]
[COLOR=blue]p._alpha = 0;[/COLOR]
[COLOR=blue]p.loadMovie(this.pathToPics+this.pArray[this.pIndex]);[/COLOR]
[COLOR=blue]this.onEnterFrame = loadMeter;[/COLOR]
[COLOR=blue]};[/COLOR]
[COLOR=blue]MovieClip.prototype.loadMeter = function() {[/COLOR]
[COLOR=blue]var i, l, t;[/COLOR]
[COLOR=blue]l = this.photo.getBytesLoaded();[/COLOR]
[COLOR=blue]t = this.photo.getBytesTotal();[/COLOR]
[COLOR=blue]if (t>0 && t == l) {[/COLOR]
[COLOR=blue]this.onEnterFrame = fadeIn;[/COLOR]
[COLOR=blue]} else {[/COLOR]
[COLOR=blue]trace(l/t);[/COLOR]
[COLOR=blue]}[/COLOR]
[COLOR=blue]};[/COLOR]
[COLOR=blue]MovieClip.prototype.fadeIn = function() {[/COLOR]
[COLOR=blue]if (this.photo._alpha<100-this.fadeSpeed) {[/COLOR]
[COLOR=blue]this.photo._alpha += this.fadeSpeed;[/COLOR]
[COLOR=blue]} else {[/COLOR]
[COLOR=blue]this.photo._alpha = 100;[/COLOR]
[COLOR=blue]this.onEnterFrame = null;[/COLOR]
[COLOR=blue]}[/COLOR]
[COLOR=blue]};[/COLOR]
[COLOR=blue]// Actions -----------------------------------------[/COLOR]
[COLOR=blue]// these aren’t necessary, just an example implementation[/COLOR]
[COLOR=blue]this.onKeyDown = function() {[/COLOR]
[COLOR=blue]if (Key.getCode() == Key.LEFT) {[/COLOR]
[COLOR=blue]this.changePhoto(-1);[/COLOR]
[COLOR=blue]} else if (Key.getCode() == Key.RIGHT) {[/COLOR]
[COLOR=blue]this.changePhoto(1);[/COLOR]
[COLOR=blue]}[/COLOR]
[COLOR=blue]};[/COLOR]
[COLOR=blue]Key.addListener(this);[/COLOR]