ActiveDen

XML DoubleClick Photo Slide Gallery

  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Author had a Free File of the Month
  • Exclusive Author
  • Sold between 10 000 and 50 000 dollars
  • Bought between 10 and 49 items
  • Referred between 1 and 9 users
Art101 says

Excellent…I like this kind of interactivity…. :)

3 years ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Sold between 1 000 and 5 000 dollars
  • Referred between 1 and 9 users
Bedros says

Good Work… Congrats..!

3 years ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Sold between 1 000 and 5 000 dollars
  • Bought between 1 and 9 items
  • Europe
jsddesign says
Author

Thanks!

Glad do you like it :)

3 years ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 5 000 and 10 000 dollars
  • Bought between 1 and 9 items
  • France
  • Referred between 1 and 9 users
kenergy says

very nice one ! : )

3 years ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 10 000 and 50 000 dollars
  • Bought between 1 and 9 items
  • United States
  • Referred between 10 and 49 users
RJFlash says

Cool gallery!! :)

3 years ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Sold between 10 000 and 50 000 dollars
  • Bought between 1 and 9 items
  • Referred between 10 and 49 users
baklach says

Great file!!!!! Like the idea when pressing next, it falls down in random place, like you through it!!!!!!!!!! :)

3 years ago
  • Has been a member for 2-3 years
MaVRiCk says

Hey—I am new to this site, my first ever post. I liked the gallery & would like to use for my website. Some doubts: If I buy what will be included in the kit & can i have any number of images or there is some limit?

cheers

3 years ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Sold between 1 000 and 5 000 dollars
  • Bought between 1 and 9 items
  • Europe
jsddesign says
Author

Hi,

Thank you for asking cos i forgot to mention that :)

You can put images as much as you want, or should i say, how much space you have. Too much images will fill up the gallery if the slides is too large. In that case you will need to decrease the slide sizes, which also is possible, but you must pay attention to have readable text comments.

Regards

3 years ago
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
BigShooter says
Purchased

Hi there,

Great component. Quick question for you. I will only be using horizontal images for this gallery.

Where would I go in the AS to modify this so that it shows all of the image? They will all be the same size, currently it is cropping them to fit.

Thanks!

3 years ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Sold between 1 000 and 5 000 dollars
  • Bought between 1 and 9 items
  • Europe
jsddesign says
Author

Hi, Yes, this gallery will cropping every image so the image will fit the slide square. I have to look in the files and will let you know soon. Probably, i think that there is no hudge AS modifications, but i have to look first and will let you know asap. Thanks JSD

3 years ago
  • Has been a member for 2-3 years
  • Exclusive Author
  • Sold between 1 000 and 5 000 dollars
  • Bought between 1 and 9 items
  • Europe
jsddesign says
Author

Ok, i have done and test modifications on this gallery for Wide images. You have to follow this steps, made changes just in your Fla file, and that should working.

Description for Gallery where you need to present entire wide images. Important, this changes will only work well for the gallery where the images is wide not portrait.

1. From the Library, open Mc „SlideMenu“ unlock all layers, pick Right Button and move to the right to x: 700px. Open „text_Mc“ and resize this dynamic text with Text tool to approximatively 510-520 px width. Don’t touch the height.

2. Open “PhotoFrame” from the Library, Move white frame (frameBgr) to x=0; y=0. Move and resize black square like this: x=27; y=27; W=500; H=490.

3. Create one square on the scene, size 500×500px and save it as “Mask”. Delete that Mc from the scene. In the library, find that “Mask” mc, right click with mouse, chose “Properties” and check on the “Export from ActionScript”, then press “ok”.

4. Open Main Mc on the Scene, or “PhotoGallery” from the Library. Pick on the “Action” layer, the rest of Modifications is in AS. Replace “createMask” function from line 57 to 67. Instaed this:

function createMask(i) {
mBox[“box”+i].createEmptyMovieClip(“mask”,maskDepth);
mBox[“box”+i].mask.beginFill(16777215,100);
mBox[“box”+i].mask.moveTo(60,50);
mBox[“box”+i].mask.lineTo(540,50);
mBox[“box”+i].mask.lineTo(540,556);
mBox[“box”+i].mask.lineTo(60,556);
mBox[“box”+i].mask.lineTo(60,50);
mBox[“box”+i].mask.endFill();
mBox[“box”+i].inSlide.setMask(mBox[“box”+i].mask);
}

You should put this:

function createMask(i) {
mBox[“box”+i].createEmptyMovieClip(“mask”,maskDepth);
mBox[“box”+i].mask._y = 27;
mBox[“box”+i].mask.attachMovie(“Mask”, “Mask”, 1);
mBox[“box”+i].inSlide.setMask(mBox[“box”+i].mask);
}

5. Change number 80 to 50 on line 69 and line 79:
mBox[“box”+i].preloader._x = 80;
mBox[“box”+i].maskPreloader._x = 80;

6. Change function „createButton“ from line 85 to 97:

Instaed of:

function createButton(i) {
mBox[“box”+i].createEmptyMovieClip(“button”,btnDepth);
mBox[“box”+i].button.beginFill(16777215,0);
mBox[“box”+i].button.moveTo(23,18);
mBox[“box”+i].button.lineTo(578,18);
mBox[“box”+i].button.lineTo(578,692);
mBox[“box”+i].button.lineTo(23,692);
mBox[“box”+i].button.lineTo(23,18);
mBox[“box”+i].button.endFill();
var my_color:Color = new Color(mBox[“box”+i].button);
my_color.setRGB(sceneBgrColor);
mBox[“box”+i].inSlide.setMask(mBox[“box”+i].mask);
}

Put this:

function createButton(i) {
mBox[“box”+i].createEmptyMovieClip(“button”,btnDepth);
mBox[“box”+i].button.attachMovie(“Mask”, “Mask”, 1);
mBox[“box”+i].button.Mask._alpha = 0;
mBox[“box”+i].inSlide.setMask(mBox[“box”+i].mask);
}

7. On the „loadPicture“ function, change the code from line 132 to 143:

Instaed of:

if (Wa mBox[“box”+i].inSlide.inPicture1._width = 483;
mBox[“box”+i].inSlide.inPicture1._height = (483Ha)/Wa;
mBox[“box”+i].inSlide.inPicture1._x = 61;
mBox[“box”+i].inSlide.inPicture1._y = 56-((mBox[“box”+i].inSlide.inPicture1._height-500)/2);
}
if (Wa>=Ha) {
mBox[“box”+i].inSlide.inPicture1._height = 500;
mBox[“box”+i].inSlide.inPicture1._width = (Wa
500)/Ha;
mBox[“box”+i].inSlide.inPicture1._y = 56;
mBox[“box”+i].inSlide.inPicture1._x = 61-((mBox[“box”+i].inSlide.inPicture1._width-483)/2);
}

Put:

mBox[“box”+i].inSlide.inPicture1._height = 500;
mBox[“box”+i].inSlide.inPicture1._width = (Wa*500)/Ha;
mBox[“box”+i].inSlide.inPicture1._y = 27;
mBox[“box”+i].inSlide.inPicture1._x = 27;
mBox[“box”+i].mask.Mask._width = mBox[“box”+i].inSlide.inPicture1._width;
mBox[“box”+i].mask.Mask._x = mBox[“box”+i].inSlide.inPicture1._x;
mBox“box”+i.frameBgr._width = mBox[“box”+i].inSlide.inPicture1._width + 54;
mBox“box”+i.frameBgr._x = 0;
mBox[“box”+i].button._width = mBox“box”+i.frameBgr._width;
mBox[“box”+i].button._height = mBox“box”+i.frameBgr._height;
mBox[“box”+i].button._x = mBox“box”+i.frameBgr._x;
mBox“box”+i._x = 27;
mBox“box”+i.mbRight._x = mBox[“box”+i].inSlide.inPicture1._width – 20;
mBox“box”+i.CloseSlideButt._x = mBox[“box”+i].inSlide.inPicture1._width – 30;
mBox“box”+i.text_Mc._x = (mBox[“box”+i].inSlide.inPicture1._width/2)-(mBox“box”+i.text_Mc._width/2);

8. In the function „addSlideMenu“ instaed of this two lines (159 and 160):

mBox“box”+i._x = 34.5;
mBox“box”+i._y = 338.6;

Put just this:

mBox“box”+i._y = 310;

This changes should give you a gallery for wide images. Dont do this changes on your original Fla file, in case that you made some mistakes :) Regards

3 years ago
Author
jsddesign jsddesign replied

In some places in my last comment there is some strange links:

“box”+i

Replace that with [“box”+i]

3 years ago
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
alipj333 says

Hey JSD ,

This image viewer is smooth man! I am not a Flash Guru though and I just want to make sure of a couple things before I purchase – Can the bg be changed to white? And is the addition/subtraction of images as simple as updating an XML file, or is there some AS involved?

-Thanks man Alipj333

3 years ago
Author
jsddesign jsddesign replied

Hi alipj333

Thanks ! For the background color, if you can open CS3 Flash source file, you can change the background in the Flash. Beside, this gallery can also be enbed as a transparent in your page so you can setup the background color with css which is connected with your page.

Images can be arranged via XML with ease, along with other details about this gallery.

Regards

3 years ago
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
cmodesign says

I am interested in purchasing this XML gallery. Does it work with Adobe CS4 (your ITEM ATTRIBUTES only mentions CS3 )? Also, are the images and descriptions all loaded from the XML ?

3 years ago
Author
jsddesign jsddesign replied

Hi cmodesign,

Yes, and Yes. Im using CS4 but for buyers with older Adobe software source Fla is saved for CS3 . So its can be opened wih CS4 of course.

All images and comments are loaded from XML database.

Regards

3 years ago

by
by
by
by
by