ActiveDen

Gallery FLASH V7 - 3d PaperVision

  • Has been a member for 4-5 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 1 and 9 items
  • Europe
  • Referred between 50 and 99 users
flashmaniac says
Author

@mariovfx
Already got a message from you.

3 years ago
  • Has been a member for 3-4 years
  • Exclusive Author
  • Bought between 100 and 499 items
  • Norway
Flashdesigner-81 says

Hello

Can I add PNG files to this, and have transparent background?

Is it also possible to remove the title textfield from the thumbs, but keep the textfield for the big picture?

3 years ago
  • Has been a member for 4-5 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 100 000 and 250 000 dollars
  • Elite Author
  • Bought between 1 and 9 items
  • Europe
  • Referred between 50 and 99 users
flashmaniac says
Author

hi Flashdesigner-81

Yes, of course, you can use png with transparent background.
You can also disable the title description of the thumb while keeping a large picture.

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

Can I make the slideshow auto play? With photos advancing at set intervals?

3 years ago
Author
flashmaniac flashmaniac replied

In this version you can not but you can customize it. Send me an e-mail.

3 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
mlovascio says
Purchased

How can I make the big image display at a custom (bigger) size?

3 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
mlovascio says
Purchased

I figured out previous question. Another question tho: how do I move the close big image button (the big X)?

3 years ago
Author
flashmaniac flashmaniac replied

gallery_v7.fla, layer bigImage and function endIntro

3 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
mlovascio says
Purchased

Thanks for the answer…I found it but since I have no flash programming experience I am lost. I would like to move it above the image in the same corner…right now it is to the right of the image.

3 years ago
Author
flashmaniac flashmaniac replied
buttonClose.x=containerLoader.x+containerLoader.width/2+15
buttonClose.y=containerLoader.y-containerLoader.height/2-5

Change the numbers 15 and 5 for other values.
3 years ago
  • Has been a member for 2-3 years
BionicDroid says

Hy Flashmaniac and community, how i can to put images like this at this url http://www2.oif.pt/flashmaniac/ On layer galleryThumb and line 219 ////refresh//// i see some parameters like x position but my big problem is i can’t put all images side by side with a litle increase x position after one image and so on Thanks in advanced for any help. http://www2.oif.pt/flashmaniac/flashPanorama_And_flashGallV73D_Preview.jpg

3 years ago
Author
flashmaniac flashmaniac replied

You bought it ?

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

Hi, How can i make the big image close if clicked anywhere on the big image or outside the big image? Thank you

2 years ago
Author
flashmaniac flashmaniac replied

This requires custom coding. Send me an e-mail.

2 years ago
Purchased
Default-user retolaser replied

Ok i will send you the file. Where can i find your email ?

2 years ago
Author
flashmaniac flashmaniac replied

Send me a private message using the website activeden.net

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

Omg ! I’ve just tested this on IE8 before sending an implementation to a client and it doesn’t work. It shows a blank page… This makes it totally unusable for me… Is there a fix ? By the way, it seems your example uses swfobject v.1 when there is today a v.2. I guess that could be the source of the problem. Thank you,

2 years ago
Author
flashmaniac flashmaniac replied

I checked works (IE 8.0,Ii have PC). It’s not the fault of SWFObject.

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

Take back that last comment. Flash was not installed on my IE8 and i was not using express install…

2 years ago
Author
flashmaniac flashmaniac replied

Ok:)

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
inventive says
Purchased

Hello, just bought this cool xml gallery. i have just one question, i have images with different sizes, so is it possibile to proportion the width of the thumb by its height? Cause they stretch and it isn’t a nice effect

Thanks Francesco

2 years ago
Author
flashmaniac flashmaniac replied

All the thumb must be the same size.

2 years ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
inventive says
Purchased

Ok… i adjusted it my way… for those who are extracting images from a db and loading dinamically into the xml.. here is my solution:

into the FLA add: var base=list[i].@base var altezza=list[i].@altezza thumbWidth = base; thumbHeight = altezza;

after: var url_image=list[i].@smallImage; in the thumbs actionscript

here is a php function to get the dimension of the images without downloading them:

// Retrieve JPEG width and height without downloading/reading entire image. function dimensioni_immagine($img_loc) { $handle = fopen($img_loc, "rb") or die("Invalid file stream."); $new_block = NULL; if(!feof($handle)) { $new_block = fread($handle, 32); $i = 0; if($new_block[$i]=="\xFF" && $new_block[$i+1]=="\xD8" && $new_block[$i+2]=="\xFF" && $new_block[$i+3]=="\xE0") { $i += 4; if($new_block[$i+2]=="\x4A" && $new_block[$i+3]=="\x46" && $new_block[$i+4]=="\x49" && $new_block[$i+5]=="\x46" && $new_block[$i+6]=="\x00") { // Read block size and skip ahead to begin cycling through blocks in search of SOF marker $block_size = unpack("H*", $new_block[$i] . $new_block[$i+1]); $block_size = hexdec($block_size[1]); while(!feof($handle)) { $i += $block_size; $new_block .= fread($handle, $block_size); if($new_block[$i]=="\xFF") { // New block detected, check for SOF marker $sof_marker = array("\xC0", "\xC1", "\xC2", "\xC3", "\xC5", "\xC6", "\xC7", "\xC8", "\xC9", "\xCA", "\xCB", "\xCD", "\xCE", "\xCF"); if(in_array($new_block[$i+1], $sof_marker)) { // SOF marker detected. Width and height information is contained in bytes 4-7 after this byte. $size_data = $new_block[$i+2] . $new_block[$i+3] . $new_block[$i+4] . $new_block[$i+5] . $new_block[$i+6] . $new_block[$i+7] . $new_block[$i+8]; $unpacked = unpack("H*", $size_data); $unpacked = $unpacked[1]; $height = hexdec($unpacked[6] . $unpacked[7] . $unpacked[8] . $unpacked[9]); $width = hexdec($unpacked[10] . $unpacked[11] . $unpacked[12] . $unpacked[13]); return array($width, $height); } else { // Skip block marker and read block size $i += 2; $block_size = unpack("H*", $new_block[$i] . $new_block[$i+1]); $block_size = hexdec($block_size[1]); } } else { return FALSE; } } } } } return FALSE; }

into the xml made with php put into the tag “ <? $dimension = dimensioni_immagine($server_path/immagini/'.$miniatura); ///now we proportionate $height_max = 250;//we define max height $proportion = $dimension[1]/250; $width = $dimension[0]/$proportion; echo ' <item title="'.$title.'" smallImage="immagini/'.$thumb.'" bigImage="immagini/'.$img.'" base="'.$width.'" altezza="'.$height_max.'"> <![CDATA['.$description.']]> </item> '; ?>

hope it will be useful for somebody like me

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
wcp says
Purchased

Hi there!

First, thanks for this awesome gallery :)

I wanted to know if there is a way to add a progressive alpha value to all thumbnail images behind the current image?? So basically I want to create the effect that the images are fading in from the background.

Any assistance with this is greatly appreciated!!

Thanks and keep up the great work! ;)

- j

2 years ago
Author
flashmaniac flashmaniac replied

To this effect as here:
http://activeden.net/item/horizontall-scroller-v1/41293
This requires a custom coding but I do it for you.
Send a private message to the service activeden.net

2 years ago
Purchased
wcp wcp replied

Thanks again! I sent you a private message earlier.

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
wcp says
Purchased

Hi there,

There was a problem with my email so I just sent you another message.

Thanks!

2 years ago
Author
flashmaniac flashmaniac replied

I got your e-mail. In the wekend is not working. Wait for an answer today.

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

Hi there, I just bought your gallery and I was wondering if there is a way to change the direction of the gallery I mean at the moment they are coming from right to left I would like them to come from left to right. Also is there a way of change on click on the image to go to an url? Thanks

2 years ago
Author
flashmaniac flashmaniac replied

This requires custom coding. Send me an e-mail from activeden.net.

2 years ago
  • Has been a member for 1-2 years
  • Bought between 10 and 49 items
andim09 says
Purchased

Hello, nice project. I was wondering how can I change the direction of movement. I need pictures to go from left to right. Can you give me some hints where to look and what to change.

Thaks a lot.

2 years ago
Author
flashmaniac flashmaniac replied

This requires custom coding.
Send me an email from activeden.net.

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

Problem with Pathsettings

I am quite new to these flash-apps/-gadgets and don’t really find the solution for my problem. I’ve bought this app and I’m quite happy with the look and feeling which you brought in to it! Nice work indeed!

The Problem I am fighting with is the following:

Basically i call the flash-gallery on the site which is in the root directory. the app and all the files are in a folder two levels deeper: newmedia/plugin2/[place of the gallery] By now I’ve tried neraly any pathsetting and still don’t look through, then the app doesn’t turn up in the browser. There are no javascript errors and even if i try to call it from a blank site it doesn’t run.

This here works The only way i can get this app running is calling it from it’s root: Calling a html-file (i.e. flashtest.html) which is right in the directory: “newmedia/plugin2/”

Can anyone help me out? I need to know the basic settings or if there is anything to change (where I have to apply the changes in the code):

js-params for calling up the flash: var so = new SWFObject("newmedia/plugin2/gallery_v7.swf", "gallery_v7", "443", "320", "0", "#FFFFFF",true); so.addParam("scale","noScale"); so.addParam("menu","true"); so.addParam("FlashVars","url_date=newmedia/plugin2/xml/image.xml"); so.addParam("align","top"); so.addParam("salign","left"); so.addParam("allowfullscreen","false"); so.addParam("allowscriptaccess","always"); so.write("flashcontent");

1) swf object: newmedia/plugin2/gallery_v7.swf (right?/wrong?) 2) swf FlashVars: url_date=newmedia/plugin2/xml/image.xml (right?/wrong?) 3) css-path in xml? do I have to change anything?

thank you for your reply!

2 years ago
Author
flashmaniac flashmaniac replied

And as you have in the xml file with image ?
Path to the images must be given the html file in which it is embedded swf.

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

Very nice! Thanxs alot! Path to the Images was wrong! Even if i’ve tried several ways i should have cleared teh cache of my browser! that’s why it didn’t really show up!

Thanx alot!

2 years ago
Author
flashmaniac flashmaniac replied

Do not forget to add my 5 stars :)

2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
sectiongraphix says
Purchased

Is possible to be done autoplay?

1 year ago
Author
flashmaniac flashmaniac replied

Can. But this requires custom coding. Send me an email.

1 year ago
by
by
by
by
by