Professional :: Make The Stack Photo Gallery Auto-playable?
Jul 25, 2010I want to make this gallery auto play means ones gallery load than the photos should be change by itself after few seconds.path for gallery [URL]
View 4 RepliesI want to make this gallery auto play means ones gallery load than the photos should be change by itself after few seconds.path for gallery [URL]
View 4 RepliesJust trying to make a flash photo gallery that displays all the image files in a certain directory with the usual photo gallery functionality.
View 1 RepliesI want to create a photo gallery where the photos don't have to be the same size. I need the photo border or container to smoothly resize to accomadate each new image.
View 10 RepliesI am trying to make a photo gallery that is dynamic instead of throwing the pictures in a movie and tweening effect inbetween them. I know, why take the easy route.
What basically I want to happen is that when the movie loads the first image is displayed for 4 seconds then fades out as the next image is fading in. I have 11 pictures that are in a folder called "weddings". The pictures are all named "weddings0.jpg", "weddings1.jpg", "weddings2.jpg",...... "weddings10.jpg". Here is the code for this part, I have tested and it works:
Code:
totalImages = 11;
k=0;
var aWedding = new Array;
[Code].....
I am trying to make a photo gallery that is dynamic instead of throwing the pictures in a movie and tweening effect in between them. I know, why take the easy route. I have something really wierd going on, maybe you can help. What basically I want to happen is that when the movie loads the first image is displayed for 4 seconds then fades out as the next image is fading in. I have 11 pictures that are in a folder called "weddings". The pictures are all named "weddings0.jpg", "weddings1.jpg", "weddings2.jpg",...... "weddings10.jpg".
Here is the code for this part, I have tested and it works:
totalImages = 11;
k=0;
var aWedding = new Array;
//The for statement creates new movieClips with the images loaded and stored within
//stores the movieclips in an array.
[Code] .....
At this point I have loaded all the images into movieclips and stored their references in an array. I have also gotten them all alpha of 0 except the first image, weddings0, which I want to display first. My function to make the images scroll through doesn't work. If I trace what the alpha is as it scrolls though I get wierd numbers like 93.3233432 or 32.323223 which doesn't make sense to me because I am increasing or decreasing the alpha by += 2 or -= 2. I don't know where the functions come. Anyway, here is the code, or what I have I should say, btw
I have the code linked to a button right now to test if it works, I would like it to run automatically on load:
Code:
butt.onRelease = function(){
trace(k + " k");
tempInt = setInterval(fadeInOut, 10, aWedding[k], aWedding[k+1]);
} function fadeInOut(mcPic1, mcPic2){
[Code] .....
How do I make a photo gallery that up dates by itself its contents getting it from a folder and putting then in order? The pictures when clicked should load a swf with information about the tittle.
View 1 RepliesHow do I make a photo gallery that up dates by itself its contents getting it from a folder and putting then in order? The pictures when clicked should load a swf with information about the tittle.
View 1 RepliesI'm looking for a way to setup a slideshow of pictures that I can control with Actionscript. I've come up with something using setInterval, but I'm having problems with that, so I'm looking for an alternative method. I have maybe 5 photos. Starting with the first photo I'd like to have it slowly fade on, when it reaches an alpha of 99 or higher, it will wait a certain amount of seconds and then the next picture will fade in. I'd like to do this automatically through actionscript, don't want to use keyframes or animations.
View 1 RepliesI have a flash site with 10 different tabs/sections with a stage size of 1200 x 1372. The final tab of the site contains a photo gallery, which I would like to have a different stage size and just fit the browser screen as it loads an external SWF which auto fits to the screen. At the moment, it auto fits the stage size meaning the bottom half of the photos don't show. How I can just alter the last page?
View 1 Replieshow can I modify the embedded photo gallery slideshow from Google's Picasa to auto repeat the pictures, i.e. play them over and over again? This is the code Picasa gives me for embedding in a website:
<embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="400" height="267" flashvars="host=picasaweb.google.com&hl=en_US&feat=flashalbum&RGB=0x000000&feed=http%3A%2F
[Code].....
Related to this, are there free tools that take as input a Picasa username or a set of photos and automatically create a thumbnailed gallery, which is embeddable using Flash in any website?
What I want to do is to make a gallery based on the tutorial gallery here (thumbs), but I want the user to be able to choose different galleries from within the movie. I figured that I could make a loop to cycle through the galleries, then nest another loop inside it to cycle through the pics, captions and thumbs. While I wrote, I constantly tested the output with trace commands, but when I tried nesting the loop I lost all output.. I'm pretty new to both Flash and Actionscript, so if theres an obvious solution I havent been able to see it.. This is my temp XML file:
[Code]...
How do I make a random XML auto gallery. The actionscript is for my auto gallery, which loads and changes every 15 seconds. How do I make it so that it loads from the XML file randomly?[code]...
View 2 RepliesDo anyone know how to make a photo gallery with xml and flash 8 like the gallery in the portfolio section of this link.[url]...
View 5 RepliesI've searched the forums as well as other areas of the internet to find a solution to this issue I'm having. I've managed to gather bits and pieces here and there and they have kind of came together to get me further than I expected. I've basically went about my own little way of trying to make a photo gallery using php and flash. So far I've made more progress than I figured I would, but I have ran into a few issues and I fear I may have to start over entirely.
What I've done is pieced together some php code to read the contents of a directory, it then writes them to a php file and assigns them each a variable name and finally assigns the number of photos in the directory to a variable name, it looks like this once the script is ran[code]...
I am using the XML and Flash photogallery that Kirupa has in the tutorials [url]. I was wondering how I can:
a. make a second caption
b. make a caption with a link on it.
i need to make a photo gallery were i can just duplicate the folder"vacation_photos" and then rename it something else and not have to change the path on every freakin photo and button.
View 1 RepliesI want to make a dynamic photo gallery. The layout will be a scrollable bar at the bottom with thumbnails and then when you click one, a big version of the picture in the main window. Pretty simple layout. But! I want it to be dynamic in the sense that follows;
I have a txt file that contains the number of photos in the folder (at the moment, there are 5). Flash reads that number, and inputs that into a for statement, which then gets the filename of each of the 5 files (p0, p1, p2, etc) and slaps a .jpg on the end. Its like this so that i can add files to the folder, change the number in the text file, and be done (no site maintenance required).
Now comes the problem. I want to be able to, within the for statement, load those files AND be able to resize them. What i'm doing now is putting an instance of the gallery itself on the stage (just an empty movie clip), and in the for statement I am adding a "thumb" movie clip into that gallery movie clip, and loading the image into that. Visually:
Gallery_mc
--->thumb_mc
------->loaded image file.
The problem is that I can't resize them. I've tried using the loadercontentinfo stuff, but when i do that, it messes up my for loop somehow. I could always make all of my thumbnail files that size anyways, but I am also hoping to maybe implement my creation here in the future so that I can give it to others who aren't tech savvy and having them be able to use it without any difficulty. Here is the code:
Code:
//Create the URLLOader instance
var myLoader:URLLoader = new URLLoader()
//the data will come as URL-encoded variables
[code]....
I took out the loaderinfo stuff because it didnt work. As it stands, this version actually does sucessfully load the images, but doesnt do anything to resize them.
Like ordinally photo gallery, there is a big picture with some thumbs.
big picture = MC named gWindow
thumbs holder = MC named pics
thumbs = MC named p1, p2, p3...
[code]....
I made a flash website for a non-profit organization and it needs to have a photo gallery inside of it. It needs to have 3 categories with about 20 pictures in each category; the pictures are of different sizes.
I'd like to make a gallery like this one: [URL] but I'm not sure how to do so while also having it be inside the main flash website also.
[URL] how to make a Flash Thumbnail Photo Gallery. I am designing a bigger photo gellery based on this code how do I have the photo gallery to list 2 rows of thumbs 5 accross and 2 rows. This code is the code that designs the thumbnail movie clip.
function thumbnails_fn(k) { thumbnail_mc.createEmptyMovieClip("t"+k, thumbnail_mc.getNextHighestDepth()); tlistener = new Object(); tlistener.onLoadInit = function(target_mc) { target_mc._x = hit_left._x+(target_mc._width+5)*k; target_mc.pictureValue = k; target_mc.onRelease = function() { p = this.pictureValue-1; nextImage(); }; target_mc.onRollOver = function() { this._alpha = 50; thumbNailScroller(); }; target_mc.onRollOut = function() { this._alpha = 100; }; }; image_mcl = new MovieClipLoader(); image_mcl.addListener(tlistener); image_mcl.loadClip(thumbnails[k], "thumbnail_mc.t"+k); }
i download and try to modify a xml photo gallery from kirupa in this pagemake the buttons for "next" "back".... and one button that control the slide show, but i cant find how to activate the slide show and desactivate it.
View 1 Repliesso i wanna make a custom photo gallery for my work, and ive seen some that i like. however, i want to MAKE it myself and not download somebody's program that does it or whatever. i know i have the necessary knowledge to be able to follow a tutorial on it but i dont know how to do it myself, you know? anyways heres one that i like, if anybody knows of a tutorial that i can do this in please let me know. [URL] the important parts are that it needs to be updated with xml and have a scroller at the bottom with buttons, not a scrollbar.
View 3 RepliesWould anyone know why the photo stack flash gallery won't work in Firefox? IE works fine. I'm fairly sure its just a bit of syntax i'm missing, or a compatibility issue. I am using a .swf file which imports images in using an xm l file and then displays them as a stack of photos which can then be rotated and looked through.
[Code]....
How can I make wide outlines to each photo gallery bitmaps in AS3/Flex? Or where could I find a good tutorial?
View 3 RepliesPlease go to [URL] and click on the photo gallery link. Then click on any other link. The photo gallery stays on the page! how I can make it go away when clicking on other links? The actionscript for the photo album is on the last frame in the actions layer.
View 1 RepliesI'm trying to make a photo gallery that loads the pics in as swf's, and was wondering if there was any way for flash to detect the number of files that are in a particular folder on website (also the names of those files).
View 3 RepliesI've made an image gallery and it works great. What I want to do is make the main image a link to a certain part of the site. The first link works great, but then I get[url]...
Basically, I made an invisible button on each main image for the link.[code]...
I'm trying to make a photo gallery that is dynamically controlled via an xml file.
View 11 RepliesI found this really neat photo gallery on flashkit but there is no support or readme included. Hoping one of you actionscript gurus can sort through the AS and how to size this thing.. the AS code does have comments but I am not a coder. I'd like to make the image window smaller and the overall movie smaller. 325x325 or so.
View 10 RepliesI'm trying to get some general info and be pointed in the right direction to make kinda like a photo gallery where they can be dragged, and moved around like several squire images that can overlap one another, and if you click an image that is under another image, it will come upfront..
View 1 Replies