AS Opacity In Photo Gallery
Hey people.
I have a photo gallery with a corresponding set of buttons for each image along with a forward and back button. Now I currently have an animation per image that will fade in and out. I would like to get rid of the animation all together and just have the opacity fade in/out based in AS. Is the fade out feesible with AS?
stop(); function next(mc){ if(currentMC!=null && currentMC!=mc){ currentMC.gotoAndPlay('out'); } if(currentMC != mc){ currentMC = mc; currentMC.gotoAndPlay('in'); } } 1.onPress=function(){ next(mc01) } 2.onPress=function(){ next(mc02) } 3.onPress=function(){ next(mc03) } 4.onPress=function(){ next(mc04) } 5.onPress=function(){ next(mc05) } 6.onPress=function(){ next(mc06) } 7.onPress=function(){ next(mc07) } 8.onPress=function(){ next(mc08) } 9.onPress=function(){ next(mc09) } 10.onPress=function(){ next(mc10) } 11.onPress=function(){ next(mc11) } 12.onPress=function(){ next(mc12) } 13.onPress=function(){ next(mc13) } 14.onPress=function(){ next(mc14) } 15.onPress=function(){ next(mc15) } //egnor this below bit it just so it showed the name number of the mc. for(i=1;i<7;i++){ this["mc"+i].dynamictextboxinMc=["Section_"+i]; }
that is my code thus far... Any help would greatly be apprecited.
M
KirupaForum > Flash > ActionScript 1.0/2.0
Posted on: 03-13-2005, 09:42 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
AS Opacity In Photo Gallery
Hey people.
I have a photo gallery with a corresponding set of buttons for each image along with a forward and back button. Now I currently have an animation per image that will fade in and out. I would like to get rid of the animation all together and just have the opacity fade in/out based in AS. Is the fade out feesible with AS?
stop();
function next(mc){
if(currentMC!=null && currentMC!=mc){
currentMC.gotoAndPlay('out');
}
if(currentMC != mc){
currentMC = mc;
currentMC.gotoAndPlay('in');
}
}
1.onPress=function(){
next(mc01)
}
2.onPress=function(){
next(mc02)
}
3.onPress=function(){
next(mc03)
}
4.onPress=function(){
next(mc04)
}
5.onPress=function(){
next(mc05)
}
6.onPress=function(){
next(mc06)
}
7.onPress=function(){
next(mc07)
}
8.onPress=function(){
next(mc08)
}
9.onPress=function(){
next(mc09)
}
10.onPress=function(){
next(mc10)
}
11.onPress=function(){
next(mc11)
}
12.onPress=function(){
next(mc12)
}
13.onPress=function(){
next(mc13)
}
14.onPress=function(){
next(mc14)
}
15.onPress=function(){
next(mc15)
}
//egnor this below bit it just so it showed the name number of the mc.
for(i=1;i<7;i++){
this["mc"+i].dynamictextboxinMc=["Section_"+i];
}
that is my code thus far... Any help would greatly be apprecited.
M
Kirupa - Create A Photo Gallery, How Could I Put A Caption For Each Photo?
Hi all, im new here i stumbled upon the photo gallery page when looking at how to create one for my website, thanks to sbeener for the code! :-). It works perfectly however how could i change/add to the code so that for a specific photo a certain caption appears which changes for each different photo?
Any ideas will be greatly appreciated.
cheers, alex350r
Photo Gallery Tutorial Turned Into Photo Carousel
i've taken the tutorial on this site on how to create an flash photo gallery that loads the content from an xml file. i'd like to alter the output of this fine tutorial and would appreciate any help in doing so.
i would like to create gallery, but instead of only showing one picture at a time, i would like to have a carousel effect where more than one picture is shown at a time, and the buttons control the turn of the carousel. i'm thinking in order to do this i'll need to have the as create a movie clip for each picture (maybe during the for loop). each mc instance would have to have a unique name, and then the buttons could play with the properties of each created mc instance.
here's the code from the tutorial on this. any help would be much appreciated....
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
image = [];
description = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
description[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
}
firstImage();
} else {
content = "file not loaded!";
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("images.xml");
/////////////////////////////////////
listen = new Object();
listen.onKeyDown = function() {
if (Key.getCode() == Key.LEFT) {
prevImage();
} else if (Key.getCode() == Key.RIGHT) {
nextImage();
}
};
Key.addListener(listen);
previous_btn.onRelease = function() {
prevImage();
};
next_btn.onRelease = function() {
nextImage();
};
/////////////////////////////////////
p = 0;
this.onEnterFrame = function() {
filesize = picture.getBytesTotal();
loaded = picture.getBytesLoaded();
preloader._visible = true;
if (loaded != filesize) {
preloader.preload_bar._xscale = 100*loaded/filesize;
} else {
preloader._visible = false;
if (picture._alpha<100) {
picture._alpha += 10;
}
}
};
function nextImage() {
if (p<(total-1)) {
p++;
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}
}
function prevImage() {
if (p>0) {
p--;
picture._alpha = 0;
picture.loadMovie(image[p], 1);
desc_txt.text = description[p];
picture_num();
}
}
function firstImage() {
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[0], 1);
desc_txt.text = description[0];
picture_num();
}
}
function picture_num() {
current_pos = p+1;
pos_txt.text = current_pos+" / "+total;
}
Photo Gallery Help - Increase Height Of Main Photo
I have downloaded and walked through the steps in creating the Photo Gallery and have it working properly for my Horizontal shots. However, I am having trouble with displaying my Vertical shots (Height-300 x Width-200). How can I extend the flash in height to display my vertical pics properly?
Also, is there any cody that I can enter between the <Caption> </Caption> that would eliminate any caption being displayed? If it is left blank, it auto inserts undefined.
Thanks!
How To Create A Photo Gallery Of Hundreds Of Photo?
I saw the tut for the creating of photo gallery. Is it possible to do a photo gallery like this one (http://www.kriztal.com/flash.html) with hundreds of them? Do i have to key in the Action dialog all the photos' name in it? Is there another method of doing it with the effect of the web site i gave?Pls give some guidance and advice.
Photo Gallery - Only Loading Every Other Photo [urgent]
I've made a photo gallery from the MX tutoial, modifying it a bit for my needs. When I was using local images they would load fine and every one of them would display. I altered the XML to load images using URLS and now only every other displays (I've checked the urls are correct) - though because of the sequence I can see every image.
There are 7 images and my prev/next buttons loop, so the sequence I get is...
1,3,5,7,2,4,6
Any ideas?
Kirupa Photo Gallery - How To Load 2 Instead Of 1 Photo?
Hi!
How are ya?
I found the tutorial by Kirupa --> http://www.kirupa.com/developer/mx2004/xml_flash_photogallery.htm
Followed the tutorial and everything works great.
However I'm looking for a solution to load 2 instead of 1 photo at a time.
current situation:
[photo 1] *next button* [photo 2] *next button* [photo 3] .. etc!
wanted situation:
[photo 1][photo 2] *next button* [photo 3][photo 4] *next button* etc!!
think of it as a magazine!
How to do this? I tried copy-ing stuff in the actionscript layer and start adding 2's on places that were now double...figured i was doing it right but i was wrong, its not working
I really hope someone can help me out, greatly appreciated!
Thanks a lot.
RocketGuns
Merge Photo Slideshow With Photo Gallery
I am currently working on a website to display photos and have found kirupa's tutorial using the slideshow method very helpful. But I want the added user flexibility to stop the slideshow or skip to another image in the slide-show sequence at any time. So, if you can envision entering the site, a portfolio of images starts to cycle while the user can see what image number he/she is on and skip to or pause the slideshow. I'm not very code savvy and would love some help/ideas where to find help!
Photoshop CS2: Web Photo Gallery: Flash - Gallery 1
I'm interested to know the code that Adobe Uses with one of their Web Photo Gallery (Photoshop CS2) - it's the one called "Flash - Gallery 1".
Here's a sample of it:
http://www.newrisedesigns.com/charlie/060416/
What I'm interested in, is how to do the thumbnails...when you roll over them - they move all of the other thumbnails around - and also show the name of the external jpg file.
Anyone know or have the source code to do that? What about any kind of tutorial out there that can do this?
Help please?
Converting This Photo Gallery To A Video Gallery
I have made an attempt at converting the below referenced Photo Gallery to a Video Gallery and need help with two things:
1. Have the FLVComponent call the video from an XML file
2. Move the Title from the top to the underneath the Thumbnails when the mouse hovers over
The FLA project can be downloaded from:
hxxp://members.cox.net/dgtlmik/Video_Gallery.zip
Thanks in advance!
Photo Spacing For XML Photo Gallery
Im new to this forum and Im also fairly new to action script. I have some questions regarding the Photo Gallery using XML and Flash. I'm only using the thumbnail portion of this tutorial. The problem that I'm having is that Im using photos with different widths. When I add these photos into the gallery they either overlap eachother or have very wide gaps in between. I've attached my .fla file and my .xml file. PLEASE HELP. Im pretty sure the problem is my action script but I dont know where to go. Thanks.
Photo Scalable Photo Gallery
Hi
Im trying to make a video gallery similar to this
http://www.fiesa2006.com/ (under gallerai link)
Is there a good tutorial on this
thanks in advance
Photo Gallery = Video Gallery?
hi
I was just wondering if it would be possible to show video files with some modifications in photo gallery?
Please post what you know...(format etc.)
Thx
LF...
Photo Gallery = Video Gallery?
hi
I was just wondering if it would be possible to show video files instead of jpgs with some modifications to XML photo gallery?
Any clue?
Thx
LF...
Project Gallery...not Just Photo Gallery
Project gallery...not just photo gallery
Hello, I'm looking for a project gallery. The projects could be for example, websites.
I want the list of projects down the left side. When you click one an image of the project pops up to the right AND below the image would be the description of the project, which pops up at the same time.
I've see photo galleries that kind of do this, but not a project gallery. Emphasis is on both the photo and description.
Any demos available or thoughts?
Thanks.
Photo MCs In Photo Gallery
Hi
I hope someone can help me,
I have created a flash photo gallery which you can see here click here
what i want it to do is, while its loading the next photo/mc is to still show the original one until loaded.
I can post fla files so you can see more info if this helps.
Cheers
Dean
Photo Gallery
I am a photographer who is designing a new site for myself and I was wondering if anyone had some code (swish) that can help me create an online Photo Galleries?
I have tried looking around and have not found something as of yet.
Thank you in advance.
Jeff
Photo Gallery
Hey peeps... I need help figuring out exactly how buggedcom's photogallery thing works because i keep getting a bad url error when everything starts running.
His code is posted at: http://board.flashkit.com/board/show...hreadid=368190
please help me out. The error looks something like this...
Quote:
Error opening URL "file:///C|/thumbnails/AO_1.jpg?nocache="
Help: Photo Gallery
Hi guys,
I'm a big newbie to Flash, but I've tried it once or twice and I get the general concept of the program, so that's about it. Today, I'm here to seek some expert help.
Recently, I suggested to my friend that at his wedding he should give away cd-roms with studio taken pictures of him and his wife. The general idea I had in my head was just a simple picture gallery with maybe a nice background and music playing (to make it even more slick, the music should be selectable from a list, or at least have foward and back functions). The gallery should be pretty simple ie. the pictures could be scrolled through by using foward and back buttons or by selecting a thumbnail. And seeing that I'm his best buddy and all, he enlisted me to take care of this job. Lucky me .
I don't know much about Flash, and basically the only idea I have is to embed the swf file into a webpage and just let it go from there. Just thinking generally in terms of the use of file directories and file accessing commands (although I can't say I know any) it seems simple enough, but in my dire attempts to "wing it" so far I haven't able to figure out much yet.
ANY help, suggestions or feedback would be GREATLY appreciated!!
Thanks!!
quattrosystem
Help With Photo Gallery
help with photo Gallery
hello
can someone help my to creat flash photo Gallery ? for my Kennel.
i will pay for help.
i also have a sample to what i have in mind
her is the link
http://www.hbo.com/docs/programs/un...=latest2_image#
its the biography to the left coulm
please help
youshi
XML Photo Gallery - How?
Hi Guys I'm pretty new to this so plz be gentle! Okay I would like to make a site a little similar to the following...
http://www.simonladefoged.com
Yet what I would like to do is have the 'gallery' images being displayed via xml (therefore I could just add new images at say 320x320 anytime to the image folder and update the xml file and the site would be updated?)
My problem is that I don’t know how to incorporate the xml into flash and would like to still use an alpha transition effect between the images and I don't know how this can be done?
Any help would be greatly appreciated!
Thanks,
Devs.
P.S. If anyone knows of any fla’s or components that do a similar thing could they plz let me know about them? I’ve found this one yet its not quite right ;(
http://www.mr10.net/components/gallery/
Photo Gallery
Hi! I am thinking of making a photo gallery. can anyone please tell me, how I can make one photo fade into the other?
Photo Gallery Bug Help
I posted this problem last month and went through all of the fixesd everyone suggested and I still havent gotten this photo gallery to work properly.
To hit the bug, start the photo gallery and in the first 4 or 5 seonds of loading click the last thumbnails. The wrong pic animation loads. This only happens for the first few seconds and only happens to the last few buttons. I cannot for the life figure out what is wrong. This site is now live and we are getting complaints about this. Any ideas would be great!
The file is too big to load her. You can goto this link and download the fla or see the gallery swf.
http://www.ruffagutierrez.com/text_index/
file: around-ruffa-yilmaz.fla
Thanks... Bubba
Photo Gallery
Hello all,
I am trying to create a photo gallery with the thumb nails of the images on the layout. When the thumb is clicked it will pull the image from the server and load it into the movie. I want the images to come in using some sort of effect i.e. fade in - fade out or any other cool effect.
Also: Is there a script to make sure the image loads at a specific size and location?
So far all i did was create 1 frame with the thumbs and 1 movie clip.
the script for the button is as follows:
on (release) {
loadMovie("http://www.albundy.net/other_pics/disguise/disguise2.jpg", square);
}
very rough sample of the idea... layout
Thanks in advance...
Photo Gallery
Can anyone help me? i have this photo gallery and you can click on the numbers and load the photos into a MC and you can click on the arrows and go to the next photo but if you click a number and then click the arrow it loads the next photo after the last one selected by the arrow, not the next photo after the one currently in the MC. I need to have these work together so if you click on number 5 and then click the arrow it loads photo number 6.
http://christinedesign.com/cuffaro/p...t_gallery.html
Thanks,
Lenny
Photo Gallery
Good Day All!
I came across this button setup:
http://www.joshuadavis.com/
and am curious to figure out how they made the movie play forward or backward depending on the button pressed. Did they us IF and Else statements? I am fairly new and would love to learn how to do this. Any direction would be appreciated.
Thanks
Photo Gallery
Finishing up an image gallery. Going to be a component very soon. If anyone sees anything that would be a value add please let me know.
http://www.uni5ied.com/gallery/
todd@uni5ied.com
Thanks.
Photo Gallery
Hello,
I am trying to make my first photo gallery in Flash. I want it to have the same functionality as my old sites but now in flash. Here is what the old picture gallery can do: http://www.teamsally.com/galleries/tn.php?gallery_id=42
I want to be able to see all the thumbnails and description but when clicked, the pics can be maximized to full resolution in another window. Does anyone have any tips or suggestions how I can accomplish something like this. I know it is a lot to ask. Any help is much appreciated. Thank you in advance!!!
Photo Gallery
Hello
I am looking for someone that can help a kid out! I am a newbie and would love it if someone could help me. Could someone take a look at my .fla? I am trying to make a mini photo gallery and not having very much luck. Could you take a look and see what is causing my photos to blink every 2 seconds and why the next button doesn't work? When you take a look at my .fla and if you could make it easier than how I am doing it, could you so me how to do that?
www.destreedesign.com/website.zip
THANKS!!!!!!!!!
Photo Gallery Help
ok. I tried posting my .fla and asking for help. I got no response. I know everyone is busy here and I should ask questions instead of having you look at my .fla. however, I don't know what the probalem is so I don't know what to ask. So here is my best try.
This is the code for the first photo. When you click the button the photo blink every 2 seconds. You probably will have no clue without loking how I set up the project. Also I now it is probably a poor way to do the code for loading a picture but I don't know how else I can make a photo gallery with my type of movie.
Code:
on (release) {
unloadMovie(_root.show1);
_root.box.gotoAndStop(2);
function waitMove() {
_root.box._x = 200
_root.box._y = 50
_root.n._x = 525
_root.n._y = 75
ClearInterval(ID);
}
_root.varX = 448;
_root.varY = 325;
maintxt.play();
function swfWait() {
loadMovie("photo1.swf", _root.p);
clearInterval(SW1);
}
SW1 = setInterval(swfWait, 2000);
this.attachMovie("my_mc", "Newmy_mc", "0");
ID = setInterval(waitMove, 2000);
}
Also if you want to take a look at my fla its here:
www.destreedesign.com/website.zip
Photo Gallery
I want to build a photo gallery (slide show) something to display pictures in a series but I dont want it sucking up tons of bandwidth to pull up the images. what is a good way of going about it.
I read somethings about XML, or would there be a ActionScript, or PHP. etc. way.
Also as a note the whole site is built in flash so want to show the images in the flash form.
Thanks for your time,
Cheers.
JT
Note: I'm using Flash MX
Photo Gallery
hey,
i want to make a photo gallery just like the one on this site
www.garyjules.com
i want the pics loaded externally. how can i do it. easy
Photo Gallery Help
Hi there
I have created this gallery from a tutorial and for some reason, when I test the movie, the image comes up off centered. I can seem to position the image so that it displays on a specified area on the time line.
Can someone have a look and let me know how I can control the position of the image?
Thanks
Photo Gallery Help
I really like the photo gallerys that USA TODAY uses for their pics and I was wondering if anyone could help me out with some advice on how to do it...im pretty new to this and I would rreally appreciate some direction...thank you...
www.usatoday.com
Photo Gallery Help
Hi does anyone know how i can create a gallery like this one ?
http://www.anatol.de/index.php
Any help apprieciated
Photo Gallery Help
Hi does anyone know how i can create a gallery like this one ?
http://www.anatol.de/index.php
thanks for any help
Need Photo Gallery Help
http://www.kirupa.com/developer/mx/photogallery.htm
anyone know of a easy way to do a photo gallery...i tried tutorials
on kirupa.com i might of miscommunicated some of the info..
but it didn't work for me, and i didnt see ANY tutorials on flashkit for photo gallery
NEVER MIND I FIGURED IT OUT> how ? isnt it obvious?
im a genius , just kidding
but how do i get the pictures resized ?
they come in as orginal sized jpegs...i want them scaled to
a size to fit the display on my screen???
anyone know ?
This looks like the answer but im using flash mx 2004 so i need to know how to do this in mx 2004
the loaded images look disproportionate
You load your image and everything seems to be scaled oddly. This will happen if you resize your movie clip any. When you load the JPG file, it will scale automatically to fit the size of your movie clip. If your movie clip has a width of 105% and a height of 110%, your JPG would scale accordingly to produce a slightly distorted version of the original image. Here is how to fix it:
Right click on the movie clip and select Panels | Transform.
In the Width and Height fields, enter a 100 for 100%:
Once you enter a 100 for both the width and height fields, your movie clip will be properly sized but not be the size you want it to be. So, right click on the movie and select Edit in Place.
Now, resize the movie according to what you want it to be. Note that you are resizing the actual "stuff" that makes up the movie clip instead of the movie clip directly (which is you selected Edit in Place).
Now, no distortion....only great images!
Photo Gallery
THIS WEB SITE I'M CREATING IS A FULL FLASH SITE.
ONE OF THE TASKS IS TO CREATE A GALLERY. NOW THE PROBLEM I HAVE IS HOW TO CREATE THIS GALLERY. THIS GALLERY WILL BE UPDATED EVERY WEEK.
SO I NEED TO CREATE A TEMPLATE OR SOMETHING THAT WOULD LET ME PLUB IN THE FILE NAMES AS APPOSED TO CREATING SOME NEW EVERY TIME. ANYTHING ON HOW TO DO THAT OR DOES ANYBODY HAVE THEIR OWN SUGGESTING.
Photo Gallery Help
ok i have a few problems...
frist.. i did this tutrial, http://www.tutorio.com/tutorial/simp...photogallery/1 everything worked fine.. but i have a large number of pictures and a small space for the thumbnails. so i want it to move to the left or right depanding on where the mouse is.. any ideas?
and...
i want it to show a loading thing when it is loading.. also any ideas please help i been pulling my hair out trying to figure it out..
btw i was given this cose for the roll over but unsure where to put it or how to use it...
midy = thumbnails._height/2;
friction = 10
this.onEnterFrame = function() {
var distance = _root._ymouse-midy;
_x += (distance*friction);
... http://www.3dattic.com/3dattic.html (click the picture frame and u can see waht im talking about still working on all of it)
frist flash project sorry for being a n00b :x
Photo Gallery, Using XML?
How would I make a photo gallery using Swish Max?
I have a MySQL database with the following details:
Photo Gallery ID - Autonumber
Gallery Name - Text
Size - Integer
Folder - Text
Height - Integer
Width - Integer
Notes - Memo
PHP Code:
<html>
<head>
<title>Photo Gallery</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
# Get Database Details
include 'conf_global.php';
# Connect to MySQL server
$connection = mysql_connect($host,$user,$pass);
# Connect to Database
mysql_select_db($db,$connection);
# Rename Variable
$id = $_GET['id'];
if (!$id)
{
$sql = "SELECT * FROM ibf_gallery";
$result = mysql_query($sql,$connection) or die("Cannot perform the following query: <br><br>$sql<br>br>Reason:<br><br>mysql_error()");
?>
<table width="21%" border="0">
<tr>
<td width="70%">Photo Gallery</td>
<td width="30%">Size</td>
</tr>
</table>
<?php
while($row = mysql_fetch_array($result,$connection))
{
?>
<table width="21%" border="0">
<tr>
<td width="70%"><?php echo "$row['Name']"; ?></td>
<td width="30%"><?php echo "$row['Size']"; ?></td>
</tr>
</table>
<?php
}
}else{
$sql = "SELECT * FROM ibf_gallery WHERE '".$id."'";
$result = mysql_query($sql,$connection) or die("Cannot perform the following query: <br><br>$sql<br>br>Reason:<br><br>mysql_error()");
while($row = mysql_fetch_array($result,$connection))
{
if($row['Width'] == "0")
{
$row['600'];
}
if($row['Height'] == "0")
{
$row['400'];
}
?>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="<?php echo "$row['Width']"; ?>" height="<?php echo "$row['Height']"; ?>">
<param name="movie" value="photogallery.swf?folder=<?php echo "$row['Folder'];"; ?>">
<param name="quality" value="high">
<embed src="photogallery.swf?folder=<?php echo "$row['Folder'];"; ?>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="<?php echo "$row['Width']"; ?>" height="<?php echo "$row['Height']"; ?>"></embed></object>
<?php
}
}
?>
</body>
</html>
I would also like it to have a similar feel like SwishPix. Basically, I'm looking for a SwishPix but with the ability to load external jpegs based on a PHP script.
Thanks for all your help in advance. I really appreciate it.
Photo Gallery
What is the fastest and best way to make a looping photo gallery with fade transitions? I just have 4 photos, they are small.
Thanks!!!!!
Photo Gallery
Here I attached customized version of KIRUPA xml Gallery.
please if any body know to do EASING part correctly. edit it and send me back.
I want exactly ease from erlier picture size to new.
something like this please make correction and send me if anybody knows.
http://www.evb.com/
CJ
Photo Gallery
Hello, I am a graphic designer and preparing a webpage for myself done entirely in flash.
Are there any helpful tutorials for creating a gallery with either a transition or scrolling effect that happens when clicking to the next image?
thanks
Photo Gallery
Hi,
am gonna design a photography web site in flash,
i got about 30 images, for which am gonna give thumbnails, and i want to load the big images dynamically, i need good suggestions, tutorials or any movies from which i can learn.
da_hammer
Photo Gallery Help
Hi Guys,
I have looked all over and I cannot seem to find the desired answer to this question:
How the hell do they do this: http://www.gigue.com/ On the home page of this site, there is numbers down the bottom left. I can pretty much understand how they get the gallery working but if your on a number, (say 3)click on another number (4) and then reclick on the first number (3), the way it comes back into focus!
I have searched all over for any help with photo gallerys or menus and so far, I haven't been successful. Anyone ever see a turtorial like this? Most of them are just slideshows.
Help help help please.
Help With XML Photo Gallery
Hi everyone. I just finished up this tute on how to create an XML driven photo gallery with thumbnails. I wanted to make a few adjustments to how it's laid out and after doing so it still works, but is a bit buggy. Here's a list of what problems I'm running into and would appreciate some help fixing cause no matter what I try it just seems to still need more fine tuning.
I made the thumbnails scroll vertically instead of horizontally.When the thumbs load they aren't loaded at the 0 point of thumbnail_mc.When you scroll down to the bottom the bottom half of the last picture is cut off.When you scroll back up the first picture is in the correct placement (where it should have been when the movie first loaded)The scroll buttons don't work precisely. Sometimes it scrolls when you mouse over the buttong, sometimes it scrolls when you mouse over the surrounding area. Sometimes it doesn't scroll and you have to kind of "rub" over it to get it to work.
Other than my own selfmade mistakes this was a fabulous tutorial. Any help with fixing my problems would be awesome. I've attached my .fla for anyone who's interested in helping. Thanks everyone for your help, suggestions, and ideas.
Photo Gallery
Does anyone know where i can download a decent Photo Gallery viewer thingy for my photos, I would like to have thumbnails and when you click on it it enlarges..
cheers in advance
Looking For Photo Gallery
there's a sick ass flash based photo gallery but purchasing is necessary.
i have no idea what the name is or where to even start looking for it.
can anybody please hep me?
thanks you in advance.
Photo Gallery
I have created a photo gallery in script, that grabs external iamges.
If I set this script up with a 'next' button, all the images appear, one at a time, (not adding) where tey are supposed too. If I take the button out and replace it with a loop the out put i s the final image in place (i am guessing it loops too fast to actually see the first few appear and disappear). By the end of the loop I want all of the images to show. Any help would be appreciated.
// SET VARIABLES
// set the images
imagesArray = new Array("0001.jpg", "0002.jpg", "0003.jpg", "0004.jpg", "0005.jpg");
//set the list of x co-ords
xLocations = new Array(0, 60, 120, 0, 60);
//set the list of y co-ords
yLocations = new Array(0, 0, 0, 60, 60);
//set default for counter to 0
offSet = 0;
// count out the number of images
imagesCount = imagesArray.length;
// PHOTO GALLERY CODE
while (offSet < imagesCount){
//name the container according to the offSet
imageContainer = "container"+offSet;
// catch the X and Y for this offSet
CurrentX = xLocations[offSet];
CurrentY = yLocations[offSet];
//create the new MC
_root.createEmptyMovieClip(imageContainer,1);
//load the image into the MC
eval(imageContainer).loadMovie(imagesArray[offSet]);
//set the loacation of the MC
eval(imageContainer)._x = CurrentX;
eval(imageContainer)._y = CurrentY;
//increment offSet for next loop
offSet = ++offSet;
}
stop();
|