Linking Thumbnail Photos To The Img?

May 14, 2009

linking my thumbnail photos to the img. photo using action script 2.0?

View 22 Replies


Similar Posts:


ActionScript 3.0 :: Build A Gallery Of Photos Which Has Selected Thumbnail On Each Of Them Before Displaying Their Photos?

Nov 13, 2010

I'd like to build a gallery of photos which has selected thumbnail on each of them before displaying their photos.

Ex: photo.xml

Code:
<gallery>
<photo id="1">
<thumb>pics/thumbnail/img_001.jpg</thumb>

[code]....

View 9 Replies

Thumbnail Photos Are Too Big?

Jul 16, 2009

I am working on a flash photogallery. It is pretty basic, just consists of thumbnails. The larger images are on another page all together. I didn't write this script myself, I'm still learning. So i grabbed a flashmo file. It is flashmo_067.Anyways, i changed some things around. I made the images scroll with the mouse and i took out alot of the extra stuff in the gallery. I also changed the document size and the thumbnail size.I created thumbnails to the exact size i made the holder in the flash file. Yet when i pull up the movie, the images are doubled in size and are overlapping. I have looked at the actionscript a bunch of times and still cant figure it out. I changed the size of the thumbnail to be smaller but it just blows it up and makes it very pixelated. I cant seem to figure it out.

View 5 Replies

ActionScript 2.0 :: Linking Photos From 3D Carousel

Jul 16, 2009

I am creating a 3D carousel and I need to link each object to a different URL or URI. I am using ActionsScript 2.0 and loading an XML file for images and the urls. I just need to figure out how I can script the function released for this to work.

Code:
import mx.utils.Delegate;
var numOfItems:Number;
var radiusX:Number = 300;
var radiusY:Number = 75;
var centerX:Number = Stage.width / 2;
[Code] .....

View 0 Replies

ActionScript 2.0 :: Flash 8 - Linking URL To Thumbnail When Clicked

Mar 24, 2009

I want to add an OnRelease get URL to each thumbnail. The flash gets the URL from the XML file. How to link a URL to each thumbnail when clicked? This is an example that I've been following, but I also need to get the URL from the XML file and open it in a new window when the thumbnail is click: [URL]. Any ideas to adding actionscript or code to the existing flash and xml files?

View 5 Replies

ActionScript 2.0 :: Thumbnail Loop - Middle Thumbnail Represents The Photo In Target_mc?

Nov 28, 2007

I have made a image-viewer. I've this AS for the viewer:

Code:
import mx.transitions.Tween;
import mx.transitions.easing.*;
function loadXML(loaded) {[code].....

Now i would like to make a loop for the thumbnails so they don't have a beginning or end(Now when i scroll to the right the thumbnails stop at the last thumbnail, i want it to begin at the first thumb again).I'm also trying to make that the middle thumbnail represents the photo in target_mc.

View 1 Replies

ActionScript 2.0 :: OnRelease - Cannot Scroll Thumbnail Until Roll Off The Click Thumbnail

Jul 10, 2007

I am making a gallery, which you can view here:[URL]ok, firstly, when you click a thumbnail, you cannot scroll them until you roll off the click thumbnail, and I'm not sure why. is it just a movieclip thing? or can I put some code in to re-get focus of something? ok, now for the two general questions:

1. When you roll over the thumbs, they go up, sometimes they flick back down though, even though you are rolled over them still. is this just because they are moving?

2. Does anyone know why when I add this:

[Code]...

View 1 Replies

ActionScript 1/2 :: Xml Thumbnail + OnRelease Function On Each Thumbnail?

Oct 11, 2009

Im trying to create via xml and a for() loop a thumbnails wiewer and each thumbnail have a simple onrelease function.....but my probleme is that my 'container' movieClip and 'BT' movieClip dont show when I export the movie...also when i trace()them the output is empty. maybe is because they are inside  x.onLoad(xml){} function ? At the end of the script you can remove // before the trace() function for ckecking in the output panel. here is my code:

xml file: TumbLoader.xml
<?xml version="1.0" encoding="ISO-8859-1"?><slideshow><photos thumbnail="thumbnail/1.jpg" /><photos thumbnail="thumbnail/2.jpg" /><photos thumbnail="thumbnail/3.jpg" /><photos[code]...

View 8 Replies

ActionScript 1/2 :: Absolute Linking Of .as Instead Of Relatively Linking?

Jul 28, 2009

the project im working on is all database driven, there are no html files and all coding that is created is made by php then stored within a db to be called later on. now because of this i can't use relative links at all with anything i.e. images, videos and swf files.
 
so.....i am using swfobject to link to a swf file using absolute linking as shown in the coding below. but what i need to do now is link an .as file in my swf using absolute linking so i can call some arrays from the file.i have doubled checked to make sure my vars can be passed by local testing and it works but now i need it as absolute....is this possible?

View 16 Replies

ActionScript 2.0 :: To Thumbnail, Or Not To Thumbnail ?

Jul 5, 2007

Yes, I'm making a photo gallery like everyone else. I'm making it so people can order pics from the site. There are going to be about 500 photos per album in 5 different categories. The photos can be shrunk down to about 60kb a piece. If I use the actual pictures as thumbnails, just scaled down, the total size of all the pics will be about 30mb. I know this is a lot.

Either way, the people looking at the album will most likely look at nearly all the pics so they will be using up bandwidth either way. Plus, if I use the actual pics as thumbs the user will not have to wait to see actual pic when it's clicked on because it's already loaded. A preloader is annoying to me. I do realize a preloader would be wise when loading the thumbs. Just dislike them after you click one for the big picture.

So is using shrunken thumbs a necessity or if the big pic is under a certain size it shouldn't matter if I use it for a thumb also?

View 1 Replies

Photos Are Moving Too Fast?

May 12, 2009

I have an scrolling number of photos moving from left to right controlled by:

[Code]...

View 1 Replies

Addressing External Photos?

Nov 18, 2009

I've been modifying some code I wrote a while ago that simply loads and plays an external FLV.  The original code works well as I can simply copy the swf into any folder and when run, it will play the FLV with the given name in that particular folder.
 
I decided to have a photo still over of the movie before it plays, so I modified the script and 'loader' to put in the external Jpg.  If I test the swf it works fine.  But when I install the code from a sub folder into a webpage via 'object', the Flash file trues to find the photo in the webpage folder not the sub folder where the swf originates and where both the FLV and jpg are??    Both the FLVplayback and Jpg loader address in the same way in 'parameters' of properties, yet the FLV plays and the jpg won't.  I only discovered what exactly was happening on a hunch and copied a different photo into the main web page folder with the same name.
 
I have also rewritten it a completely different way using movieloader, but got exactly the same results.  I know I could put the full web address of the jpg into the parameters, but then I have to modify it every time I use it.  I'd really like to be to simply copy it into another folder.

View 3 Replies

Professional :: Get Photos Fading In And Out?

Jan 12, 2010

I want to create a swf of 5 photos that fade into each other. For example, black background, first photo fades up from alpha 0 to alpha 100 in one second, stays on screen for 4 seconds, then fades back to alpha 0 while the next photo fades up, etc, then the 5th photo fades back into the 1st photo and it loops.

What's the best, easiest way to accomplish this with cs4?

Also, if the jpgs are 980 x650 pixels and approx. 70 kb apiece, will I need a preloader if I'm going to use the swf as a header to my site?  If so, is there a simple, plug n play preloader I can use?

View 3 Replies

ActionScript 1/2 :: Loading Photos In Swf

Mar 25, 2011

i tring to make a sub domain presentation xml web.i am using a templats it working and loading fine offline on my pc put after. i upload to my hosting the main php page open and load the swf without any picture or links??[code]

View 4 Replies

ActionScript 3.0 :: Panorama 360 + Photos From Xml?

Dec 13, 2010

I have trouble with my animatnion. I have panorama 360 and xml with photos. I want to connect panorama where are buttons which show after click the photos from xml, but I have some troubles with code... When i try to compile my flash I have some errors in output;/

this is my code

Code:
///pamorama
function mysz(e:Event):void
{
pano_mc.x += (-(mouseX)+260)/10;

[code]...

View 1 Replies

Enlarge Photos From Screenshot?

Dec 25, 2009

I'm building my first website in Flash, and it's a porfolio website. I'm trying to set up my portfolio page to show screenshots of my graphic design projects, and when a user clicks on them, it enlarges the photo.

I am looking for it to be done like this website below when you click on their photo samples, it enlarges it, where you can also go to the next photo.

View 1 Replies

Vertical Continuous Scrolling Photos

Sep 5, 2009

I have about 27 photos. They are all 250x188. I would like the work space to be 250x564 so that 3 photos display first and they keep scrolling from the bottom to the top continuously through all the photos and repeat. Could someone recommend the best way to do this in Flash CS4. I am totally new to this.

View 9 Replies

Make An Animation To Display Quite A Few Photos?

Mar 14, 2010

I haven't used Flash in quite a while and wanted to make an animation to display quite a few photos. As i'm out of practice, linking videos kind of skipped my mind and therefore my first file which has lots of images in has become quite heavy and slow to run.My problem is... Is there a quick and easy way i can directly switch one part of an animation with another, keeping all the tweens and actions that are on it? (EG I want to switch out images for the same images saved as smaller files)

Or, is there a way i can scale down the movie in size to make it run smoother? I am going to have quite a lot of photos in a series of linked videos, but as i forgot about it, my first video has too much content and is too big in file size. It can be quite big as it's only for use on my mac (not online) but i still need it smaller as it won't run smoothly.

View 1 Replies

ActionScript 3.0 :: Displaying Photos From A XML File?

Aug 26, 2008

have to build an app that shows a bunch of photos (listed in an XML file) based upon certain criteria in the XML data. First view will show ALL the photos, and then the user will whittle down the choices/photos based upon criteria they select via check boxes.

how to pull the XML data into the application. I'll have to build a listener for the check box component(s), which shouldn't be difficult. The onClick event would then have to search through the XML/array and show only the user-selected data. It would be good also if the pictures were actually pulled from the server's hard drive rather than having them stored in the Flash file. That would allow the site's owner to easily add images by simply copying them to the server and adding data to the XML. Is that do-able, and if so, can anyone put me on the right path (theorhetically) to developing it?

I have at this pre-planning stage is this: ALL the pix are certainly not going to fit on the stage at one time. I am going to have to have a finite number of pix, say six, visible on the stage, and then allow the user to filter through the as-yet-unseen images by clicking on a number (Page 2 of 7), or something along those lines.

View 2 Replies

ActionScript 3.0 :: Reflections Of Photos - DeltaTransformPoint

Mar 10, 2010

I'm attempting to create what will look like reflections of photos (MovieClips) on a Flash screen (CS4) using AS3, and recently became hip to the Transform Matrix class. I'm understanding the process of applying the transform.matrix OK and everything is going well, EXCEPT one thing... I think I need to learn more about using "deltaTransformPoint()" to counter the effects of skewing and flipping with a matrix. However, I've been searching but can't find documentation anywhere. Is it no longer supported in AS3? So far, I've been able make it look OK by tweaking the X & Y location(s), but this seems inefficient.

View 4 Replies

ActionScript 3.0 :: Load Photos From Internal XML?

Dec 11, 2010

I have this photo gallery I'm trying to make using internal XML, but I'm having a lot of issues getting it to work.

Here is a snippet of my code:

//var fm_tween:Tween;
var total:Number;
var photos_xml:XML = <thumbnails>

[Code].....

View 28 Replies

ActionScript 3.0 :: Positioning/Layouting Photos?

Oct 24, 2011

We have a flash application that developed using Adobe Flash CS5 - AS3 that will display an article with photo, however, the article has a particular layout to have a "float left" effect of the photo and articles should wrap around it and adjust. I do NOT know how to this on flash but what I did is just to create two dynamic text and do the layout but sometimes since this is a dynamic content feed, the article body doesn't look good at all since I am only doing substring on the whole content and display just to cater the layout.

View 20 Replies

Make Animation With Photos Using Flash?

Jul 8, 2009

i want to know how i can make animation with photos using flash?

photos going up and going down, somethig like that.

View 1 Replies

Actionscript 3 :: How To Create Pagination Photos

Jan 20, 2011

I'd like to integrate a pagination in photo gallery project.Ex: << previous 1 2 3 next >>Let's say I have 13 photos and want to display on each page first 6 photos. So in total, I must have 3 pages of 6 photos each and each page number is clickable to display the maximum of 6 photos...How would I proceed the right method?Here's what I though:

var totalPhotos:uint;
var maxNumberThumbPerPage:uint = 6;
var totalPage:uint;

[code]......

View 1 Replies

Upload Multiple Photos Like Facebook?

Feb 26, 2011

Anyone know what tool does facebook use for uploading multiple photos? It is so neat!

It look like they are using flash uploader? If so, which one out there has similar to that?

View 2 Replies

ActionScript 3.0 :: Loading Some Photos Using An XML Into A Container

Feb 16, 2009

I'm trying to design a scrolling panel following one of the tutorials. I'm loading some photos using an XML into a container and I want this container to be reactive to mouseX. I can't get this movement all the smooth that I want. The images sometimes vibrate.[code]

View 0 Replies

ActionScript 2.0 :: Merge The Photos On The Slideshow?

Aug 24, 2005

I keep battling the slideshow, and now I have some other doubts. I tried to find the answer to this on other threads on this forum, but couldnïż½t find anything. So, here it goes:I now have a photo slideshow where one photo fades out, and the next one follows, fading in.Between the fade out and fade in, there is a short interval of white, the background of the flash animation. I have to replace this white interval, with the fadeout of the previous image, so that the first and the next image sort of merge. How can I do this?lso, on the very last image of the presentation, there is a jump back to the first image, without the fadeout. How can the loop be made so that the last image fades out too, and not simply disappear?Here is the code Im using right now:

PHP Code:
delay = 3000; //-----------------------function loadXML(loaded) (loaded) xmlNode = this.firstChild; image = [];

[code].....

View 4 Replies

ActionScript 2.0 :: Get Smooth Animation For Photos?

Mar 13, 2007

I am trying to animate some jpgs that have been loaded inside a movie clip. i just want them to move horizontally. I have tried using tweens and also the onEnterFrame method with different frame rates but the animation is always juddery and not smooth.

View 6 Replies

ActionScript 2.0 :: How To Change Caption On Photos

Mar 21, 2008

how to get a scrolling thumbnail photo gallery to work with an imbedded bonus array. What I can't figure out is how to change the caption on the photos so that when I click on the bonus thumbnails (b2, b3, b4, etc) the text/caption changes on the website.I can upload the flash file if anyone is interested in helping. [code]

View 14 Replies

IDE :: XML - Allow Client To Add / Remove Photos In Slideshow

Feb 2, 2009

I am building a simple photo slideshow and I need to create a way for the client to remove and add photos to it (w/o opening and editing the .fla). Can this be done with XML? Where I use a small line of script to call a series of photos according to the numbers appended to the photo file names.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved