Search  
Search Options

ADVANCED IMAGE GALLERY XML

HomeForumsGeneral DiscussionAdvanced Image Gallery XML
Default-profile kulaa
12 posts

Is It possible to have the the text that pops up when rollover on thumbs to be a slightly larger thumbnail image instead of the text description?

Posted 3 months ago
20955 digitalscience
704 posts
Exclusive author Item was featured Author was featured Referred at least one person Sold between 50 000 and 100 000 dollars

Open the FLA , on frame 1 of “gallery_mc”, add this in the load XML function:

thumbLarge = []; 

Then inside “hover” movieclip on frame 2 to make an empty movieclip and give it an instance name “holder”

Then go to library and find movieclip “thumb_mc”, go inside and on the button onRollOver actions add the following actions.

loadMovie(_parent._parent._parent.thumbLarge[this.ID], _parent._parent._parent.hover.holder);

Now all you have to do is add the largeThumb tags in the XML file and make larger thumb images.

That should do the trick, works my side.

Posted 3 months ago
Default-profile kulaa
12 posts

Awesome thank you, appreciate the help/response

Posted 3 months ago
Default-profile kulaa
12 posts

Did I need to add thumbLarge[i] = xmlNode.childNodes[i].childNodes6.firstChild.nodeValue;

Posted 3 months ago
Default-profile kulaa
12 posts

Ah got it, thanks, can the arrows in main image be stagnant and also be linked to previous and next arrow images instead of it being invisible on top left and right sides of main image

.

Posted 3 months ago
Default-profile kulaa
12 posts

How would I change the code of this to go to email without opening a browser window, info_bttn.bttn.onRelease = function() { getURL(url[page], “_blank”;); with still using the xml doc so that I could have different email address for a different image?

Posted 2 months ago
Default-profile new2flash
41 posts

I have a question about this same gallery.

Is there a way to change the background color of the rollover captions (near the thumbnails)?

Posted 2 months ago
Default-profile new2flash
41 posts

Also…

Is there a way for ONLY some of the thumbs to have captions while others don’t?

If I leave it blank, I still get a caption, but it says “undefined”

Posted 2 months ago
Default-profile new2flash
41 posts

still wondering….

Posted 2 months ago
20955 digitalscience
704 posts
Exclusive author Item was featured Author was featured Referred at least one person Sold between 50 000 and 100 000 dollars
Also…

Is there a way for ONLY some of the thumbs to have captions while others don’t?

If I leave it blank, I still get a caption, but it says “undefined”

Go to library and find movieclip “thumb_mc”, inside this movieclip replace the button rollOver Actions with the following:

on (rollOver) {
    if (_parent._parent._parent.page != this.ID) {
        gotoAndPlay('rollOver');
    }
    if (this.txt != 'undefined') {
        _parent._parent._parent.hover.txt.text = this.txt;
        _parent._parent._parent.hover._visible = true;
    }
}
Posted 2 months ago