ActionScript 2.0 :: Link Xml Loaded Image To Url
Mar 22, 2010
I need some help with the actionscript 2, needed to link my xml loaded image to url. This is what I have in my xml file, for the image I need to link to a url:
<image imageUrl="_sustainable_small_1.jpg" />
I am not sure how to add the link tag, in the xml, correctly. Also, I do not know the AS needed, for the .fla file.
View 9 Replies
Similar Posts:
Apr 21, 2009
I've got a xml gallery. Now I want to add a link to a image but I don't know how to do this.This is my code:
portfolioInfo = new XML();
portfolioInfo.ignoreWhite = true;
timeline = this;
[code].....
View 3 Replies
Aug 12, 2006
I've got a xml gallery. Now I want to add a link to a image but I don't know how to do this. This is my code:
portfolioInfo = new XML();
portfolioInfo.ignoreWhite = true;
timeline = this;
[Code]...
View 2 Replies
Jun 26, 2010
I've created a site for a friend www.tracelements.co.nz and had fun doing it. (its basic but it works and I'm still working on it - her cosmetic site design though) the image gallery is based on the Kirupa xml thumbnail gallery, how to tweak the code to change how it looks. it's great, but intimidating to dive in surrounded by such flash genius.
there may be a simple D'oh! answer that escaped me - but here 'tis
on the 'commission a work' page of the I've successfully used
<a href="asfunction:gotoAndPlay,62">contact me</a>
in the XML text, to target frame 62 where the animated closing swf transition plays to the end frame which loads the 'contact' .swf
THE Question - Is there a way to create a similar link where you click the large image in the gallery to link in the same way?
I have tried various permentations of the above in the <link></link> part of the gallery XML without a clue really, i'm trying hard to 'get' how xml works, (reading everything that 'explains' xml), but when I think I have a handle on it and try something, I often get puzzled on why they don't work out.
the relevant gallery AS is
[Code].....
The 'picture' MC registers as clickable but I haven't a clue what to do next to 'make it see' the XML link (which is probably wrong at the moment anyway)
View 2 Replies
Nov 10, 2009
I have a gallery made and the images are loaded using xml. The images are links to larger images, but the problem is, the larger image opens in the same window. Here's the code that calls the images and makes them links:
ActionScript Code:
function callImages() {
_root.myImages_mc = _root.myGallery_mc.createEmptyMovieClip("myImages_mc", _root.myGallery_mc.getNextHighestDepth());
[Code]....
View 2 Replies
Feb 13, 2006
I've been trying to figure out a way to assign a link ID to a loaded image so that I can then attach that clip to various other nested movieclips.
If I load the image into an empty movieclip on the stage that already has a link ID in the library and then try to attach that movieclip to another one using its link ID, it will attach the empty clip from the library and not the one on the stage with my loaded image in it.
This problem has come up from wanting to preload images (using a loading array) but then wanting to attach these images to dynamically generated clips later on, that are nested deep within my movie.
I know that i could load in swfs (with link IDs) instead of jpegs, but I need updates to the site to simply require images added to a folder, rather than a whole lot of swfs with Link IDs created.
View 1 Replies
Dec 17, 2009
I am literally at the end of my wick with this one! Here's the skinny, so to speak:
home.swf
products.swf
button line mc
[code]........
View 3 Replies
Dec 13, 2007
Some images I load dynamically are too big so I would like to scale them to fit the stage.
[Code]...
this returns 0. Why does it return 0 when the image loaded is obviously much larger then 0 pixels. How do I change the width and height of imgCont to a specified dimension.
View 1 Replies
Jul 28, 2011
I have my main swf (swf1), that loads another swf(swf2). At some point, swf2 loads an external image. What's the best way for swf1 to align the loaded image from swf2??
View 2 Replies
Feb 27, 2009
I am loading a SWF into a placeHolder. I dont have the FLA for the loaded swf, but need to place a link in it.
View 8 Replies
Jul 2, 2009
Im making a website and in frame 1 on the main timeline I have mouse down code for a button in a movie clip not yet on the stage (it appears when a mouse_over event is triggered).[code]How do I create links for menus that arent yet being shown on the stage?
View 1 Replies
Dec 7, 2003
I've loaded an external swf file that containes two links, to another swf file using loadMovie (); I want to add link from the file we've loaded from the container swf file. Is it possible.
You can say that first make the links itself in the file we've externally loaded. But i want to know whether my requeirement is possible in not. Another think is what is the use of third optional argument in the loadMovie (url, target, method);
View 1 Replies
Aug 4, 2004
Does anyone know if it's possible to make a url link within text dynamically loaded from a .txt file into a blank dynamic text box?
View 1 Replies
Oct 2, 2009
How should I go about cloning an image loaded form the server and adding it to the end of the first image loaded? Would I use bitmap clone? My attempts with this failed[URL]
Code:
//Creates new image loader
var imageLoader:Loader;
[code].....
View 1 Replies
Dec 4, 2009
How to remove/disable link from loaded swf content? In flex I have an image component, which loads swf through "source". This loaded swf contains "clickable" links. I want to this loaded swf a simple image behave.
View 1 Replies
Dec 4, 2009
How to remove/disable link from loaded swf content? In flex I have an image component, which loads swf through "source". This loaded swf contains "clickable" links. I want to this loaded swf a simple image behave.
View 1 Replies
Apr 10, 2007
I am in the process of making the flash news file. in which im calling the text from external xml file
there are max 4 news which are going to display one under other. also there will be a link to all these items
View 1 Replies
Apr 14, 2010
I am trying to add a link to an image using ActionScript. I do not see the link no matter what. [code]...
View 1 Replies
Apr 21, 2009
I managed to load in an external swf file okay however, I need to be able to remove it when the user clicks a link to go back to the homepage. Below is my code:
Code: Select allstop();
var imageRequest:URLRequest = new URLRequest("gallery.swf");
var imageLoader:Loader = new Loader();
imageLoader.load(imageRequest);
addChild(imageLoader);
home_link_btn.addEventListener(MouseEvent.CLICK, homeLink);
[Code] .....
I assumed it was as simple as removing the child but it still remains. I get no compile errors or anything.
View 2 Replies
Dec 4, 2009
How to remove/disable link from loaded swf content? In flex I have an image component, which loads swf through "source". This loaded swf contains "clickable" links. I want to this loaded swf a simple image behave.
View 2 Replies
Feb 29, 2012
want to get the loaded image path location,how to get the path
<mx:Image source="@Embed('assets/image001.png')" x="240" y="41" width="148" height="118" id="img"/>
i need to get this address source="@Embed('assets/image001.png')" how?
View 1 Replies
Mar 8, 2011
I guess its probably a simple thing to do - but is there anyway to use flash simply as a link image? I have a link animation I would like to use after each url link, I have setup the code as but when clicking the flash file nothing happens, only when clicking the link text. I guess I need to turn off the interaction via a param, but cant find which to use.
View 1 Replies
Jan 21, 2009
How to put a link in a image in Flash CS4?
View 3 Replies
Jul 25, 2009
I have a pretty large which was coded using AS2 in about 2006 so I'm trying to make a few changes using AS2 which I'm pretty rusty on. I have a swf which loads an xml file into a textarea in flash and it all works well. I have to link some images which appear in the xml file but those images have to be links to external sites and that is where I am running into problems with my asfunction. Here is the code.
[Code]...
View 14 Replies
May 31, 2010
I have a template and I need to replace the images, and then to add the big size image and to make a link between them.
View 1 Replies
Nov 10, 2010
I recently bought this template: [URL] but I have a big problem. I want to add a hyperlink over the big images which appears when you click on bedrooms for example. There are 9 small images in the right side and 1 big image on the left. I changed all the images but I want also to add hyperlinks on some big images. The action script import an xml file like: <?xml version="1.0" encoding="iso-8859-1"?><root>
[Code]...
View 3 Replies
Nov 13, 2011
I'd like to call up a scene when an image is pressed. I understand, I think, where the image is located on xml and the fla/actionscript. Here are the corresponding parts
xml:
<image imageUrl="_pic16.png" link="asfunction:link"/>
actionscript:
[code].....
View 1 Replies
Dec 15, 2009
My Problem is that I Cannot Link an image in the clip. Here are my codes:
ActionScript Code:
SlideShow_mc.slides_mc["holder"].loadMovie(this["imageuri"], SlideShow_mc.slides_mc.getNextHighestDepth());
These are the error messages:
TypeError: Error #1010: A term is undefined and has no properties.
at SlideShows_fla::MainTimeline/SlideShows_fla::frame1()
View 6 Replies
Jan 23, 2010
Well yeah, I thought so as well. I mean I know the 'formula' by heart on how to add the link to an image (make it into a button, blah blah blah)
But for some reason when I do that, it doesn't work.
I want to add 5 links (lets say google.com) to the 5 images that are in a slider.
For some reason it gives me like... oh man.. so many errors
Here is the link, its about 500kbs, the link is located at the BOTTOM, RIGHT, CORNER: [URL]
View 9 Replies
Apr 21, 2010
I downloaded a flash template which uses XML and CDATA to get its content. It has "Main" pages and from those you can click a read more link and go to "Read More" pages. I would like to be able to add an image to the "Read More" pages.(I'm annoyed the author didn't include a sample image in these "Read More" sections so I could just replace the image file instead of trying to figure out the right code to add! But I'm sure there's a way.)In my .fla file, the "Main" pages are frames 2-7 and the "Read More" page is frame 8 within the movie clip "pages2_1". The Actionscript for images on the "Main" pages looks like this:[code]
View 9 Replies