ActionScript 2.0 :: XML - Load Dynamically Specified Photo Galleries?
Feb 14, 2006
I have just started to learn more about XML in Flash but so far it's all a bit confusing. I have this photo site that I'm working on at the moment and I can't figure out how to load dynamically specified photo galleries. I load in my XML on the first frame of the root timeline with this script:
[Code]...
View 1 Replies
Similar Posts:
Mar 26, 2010
I'm trying to dynamically load in 3 photo galleries into a file. They are all SWF files. When you click the button for the thai gallery, it'll pop up. But if you want to navigate to the alex gallery, the thai gallery is still visible underneath. And the same problem with the 3rd gallery only all 3 are visible at this point. Is there a way to make these not visible? I'm using CS4 with ActionScript 3.0. I've got 3 separate buttons set up for the 3 galleries. Is there a better method? I've tried using the removeChild(); but I don't think I've used it correctly as it throws errors all over the place when trying to use it.
Actionscript Code:
thai_btn.addEventListener(MouseEvent.CLICK, loadImages);
function loadImages(evtObj:MouseEvent):void {
var imageLoader:Loader = new Loader();
addChild(imageLoader);
var url:URLRequest=new URLRequest("thaipix.swf");
[Code] .....
View 2 Replies
Jan 16, 2011
I saw many examples in jquery compenents which takes image urls from HTML DOM. But flash photo galleries always need xml configuration files as i have seen till now. I need flash compenents which doesn't need any configuration settings from server. If it is possible to do that flash can get image urls from DOM or even by javascript. Is there such as flash photo gallery compenents ?
View 1 Replies
Sep 18, 2009
I've created a photo gallery that dynamically loads images into a movieclip entitled 'gallery'. Right now the images are listed in an array. how would I make it so that different arrays could be loaded for different image galleries on the site? For example clicking a certain button would tell the movieclip to load different sections. It would load an array that goes
[Code]...
View 2 Replies
Jul 13, 2006
Right now, I have a successful combo box that loads an external jpg to flash from a folder where I store all my images. However the information that is given about the pictures are all in the flash code. I have an xml document, and I was wondering if there's any way I can load information from the xml file rather than supplying it in the flash code,
this is currently the flash code:
--------------------------------------------------------------------
combo_cb.addItem("0001 The Assasain", 1);
[code].....
View 3 Replies
Apr 21, 2007
I've been trying to add more galleries the Kirupa Photo Gallery but so far unsuccessfull - i've modified things alittle, but it's mostly the same.
Code:
function loadXML(loaded) {
if (loaded) {
image = [];[code].....
This is as far as i can get before i get errors i cant get out by displaying image[i] in gallery[n].at the current time i can only get the number of galleries and display the images in the first gallery - not change between galleries.
View 8 Replies
Apr 13, 2011
I already have a photo gallery running on my website, but I would like to add 4/5 more. The script I am currently using is;
Code:
// USER CONFIG SETTINGS =====
var autoStart:Boolean = false; //true, false
var secondsDelay:Number = 6; // 1-60
[Code]....
I've obviously changed the first and last frame part of the script to suit where I have put my images. And I have also changed the next and prev button to be next1 and prev1, however the rest wont work, i'm guessing I need to change a lot more but I don't know enough about scripting.
View 1 Replies
Nov 23, 2006
I was working yesterday with the galleries from Scotty - http:[url].... - trying to add a dropdown menu for the different galleries, instead of the buttons (I'm talking about the V3 with Thumbnails). My skills are not that good I realized. Do you have any idea on how to achieve this?
What I need is a combobox showing the different galleries i have on my XML file and if the user chooses another gallery, the it loads the new set of pictures and thumbnails.
View 1 Replies
Sep 13, 2007
is there a site where you can download flash galleries for a portfolio.. ?
View 0 Replies
Mar 15, 2009
I need a simple way to use xml and create a multiple gallery inside 3 main galleries so basicly like this: (Everything would be in the same page, list view, when clicking into one it would open it)
GALLERY 1 (Will include numerious galleries)
-Example 1
-Example 2[code]....
Basicly when clicking the link it would hover the pics with a scrolling effect in the flash file (that all should be sorted out)
View 3 Replies
Aug 26, 2011
I'm using an xml menu and have the code in a .as that loads as2 & as3 swfs, but I can't load these externally created image galleries (externally because I created them using another software).I want to load 1 of these galleries into a movieclip when I click a button, and load another one when clicking another button, of course the first one should unload first.The Image galleries I have are: carrera, Col_Imanes, Cons_Base, Cons_Hapas, Cons_Imanes, Gallery, and 1.[code]...
View 4 Replies
Apr 6, 2010
I have a several galleries that I will be loading via several xml files. Gallery1 will load on start and the other galleries will load through buttons using their instance names (i.e. "gallery3" button will load "gallery3.xml"). Currently I have a function + listener (called "home") to initiate gallery1 on start, a function + listener (called "goSection") to initiate the other galleries via button instance name, and a function that loads the gallery (called "fileLoaded") with the listener located in the "home" and "goSection" functions. There is a lot more code in the fileLoaded function that controls the thumbnail and full size images functionality that I am excluding because its probably not necessary for my problem. Im not sure the most efficient way to set this all up so I unload the existing gallery before I load a new gallery. Ive tried to use removeChild and removeEventListener on urlLoader without much success.[code]...
View 1 Replies
Oct 8, 2009
I have a SlideShowPro component on my stage and some buttons I've made which I want to load the different galleries when clicked. I've tried tons of different ways of writing it, but just can't seem to get the code right.
Code:
//ENABLE GALLERY BUTTONS
function albumChange(event.Event, url):void {
my_ssp.xmlFilePath=url;
[Code] .....
View 2 Replies
Sep 25, 2009
I've created a photo gallery that dynamically loads images into a movieclip entitled 'gallery'. Right now the images are listed in an array. is it possible to make an Array of Arrays so that I could load different Arrays for different image galleries? Is this somewhat how it would work? Lets say I were to switch to a section entitled 'landscapes' which we will pretend is the array "var a:Array = new Array();" for now.
ActionScript Code:
var a:Array = new Array(
"a1.jpg",[code]....
View 4 Replies
Sep 2, 2006
I used senoculars xml gallery tutorial (link) to create a gallery but i want to have different galleries so that when i press a button a different set of thumbs load how would i do that ?
View 1 Replies
Aug 26, 2006
I found the tutorial by Kirupa
[Code]...
View 2 Replies
May 8, 2010
I am trying to load different image galleries into a container flash file. Each image gallery will be in a speparate swf that can be loaded/unloaded from the main swf. I get the first gallery to load and function fine, using the following code:
var ldr:Loader = new Loader();addChild(ldr);ldr.alpha = 0ldr.y = 110ldr.contentLoaderInfo.addEventListener(Event.COMPLETE, loaded, false, 0, true);ldr.load(new URLRequest("folio.swf"));
[Code]...
View 25 Replies
Sep 6, 2006
I'm doing a little photo rotation front-end for a site I'm working on. It's a custom photo gallery site that needs to have a photo rotation functionality to it. The back-end developers couldn't find a decent way to do it in Javascript, so they've come to me to figure it out in Flash.They pointed me to the Flickr rotation tool as an example. Seems like it should be straightforward:Load photo into empty movie clip on stageRe-center photo movie clip to the stageUse left/right rotation buttons to rotate image in 90 degree incrementsThat said, I'm having a tough time, after I load a photo into the empty movieclip, using a rotate left and rotate right button to spin the photo around. Obviously, the registration point is in top-left corner of the photo movieclip when the photo is loaded.
I've read that rotation can be managed by putting the clip to be rotated into an outer clip, but...there's a catch......I won't ever know what the exact size of the photo being loaded is going to be, so I can't set the outer clip to a certain size. I only know that it will never be wider than 100px.
View 3 Replies
Oct 20, 2010
i'm adding external photo from pc with this code;
[Code]...
But it doesn't works. How can i fix this problem.
View 2 Replies
May 8, 2008
I'm trying to make a photo gallery that is dynamically controlled via an xml file.
View 11 Replies
Sep 17, 2008
I'm attempting to use "if" statements to determine if an dynamically loaded photo is portrait or landscape. The problem I'm having is when I try "gallery_mc.getChildAt(0).width", it returns 0.
View 10 Replies
Nov 13, 2009
downloaded an xml photo gallery that is displayed through a swf.
What I want to do is load that external swf into another swf - but everytime I do it gives me a #1009 error. I know my code works - because it loads regular swfs, and I know I have the address right, because I direct it to an exact url location.
View 0 Replies
May 29, 2009
I have (say) 3 photos on my homepage and what I would like to happen is, every time I access the site I would like the photo to be different. What I'm thinking is there must be some way that one can randomly select a photo (perhaps using tweenmax?)
View 1 Replies
Oct 27, 2005
im using some AS that scotty modified from the photo gallery tutorial on this site. it goes like this.
Code:
var absX = 523;
var absY = 320;
this.pathToPics = "";
[Code]...
View 3 Replies
May 8, 2009
i need to load a 360 view photo in my swf file.. im using the following code but i dont know if i need something else as it is not loading at all..
_root.container.loadMovie("terrace-360.mov");
View 8 Replies
Jun 28, 2009
Target: Create wall of 25 photos
I'm creating dynamic objects like this[code]....
View 2 Replies
Nov 22, 2006
I have done a photo gallery using the following code. However, I need the first picture to appear as the movieclip is loaded. What shall I introduce to this script? Or what would I have to change?
myPhoto = new XML();
myPhoto.ignoreWhite = true;
myPhoto.onLoad = function(success) {
//portfolioTag = this.firstChild;
[Code]....
View 3 Replies
Jan 27, 2004
I downloaded the sample file of making slide photos, but I just can't make it run and load pictures automatically and loop itself continuously. How do I do it without have to hit next or previous? And all done with action scripting only without using keyframes? [URL]
View 4 Replies
Mar 2, 2005
I'm new at actionscripting althought not new to flash. I tried creating the photo gallery using the code that is posted here on [URL]. But it doesn't seem to load. I've been using Flash 5, (I'm more comfortable using 5) and I don't know if it makes a difference. But I also tried it on MX and it didn't seem to load with MX either. I don't know if I'm messing up on the dir for the images or what have you, but most of the time I get nothing when I preview it, other times my image frames pops up for a split second. Here's what I've what I've done
[Code].....
View 2 Replies
Apr 13, 2010
Making a photo slideshow to load as an external movie clip on my site when a button is pushed. Here is a link to the .swf file: [URL]. There is text that describes each set of 6 pictures. After the set of 6 pictures plays through the text is supposed to disappear and a new text appears to label the next set of 6 pictures. Problem is: the text doesn't disappear! I made all the text layers a symbol/movie clip. I animated each text to disappear at a certain point in the timeline but when I test the movie the texts just remain there and build up one after the other. When watching the movieclip, pay attention to the text in the lower left screen.
View 2 Replies