Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Link From Photo Gallery?



I would like to ask you if it is possible in your example "gallery with thumbnails and multiple galleries" - V3_with_thumbs posted here: http://www.kirupa.com/forum/showthread.php?t=87388)) ,when click on the large picture to have a link (hyperlink) to another page? thank you turboman



KirupaForum > Flash > Flash 8 (and earlier)
Posted on: 03-08-2007, 01:28 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Link The Photo Gallery?
I am going through the photo gallery tutorial, and I want to link the picture to a larger version (opened in a new window), how would I go about doing this?

I have so many ideas, but don't know if any of them will work! lol

Thanks for the help

LINK TO THE TUTE:
http://www.kirupa.com/developer/mx/photogallery.htm

and btw, I already did a

Link The Photo Gallery?
I am going through the photo gallery tutorial, and I want to link the picture to a larger version (opened in a new window), how would I go about doing this?

I have so many ideas, but don't know if any of them will work! lol

Thanks for the help

LINK TO THE TUTE:
http://www.kirupa.com/developer/mx/photogallery.htm

and btw, I already did a

How Do You Link Thumbnails For A Photo Gallery?
Hi. I'm totally new to Flash MX 2004 (just got it this week in fact). Anyway, I can't figure out how to link a thumbnail image to a URL. I swear there's a way to do this cuz I seem to remember being able to do it when I downloaded the trial version of Flash 5.

So, help please?

Jennyfer

Hot Link Protection And Xml Photo Gallery
I am a completly new to this, but I have been encouraged by my success in adapting the xml_flash_photogallery tutorial to do what i want it to do ...

my problem is that when i enable "hot link protection" on my website (i have a cheap cpanel web host) the images called by the "next" and "previous" buttons don't come up.

Does anyone have any ideas appart from leaving the hotlink protection turned off. (it doesn't seem to matter which sites i allow direct linking to in the configuration)
This problem seems to be related to the little note about images not being displayed in the tute introduction.

you an check out my experimental movie if you want - please don't be too harsh on me, it's a very early attempt.

thanks for any ideas

jeremy

www.thephotodept.com.au/flashtest/index.html

Link Tag For Photo Gallery Using XML And Flash
For the Photo Gallery using XML and Flash tutorial under the Flash MX Tutorials I was wondering if anyone knew how to made the link tag functional in the FLA file.

Can anyone tell me how to make the link tag from my XML functional in this actionscript?

Here is my code:


Code:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
image = [];
description = [];
thumbnails = [];
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;
thumbnails[i] = xmlNode.childNodes[i].childNodes[2].firstChild.nodeValue;
thumbnails_fn(i);
}
firstImage();
} else {
content = "file not loaded!";
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("interactive.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;
}
function thumbNailScroller() {
// thumbnail code!
this.createEmptyMovieClip("tscroller", 1000);
scroll_speed = 10;
tscroller.onEnterFrame = function() {
if ((_root._ymouse>=thumbnail_mc._y) && (_root._ymouse<=thumbnail_mc._y+thumbnail_mc._height)) {
if ((_root._xmouse>=(hit_right._x-40)) && (thumbnail_mc.hitTest(hit_right))) {
thumbnail_mc._x -= scroll_speed;
} else if ((_root._xmouse<=(hit_left._x+40)) && (thumbnail_mc.hitTest(hit_left))) {
thumbnail_mc._x += scroll_speed;
}
} else {
delete tscroller.onEnterFrame;
}
};
}
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);
}

Photo Gallery Using XML And Flash. Thumbnail As A Link
Hello to everyone, First of all i would like to say how useful your tutorial
http://www.kirupa.com/developer/mx2004/thumbnails.htm
was to me as i intented to do something similar and it really helped me. However i have a small problem (i think). Instead of clicking a thumbnail and opening a larger image i want the thumbnail to be a link for a url. I would really appreciate any help. Thank you

Cannot Link Scenes (from Home To Photo Gallery)
Hi,
I'm a newbie to Flash MX.
Have set up a scene (home page) to another scene (photo gallery)... The scenes when tested separately are working fine but when I tried to view the photo gallery using a button on the home page, it replays the home page... Another problem that i faced was after loading the photo, the photo remains there when i navigate to other scenes. Can anyone pls help??? Thks in advance!!!

In home page, the button that links to photo gallery has the following action script:

on(release){
   gotoAndPlay("Scene 2");
};

In the photo gallery (Scene 2), the movie clip has the following action script:

onClipEvent (load) {
   _root.gotoAndStop(2);
}

And the action script to display the photos is:
Frame 1:

_global.a_th = 80;
_global.a_ta = 70;
_global.colunas = 3;
_global.linhas = 3;
var PhotoAlbum = {thumbs:[]};
photo_xml = new XML();
photo_xml.ignoreWhite = true;
stop();

Frame 2:

photo_xml.onLoad = function() {
   bjork_th.html = true;
   bjork_th.htmlText = "<p align="center"></p>";
   Photos_Bjork(0);
};
_global.Photos_Bjork = function(carregar) {
   var photos = photo_xml.firstChild.childNodes;
   var p_thumbs = photo_xml.firstChild.attributes.thumbs,    
   p_photos = photo_xml.firstChild.attributes.bjorks;
   var i = carregar;
   for (var l = 0; l<linhas; l++) {
      for (var c = 0; c<colunas && i<photos.length; c++, i++){
      var thumb = bjork_th.createEmptyMovieClip("thumb_"+i, i);
      PhotoAlbum.thumbs.push(t);
      thumb._y = l*a_th;
      thumb._x = c*a_ta;
      thumb.createEmptyMovieClip("photos", 1);
      thumb.photos.loadMovie(p_thumbs+"/"+photos[i].attributes.thumb);
      thumb.dimensoes = photos[i].attributes;
      thumb.onRelease = function() {
      bjork_photo._parent.alvo.unloadMovie();
      bjork_photo.dimensoes = this.dimensoes;
      bjork_photo.onEnterFrame = function() {
      this._width += (this.dimensoes.largura-this._width)/3;
      this._height += (this.dimensoes.altura-this._height)/3;
      bjork_th._x = this._x+(this._width/2)+5;
      bjork_th._y = this._y-(this._height/2);
      if (Math.round(this._width) == Math.round(this.dimensoes.largura) && Math.round(this._height) == Math.round(this.dimensoes.altura)) {            
             this._width = this.dimensoes.largura;    
             this._height = this.dimensoes.altura;
             delete this.onEnterFrame;            
             this._parent.createEmptyMovieClip("alvo", 1);
             this._parent.alvo._x = this._x-(this._width/2);
             this._parent.alvo._y = this._y-(this._height/2);
             this._parent.alvo.loadMovie(p_photos+"/"+this.dimensoes.bjork_bw);
         }
       };
    };
      }
   }
};
photo_xml.load("photos.xml");
stop();


How To Link A Button To An Specific Picture In Photo Gallery
Hi there. I'm a beginner with flash and web design. I tried to create a photo gallery following the tutorial that uses XML in flash but I couldn't. The partial downloaded fla files that explain the process didn't open at all (unexpected format, was displayed). Download Partial FLA for 2004
Download Partial FLA for MX
FLA for MX (for those who can't get the above version to work)
I went instead for the more simple version tutorial "creating a photo gallery" with sbeener's code, which is enough good for my requirements. I made my photo gallery and then I thought It'd be a good idea to link a button from a different page to an specific picture within the gallery and from there use the back and forward buttons to move along. Is this possible without following the complex XML in flash procedure? How could I do it?

I'd really appreciate any help you could give me.
Thanks in advance.

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

How To Link To Particular Photo
Hello everyone, My friend has his own flash website with several galleries(flash). 2nd number photo in the gallery name by “people” contain the photo of my friend and I have same photo on my web site. I want to set hyperlink so when someone click on my friend’s photo on my web site, it will take them to 2nd number photo in gallery “people” on my friend’s web site. Please help.

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!!!!!

Copyright © 2005-08 www.BigResource.com, All rights reserved