LOGIN Don't have an account yet?   Register

Forgot password?
 
open in fullscreen
Filter Portfolio Gallery
Demo:     Preview:   Downloads: 275

Last update (4):Wed, May 12th 2010, 00:00

 

$18
 
Search comments:

 
denjoyer

denjoyer

on 27/1/11

 
ash .. it took out my folder marks ... wit Tag characters ....

 
denjoyer

denjoyer

on 27/1/11

 
                

<pages>
   filter.html

<flash>
   <filter_gallery>
      prewiew.swf
      expressInstall.swf
      <images> 
         main1.jpg
         main2.jpg ...
         <thumbs>
         <originals>

<js>
   swfobject.js
<xml>
   portfolio.xml
   gallery.xml
   banner.xml



                
 
I created exactly the same folder structure on my computer and changed the paths properly.

This would be the script tags you should use in the HTML file:
                
<script type="text/javascript" src="../js/swfobject.js"></script>
        <!-- <script type="text/javascript" src="js/swfmacmousewheel.js"></script> -->
		
		<script type="text/javascript">

			// JAVASCRIPT VARS
			// cache buster
			var cacheBuster = "?t=" + Date.parse(new Date());		
			
			// stage dimensions
			// if you define '100%' then the swf will have the browser dimensions
			var stageW = "965"; // 100%
			var stageH = "390"; // 100%

			//var stageW = "100%";
			//var stageH = "100%";
			
			
			// ATTRIBUTES
		    var attributes = {};
		    attributes.id = 'FlabellComponent';
		    attributes.name = attributes.id;
		    
			// PARAMS
			var params = {};
			params.bgcolor = "#ffffff";
			params.wmode = "transparent";

		    /* FLASH VARS */
			var flashvars = {};				
				
			/// if commented / delete these lines, the component will take the stage dimensions defined 
			/// above in "JAVASCRIPT SECTIONS" section or those defined in the settings xml			
			flashvars.componentWidth = stageW;
			flashvars.componentHeight = stageH;
			
			/// path to the content folder(where the xml files, images or video are nested)
			/// if you want to use absolute paths(like "http://domain.com/images/....") then leave it empty("")
			
			flashvars.pathToFiles = "../";
			flashvars.xmlPath = "xml/portfolio.xml";
			flashvars.xmlPathGallery = "xml/gallery.xml";
			flashvars.xmlPathBanner = "xml/banner.xml";
			
			/** EMBED THE SWF**/
			swfobject.embedSWF("../flash/filter_gallery/preview.swf"+cacheBuster, attributes.id, stageW, stageH, "9.0.124", "../flash/filter_gallery/expressInstall.swf", flashvars, params);
			//if(swfmacmousewheel) swfmacmousewheel.registerObject(attributes.id);
			
		</script>

                


I assumed that you'll embed the component in your filter.html file. This is where you'll put this code.

Also, note that every path to every file in our components are "calculated" like this: pathToFiles + xmlPath. For the images the paths will be like this: pathToFiles + pathToTheImage. It's a concatenation between the pathToFiles and the other resource. So you should change the images' paths in the portfolio.xml file, like this:
                
<thumb>flash/filter_gallery/images/main-sklasse.jpg</thumb>

<!-- and -->

<item>
    <thumb>flash/filter_gallery/images/thumbs/sklasse-1.jpg</thumb>
    <image>flash/filter_gallery/images/originals/sklasse-1.jpg</image>
    <link></link>
    <target>_blank</target>
</item>

                


I tried this and it worked. I hope it will on your page too.

 
denjoyer

denjoyer

on 27/1/11

 

so pathToFiles was the key element was the key element in this issue, my mistake.

thank You so much !
 
You're welcome. Enjoy!

 
denjoyer

denjoyer

on 2/2/11

 
hi again,
i'm sorry, but i'm having a new problem with those paths(?),

for example: when i leave the demo folder untouched as it was when downloaded and start the index.html at homePC, everything goes nice and smooth. But when uploaded to server in same folderstructure it shows just "sample1" and "sample 2" with empty black flashboxes with some fla-elements on top-left corner ?
this index.html is in 3rd sublevel from httpdocs.
 
Hi,

The demo will not work on a public website. It was built not to. It works just on your local machine. You'll have to upload the component you downloaded after you bought the product. If you did so. If not, please download using the big button on the right side of the component preview.

Use the preview.swf file you receive in that archive.

 
denjoyer

denjoyer

on 3/2/11

 
okay, now it runs on server.
hope this is my last question ;-)

i moved the files around, now everything else works except images won't load. what'i'm doing is
callin this page from another phpfile: like php?page=filter
(calling php is inside the same folder)

locations:
HOME/pages/filter.php
HOME/xml/portfolio.xml

imagepath is pointed in portfolio.xml:
HOME/flash/filter/images/thumbs/.jpg

paths in filter.php:
flashvars.pathToFiles = "../../";
flashvars.xmlPath = "HOME/xml/portfolio.xml";

...one tip more ?



 
denjoyer

denjoyer

on 3/2/11

 
I got it !
 
Ok, I'm glad you found the solution. If you experience any other issues, please don't hesitate to contact us.
has downloaded icon

 
corneliu.chitanu

Corneliu Chitanu

on 9/2/11

 
Hello guys,

We made an update to this component. It had a little issue with scrolling the caption text in some situations. It's now fixed. Please download the component again and use the new SWF file.
 
Another update is completed.

The text that's showing what filter has each item assigned will now display on multiple lines. You'll just have to adjust the thumbsTextBackHeight property in the gallery.xml file.

So if you have multiple filters assigned to a item and they don't fit under the width of each preview image in the gallery, that issue is now fixed. Just download the new files.

 
pixelfiesta

Yogee B

on 11/3/11

 
Hi, I am trying to edit the demo of the Filter Gallery. While I have kinda able to change most of the stuff. I am confused as to why does it stop interacting the moment I change the name from BMW to Brochures in the portfolio.xml file?

Where am I going wrong?
 
Hi,

Do you mean you just edited this line? :
                
<type title = "Filter by Brand:" titleColor = "0x236FBA" textColor = "0x000000">
		<item color = "0xF5531A" isSelected = "true">BMW</item>

                
In there you'll just define the filter. After you defined it, you'll need to assign that filter to some items in the same portfolio.xml file. So you'll need to rename the BMW in the <b>type</b> xml tag too:
                
<portfolio>
		<project>
			<title>BMW 3 series</title>
			<type>BMW</type>
			<filter>Coupe</filter>

                

The type tag assigns the first filter and the filter tag assigns the second filter.

So what you'll have to do is to rename every other BMW type tags also.
 
pixelfiesta

Yogee B

on 13/3/11

OK, I am thinking of making this purchase (Filter Gallery), however I have a few questions before I go ahead.

I have created a mock-up of the interface I would like to have. Here it is
http://www.pixelfiesta.in/files/03 - works 1.jpg
http://www.pixelfiesta.in/files/03 - works 2.jpg

My questions are:
1) Can I add one more 'show all' check box? (see JPG)
2) Can I change the arrows that are provided?
3) Can I change the fonts used in FLash file? Can I change linespacing, character spacing?
4) Can I change the size overall and also the sizes of each element? eg. Preview pane inside
5) Can I change the tickmark shape, colour, position etc?

Can it be customised to this extend?

I am not a flash pro, so upto what extent can I expect support on this component?

Is there a email ID I can write to?


 
Hi,

I looked on your mock-ups and these would be the answers to your questions:

1) The way this component is built, it doesn't have a "Show All" check box. The flash project would need to be modified a little to add this feature.

2) Yes, you can change them by opening the FLA file and changing the shapes, but I don't recommend it since you don't have great experience using Flash.

3) Yes, this tutorial explains how to change the font:

http://www.flabell.com/blog/668/embedd...

Changing the line spacing, character spacing also involves modifying some text fields in the FLA file.

4)You can change the overall size for the component, but not for every element inside it. For example you can change the size for the images you display, but not for the arrows. Check out the XML files and you'll figure what sizes you can customize.

5) Again, you can do this by changing the flash project, but involves a little flash knowledge.

For support you can send us emails at support@flabell.com.

We can give you support with changing the arrows, changing the fonts, line spacing and character spacing. Also we could assist you, if you want some elements resized.

If you want other changes, our team can help you by doing custom work. If you're interested, send us an email at office@vuzum.com. We'll implement any modification you need.
 
pixelfiesta

Yogee B

on 1/4/11

I have now purchased the component Filter Portfolio Gallery and have mailed you for support!
 
Ok. Thank you. I replied to the email a moment ago.

 
pixelfiesta

Yogee B

on 4/4/11

 
Is there a video tutorial for this component? Or a manual?
 
We're sorry, but, no, at this moment, we don't have a manual for the component or a specific tutorial for it.

However, we tried to name the XML elements as self-explanatory as possible. If you don't know what some property will change, you can change it's value, refresh the webpage that contains the component and see the result. You can always go back to the old value, if you don't like it.

Also, I can explain what some property does, if you can't figure it out.

 
DjIncognito

DjIncognito

on 25/4/11

 
Hello Gents,

This is a great component so I'll start by saying great job and thank you for the filters.

One thing I noticed is if I click on a thumb image, it goes to the image but will no longer scroll. What setting do I look for to insure that if someone clicks on a specific photo, that it will continue to scroll after a few seconds?

Also, this is my first site so I don't know much about best practices. I embeded my components using html, yet I notice that most people mention the swf file. Is one way better than the other, or does it not really matter?

Thanks in advance.
 
Hi,

That's the way the component was built. It will not rotate the images once you click on the thumb.

If you need this behavior to change, please send our team an email at info@vuzum.com. We'd be glad to help you by doing a little custom work.
 
DjIncognito

DjIncognito

on 26/4/11

Really? So if someone decides to view a folder of 50 photos and clicks on a thumb nail, they're stuck on that photo and have to go back to the filter and start again? I'm having a hard time understanding why that would be done on purpose.
 
I don't think this would cause problems when you have more images. It's just a preference we had at the time, to stop the slideshow after the user clicks on a picture.

The slideshow still goes one picture at a time and if you have 50 picture and you want to go faster on the last picture, you'll still have to navigate to it.

We made an update anyway and introduced an option in the banner.xml file:
                
stopSlideshowAfterClick="false"

                

If you set it to "true", the slideshow will stop when the user clicks on a thumbnail.

I hope I understood the problem correctly.
 
DjIncognito

DjIncognito

on 27/4/11

I think you understood it correctly. What I'm looking for is the opposite. So if someone clicks on the thumbnail, it'll pause on the picture, then resume the slideshow. So do I need to download the whole component again for the update? Or do I just add this line to existing banner?
 
You'll have to download the files one more time and use the new preview.swf file. You'll need to copy the property above in your banner.xml file also.

Post a comment


Please login to join the discussions. Don't have an account? Register (it takes 30 seconds)


Try before you buy

Not sure if you need this component?

Download the free preview and customize it for your project before you purchase it.

Or try our demos.

Note: You can test the preview only on your computer.

Similar components for adobe flash

Accordion Banner Rotator

Accordion Banner Rotator

One word description for this highly customizable accordion? Colorful!... read more


Accordion Menu with Images from XML

Accordion Menu with...

This is a highly customizable accordion menu, with support for... read more


Accordion Gallery

Accordion Gallery

This accordion can be customized in size through HTML and XML. The... read more


list more items

General Videos

  • How to buy?
    watch movie
  • Embed a Flash Component in your Flash Project
    watch movie
  • How to embed a Flash Component in the same HTML page twice?
    watch movie
  • How to embed two different Flash Components in the same HTML page?
    watch movie

Our recommendation

Photography Portfolio Template

Photography Portfolio Template

This template is perfect for showcasing your portfolio with style. It... read more


Save money now!

Premium membershipPremium membership
read more

10 Gold Tickets Pack10 Gold Tickets Pack
read more

Showcase

Send us a link to the page you used this product on, and we'll post the link to your site on our blog if you customized it nicely.

Need support?

Support ticketGet a support ticket
read more

Share this

If you enjoyed this product, please consider sharing it via a social network, or leaving a comment. Thanks!