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




Photo Gallerie



i have tried to modify one of the galleries that come with photoshop cs2 (Flash Gallerie 1) and no love, i am trying to make the gallery static to the top left side of the window, i have tried for some time now but no luck. any help is welcome.

You can get the files here, gallerie 1 is the one i am trying to mod.

http://www.adobe.com/support/downloa...61&fileID=2793

Thanks.



FlashKit > Flash Help > Flash MX
Posted on: 06-28-2005, 08:15 PM


View Complete Forum Thread with Replies

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

Photo Gallerie Suggestions?
I'm designing a portfolio site for a photographer friend of mine. She's gonna need a gallery for her photos. What I'm looking for is something maybe she could update on her own. Is there some XML or actionscript I can use, where all she'd have to do was upload the photos to a certain folder? And the script will automatically format all the photos into the site?

Difficulties With An XML Gallerie In AS3
Hi everybody,

I recently threw myself in this project of making an xml photogallery in AS3.0; I found the basic code on flashmagazine.com and adapted some of it. This gallery first loads a bunch of thumbnails and then when you click on a thumbnails it slides in a big image; when you click on the big image it goes back to the thumbnails etc. But now i'm wondering how i could make arrows on the big images to scroll through them instead of going back every time to the thumbnails gallery?? Any ideas, any one???
it would be great to find this solution and it would help me advancing in my as3.0 learning proces!!

the code's in two files; first the fla and then the external as file:
fla;


ActionScript Code:
import fl.containers.UILoader;
import caurina.transitions.*;
//---------loading the external xml file-------
var urlRequest:URLRequest = new URLRequest("portraits.xml");
var urlLoader:URLLoader = new URLLoader();
var myXML:XML = new XML();
var xmlList:XMLList;
myXML.ignoreWhitespace = true;
urlLoader.addEventListener(Event.COMPLETE,fileLoaded);
urlLoader.load(urlRequest);
//--------holds the paths to the thumbnails-------
var arrayURL:Array = new Array();
//--------holds the paths to the big photos-------
var arrayName:Array = new Array();
//--------holds the thumbnail objects-------
var holderArray:Array = new Array();
//--------represents the number of collumns-------
var nrColumns:uint = 5;
//-------represents the container of our gallery
var sprite:Sprite = new Sprite();
addChild(sprite);
var thumb:Thumbnail;
//-------- the thumbnails container-------
var thumbsHolder:Sprite = new Sprite();
sprite.addChild(thumbsHolder);
//-------- the photoLoader container-------
var loaderHolder:Sprite = new Sprite();
loaderHolder.graphics.beginFill(0xffffff,1);
loaderHolder.graphics.drawRect(0,0,900,600);
loaderHolder.graphics.endFill();
loaderHolder.x = 1000;
loaderHolder.y = 0;
sprite.addChild(loaderHolder);
//-------- loads the big photo-------
var photoLoader:UILoader = new UILoader();
photoLoader.width = 900;
photoLoader.height = 600;
photoLoader.y = 0;
photoLoader.x = 0;
photoLoader.buttonMode = true;
photoLoader.addEventListener(MouseEvent.CLICK,onClickBack);
loaderHolder.addChild(photoLoader);

/* we loop through the xml file
populate the arrayURL, arrayName and position the thumbnalis*/
function fileLoaded(event:Event):void {
    myXML = XML(event.target.data);
    xmlList = myXML.children();
    for (var i:int=0; i<xmlList.length(); i++) {
        var picURL:String = xmlList[i].url;
        var picName:String = xmlList[i].big_url;
        arrayURL.push(picURL);
        arrayName.push(picName);
        holderArray[i] = new Thumbnail(arrayURL[i],i,arrayName[i]);
        holderArray[i].addEventListener(MouseEvent.CLICK,onClick);
        holderArray[i].name = arrayName[i];
        holderArray[i].buttonMode = true;
        if (i<nrColumns) {
            holderArray[i].y = 180;
            holderArray[i].x = i*140+180;
        } else {
            holderArray[i].y = holderArray[i-nrColumns].y+100;
            holderArray[i].x = holderArray[i-nrColumns].x;
        }
        thumbsHolder.addChild(holderArray[i]);
    }
}
//----handles the Click event added to the thumbnails--
function onClick(event:MouseEvent):void {
    photoLoader.source = event.currentTarget.name;
    Tweener.addTween(thumbsHolder, {x:0, time:1, transition:"linear"});
    Tweener.addTween(loaderHolder, {x:0, y:0, time:1, transition:"linear"});
    Tweener.addTween(thumbsHolder, {alpha:0, time:1, transition:"linear"});
    Tweener.addTween(loaderHolder, {alpha:1, time:1, transition:"linear"});
}
//----handles the Click event added to the photoLoader----
function onClickBack(event:MouseEvent):void {
    Tweener.addTween(thumbsHolder, {x:0, time:1, transition:"linear"});
    Tweener.addTween(loaderHolder, {x:1000, time:1, transition:"linear"});
    Tweener.addTween(thumbsHolder, {alpha:1, time:2, transition:"linear"});
    Tweener.addTween(loaderHolder, {alpha:0, time:2, transition:"linear"});
}


thumbnail.as:


ActionScript Code:
package {
    import flash.display.Sprite;
    import fl.containers.UILoader;
    import caurina.transitions.*;
    import flash.events.MouseEvent;

    public class Thumbnail extends Sprite {
        private var nume:String;
        private var url:String;
        private var id:int;
        private var loader:UILoader;

        function Thumbnail(source:String,itemNr:int,numeThumb:String):void {
            url = source;
            id = itemNr;
            this.nume = numeThumb;
            drawLoader();
            /*addEventListener(MouseEvent.MOUSE_OVER,onOver);
            addEventListener(MouseEvent.MOUSE_OUT,onOut);*/
            /*scaleThumb();*/
        }
        private function drawLoader():void {
            loader = new UILoader();
            loader.source = url;
            loader.mouseEnabled = false;
            loader.x = -50;
            loader.y = -50;
            addChild(loader);

        }
        /*private function onOver(event:MouseEvent):void {
            Tweener.addTween(this, {scaleX:1,scaleY:1, time:1, transition:"lineair"});
            Tweener.addTween(this, {alpha:1, time:1, transition:"lineair"});
        }
        private function onOut(event:MouseEvent):void {
            Tweener.addTween(this, {scaleX:.9,scaleY:.9, time:1, transition:"lineair"});
            Tweener.addTween(this, {alpha:1, time:1, transition:"lineair"});
        }
        private function scaleThumb():void {
            this.scaleX = .9;
            this.scaleY = .9;
            this.alpha = 1;
        }*/
    }
}

Help With Gallerie Loading
I have made a gallerie for a Tattoo shop. I made thumbnails that when you scroll over the image the full scaled image apperas next to it. Looks great works great once loaded. Now the problem is the loading, when the images are loding you can see them load. Is there a way to mask them or something like that. I have a link to the page if needed. Thanks

Putting A Loading On A Gallerie
Can someone help on putting a text
loading on this xml gallerie

Thank´s in advanced

Puzzle: Picture-gallerie Into Sliding Menu?
INTRO:

i wanted to included the .fla so you could see for yourselves...
You can download the .fla in the tutorials of
http://www.kirupa.com/
To make the .fla work: you need to put the pictures (in the attachment) into the libery. Now just adjust in layer 1/frame1/line 11/this.pArray[""]. Insert this .pArray["63.jpg","64.jpg". Now the "picture-viewer should work.
I've put both (slidingmenu and pictureslideshow) on the main stage.

WHAT I WANT TO DO:
I'm trying to put a "picture-slideshow" into one of the squares of a "sliding- menu"

THE PROBLEM:
When, for instance, you push "button1" the "sliding-menu" slides to "square1".
On this "square one" i want to put a "picture-slideshow".

The problem: I've put the "picture-slideshow into the movie "1st". This movie "1st" is a part of movie "clipgénéral". When i do this, the "picture-slideshow" don't function.

I've no clue why it doesn't work, because when i put in another movie like 'drop-down menu' this on the other hand works fine!

any suggestion are very welkom!!!!

Thanks

Roll Over A Small Photo And Above It (or Beside) The Large Photo Is Displayed
Hi All
What is this called: When you roll over a small photo and above it (or beside) the large version of the photo is displayed. I would like to create a photo gallery that works this way. Could someone tell me what this is called? Or better yet, where I can learn how to do this? A free tutorial perhaps?

Loading Next Photo In The Background While View The Current Photo
Is there a way that when you are viewing a photo in the Photo Slide Show using XML > http://www.kirupa.com/developer/mx20..._slideshow.htm

The next photo in the slide show downloading, and once it has it than triggers to display the photo instead of having the preload bar?


Another cool feature > I created the xml to be dynamic based on the photos within a directory, some slideshows might one have 1 image in the direcotry. Is there away to stop the slideshow if this only one image, and only play the slideshow if there is more than 1 image?

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!

Help With: Last Photo Of A Transition To Transtion Back To First Photo...
I have a photo transition movie Ive created but how can I get the last photo to transition back to the first photo so it looks like all the other smooth transitions between photos?

Thanks guys/gals

I Have A Photo That Is A Thumbneil And When I Click On It I Want To Expend The Photo
To expain in detial my probem i have a thumbneil photo and when i click on it I want to display above the thumbnail a larger photo below is the action script I believe will cause this to but maybe not i do not really understand the script full what it is suppose to be doing - here is what i have done in my flash application I have overlaid this bttn_area as a hit zone over the thumbneil photo so when i hit the zone over the thumbnail photo i need to disos play a bigger picture. The thumbniel is 87 by 72 or so
and the large photo 592 by 400 or so can some one help me. THANKS

Up Over Down hit

This is the cation script but how do i modify it to display the filename.jpg when i click on the thumbneil called lets say thumb.jpg so where in this action script do i refenernce the photo names *.jpg. THANKS

on (rollOver) {
this.gotoAndPlay("s1");
}
on (releaseOutside, rollOut) {
this.gotoAndPlay("s2");
}
on (release){
if(_root.f<>1){
_root.cont.cont2.fotos.gotoAndPlay("s1");
_root.f=1;
}}

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!

Load Photo Fade Last Photo
What I am trying to do is;

When you click to the next photo it keeps the one that is already there till the new one has 100% loaded then it fades the old one down and the new 100% loaded fade up. This way there is never the background color there while the photo is loading. So there is a smooth transition between the loading and the fading of the old and new image.

So I had to make two clips one holding the old photo and the other holding the new photo and toggle between the two to either fade up or fade down.

Here is the code there is two things wrong. One is I want to trigger the fadeIn only when the fadeOut is totally finished this way it looks better. Right now the both do fadeIn and fadeOut together.

Also if you check it on this link you will see that it sometimes has a delay before it fades up the new image. If you don't see it empth cache and play again.

Code: .............

Photo To Photo Morphing, Is There Such A Thing?
Hi i searched around and only found tutorials for basic shape to shape morphing which i can already do. I want to do photos to photos like on TV. like a picture of a dog to a cat. can flash do it? and if so how?

Need Photo To Photo Animation For Header
Hi - I'm new to Flash - just bought CS3 web suite, and the included help files are not helping.
I just need a simple header animation that will display through a group of photos with a fade-in/fade-out between each one.
I have sized my pix to the stage, and have them in the library.

Should they be movie clips or symbols?
How do I get them to do what i want? I have made them into an animation in PS, but the file is clumsy and large-size, or converts to lo-res gif. Figured Flash ought to do this, but i can't figure out how.

much thanks,
autwnd

Help - My Photo Xml Photo Album's On Fire...:)
Hello there,

I have recently completed the tutorial on how to make a slideshow with thumbnails. It is found here: http://www.kirupa.com/developer/mx2004/thumbnails.htm . I figured this would be a great way to show off a friends photogallery. The site is viewable here: www.prestigeinteractive.com/anneliephotography .

Well I can get it to work, however, when I try to load the swf file into another fla, the paths are messed up. Sadly, I am not good with code, so I am wondering what lines would need to be fixed in order to make this code work?

First I will tell you how I've structured the site.
- I have a swf file that basically loads a bunch of swf files into their appropriate x y coordinates.
- I have buttons that when selected open up external swf files into a movie clip called siteContentPage_mc . (this is where the site's content is loaded)
- On one page that is called portfolio, I want to have my slideshow photogallery page load. I am wondering how I would have to modify the code to make it work in this setting. I know it has to do with paths, but I am not sure which one's need changing. Currently the xml file resides in the folder with the swf files.

Here is the code at this time.









Attach 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("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;
}
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<=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+(eval("thumbnail_mc.t"+k)._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 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 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

Dissolve One Photo To Another Photo
Hi guys,

I have two images the same size and want to dissolve one image to another image, like the first flash movie here:
http://www.flashnifties.com/xml_slideshow.php

What would I need to do this?  I have tried two images on one layer with a shape tween, but this does not achieve the effect.

Any ideas?
------------------------------------
There's no place like 127.0.0.1
------------------------------------


Photo Help
i have a picture that i want to fade into a background. like putting an opaque gradient on it from left at 100% to right at 0%. now it seems this should be possible but i cant figure it out. im using fireworks but im sure i can translate photoshop advice. any help would be awsome.
thanks

Photo's
Hey how do you make it so when you open the site it reads the number of photos in a folder so lets say theres 10
dcp_1.jpg
dcp_2.jpg
dcp_3.jpg
etc etc
then displays them all in this fashion

<+++++>

the 5 +'s are photos and the arrows make them slide left or right revealing more.. and it keeps slideing untill it hits the last one and bam it slides no more hehehe. OH YEAH LOL these will be thumbs and when you clicked on them it would load the full size pic somewhere on the screen NOW if someone out there is nice enough to help me.. I can do a lot in flash **cant seem to get this lol** and i have a linux box with unlimited space etc etc so i will find a way to thank you.
Any help anyone could give would be GREATLY apreshaited

Thanks so much
Mike

Photo's
I didn't know where to post this so its probably in the wrong place but here goes:

Is there anywhere i can get good professional looking photo's of business people for a business website such as the one of the lady at http://www.chameleondata.com/siteindex.html I know you probably have to pay for that and if so which are the best sites for stock photos?

Get Photo?
Ok, what I want is quite simple...

I want a flash movie that is 134 x 134, which has some kind of actionscript so that when a member of my site uploads a photo to a directory (I.E /photos) the flash movie will take the pictures that are in that directory and randomly slide show them and resize them to fit in view.

Anyone know how I can do this??

Thank you

This.photo
when some code has this. in front of a mc name (for example, this.photo) what does that mean?

Xml Photo 2
Thanks God I found "XML Slideshow/PhotoGallery - Hyperlinking Each Image" Kirupa's modification.

Now I am trying to solve another problem. I want to open each time a blank window with a specific size and no toolbars. It would be nice if every picture is loading in one and only .html page.

I also found that script:

for index.html

<script language="JavaScript">
<!--
function spawnWindow(URL,Name,features) {
window.open(URL,Name,features);
}
//-->
</script>

for the .fla.

on (release) {
getURL("javascript:spawnWindow('theonlyone.html',' popup','toolbar=no,location=no,status=no,menubar=n o,scrollbars=yes,resizable=no,width=800,height=600 ')");
}

Thanks a lot!!!!

Photo's ?
I am searching for a script where flash can load in a xml file and show photo's lying on a table which you can throw around? I have seen some before but can't seem to find a ready to go solution as i need it rather quick

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 Manipulation?
Is there any way to work with photos after they've been brought into Flash? I'm wondering if some of the drawing functions can be used to manipulate them. Also, can I get photos to change scale like text?

Photo Album Help
just got back from a family vacation and my dad wants me to put all of our photos from our trip that we took. Since we used a digital camera i got em all on my comp, but i'd like to know how to do a few things. Is flash the best tool to use for this? I was thinking to have a few section for the differents places, Grand Canyon etc. in each section i'd like to create some thumbnails and you can enlarge the picture, how would i do this? Thanks alot.

Jason

Photo Quality
i am importing pictures from photoshop into flash and they look fine in the fla file and i break them apart and deselect allow smoothing but when i test the movie, the pictures in the swf file are fuzzy. is there a way to fix this?

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="

Photo Scroller
Hi there I was wondering if there are any decent and easy to use photo scrollers out there ??? I have found a few but I dont go much on them. I dont mind if its horizontal or vertical & I would like to have buttons insted of mouse over action. Thanx for the help in the future

John

Photo Importing Help
Hello,
I need to import alot of photos to a flash movie(for a clothing line). I have a main time line and then import movies for the different sections. (I am not much of a programmer but know some basics.) What would be the best solution for this? Should I load the pics as individual movies to the movie which loads into the main time line? My concern is not to have preloaders that last a life time. Is there a better way.(exporting to flash 5 working in mx)
Slow and crazy,
Nina

Photo Album
HI -- havent really built anything in a LONG time, and so many things have changed since I was last here! wow looks great! Question -- A friend of mine asked me to help her get a Photo Album on her website so that her members could upload pics n view eachothers etc. Does anyone have any ideas on the best way to go about this? Thanks!

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

Photo Optimizing
ok this is my issue. I am creating a flash movie that has some jpg photos in it that I took with a digital camera. The camera is ok so I have to get the photos and edit them in fireworks. I am then saving them to a folder and importing them into the flash library. I then place them in the movie test and the movie looks great. Now when I save the swf and import it into an html page in ultradev and view the movie in the browser the photos come out really blurry and choppy. Should I optimize the photos any other way in flash? Has anyone had this issue?

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 Effect
how can i achieve an effect like this in a picture, the one in the backgound?

www.loreille.com/movie_e.html

i've looked in all photoshop filters but can't find it.

thanks in advance.

Photo Quality
Can anyone help? I am developing a photography website and "on screen" image quality is a MUST!!!

I am using Lossless/PNG compression and the dimensions of the files are set prior to importing into Flash MX. Bandwith profiler reads 30seconds for preload (56k) I am doing short "fade up" movies.( 15 frames each)

I have seen some great sites with HIGH quality images that seem to load faster. for example check out www.amandamarsalis.com

Is there anything else I can do to keep the quality and decrease the load time.

Pasphoto

Photo Quality
Dear Friends,
I have designed a flash site for a photographer and all but one of the photos look bad. In another site the quality of the pictures might be acceptable, but this is the guys life's work. The images are JPEGs created in photoshop at 72dpi and optimized in ImageReady. I unfortunately do not know why the one photo looks so good. It is an 80K JPEG like the rest. The one good picture is the last photo in the International section. Any thoughts?

Another probolem is a set of buttons that fades in using brightness. When it gets near the end of the tween, it jumps. How do you fix it?

Thanks,
Dan

Photo Scroller
tryed to make my own photo scroller but im a newbie and dont know all the kool easy ways of doing things.. is their any tutorials on this... mine works but looks really bad and it sorta skips once it get to the end and starts back over..

Panoramic Photo
hey there guys - i got this movie clip of a panoramic image what i want to do with it is put a tranparent button on the left and right hand side of it and then script those buttons to move the image left and right - the other thing i need to do is set it so it continues "looping" so that there are no breaks or jumps as it scrolls thru.

hheeeeelllllllpppppp

it would be greatly appreciated

cheers

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