ActionScript 2.0 :: Adding A Link To A Xml Loaded Image
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
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
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
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
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 21, 2010
I have a MovieClip, and inside of that is a Loader that loads an image. I have an INIT event listener, which fires a function like this:
Code:
private function BoxartLoaded(event:Event):void {
(event.target).parent.addChild(event.target.content);
}
I assumed that would add the image to the Loader's parent MovieClip once loaded, but it tells me that "parent" isn't valid.
What's the proper method for adding a child to a Loader's parent?
View 1 Replies
May 20, 2011
I have a Movie Clip object with a timeline, and it has 3 layers: a layer to stop the timeline at the last frame, a layer with regular drawing with mask attribute and a layer containing a target movieclip with the instance named 'target', that is masked by the layer above.
The drawing is very simple, not even a movieclip, just vector drawing. It's supposed to show the target movieclip only on regions where the mask layer has some drawing, right?
So, I created the method to load an image, listen to the complete loaded event and add the image to the target masked movieclip, but it disappears after the first frame! If i delete the layer with the mask drawing, works fine.
Here's a smaller version of the code.
package
{
import flash.display.*
import flash.events.Event;
[Code].....
View 3 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
Jan 11, 2009
I am trying to modify a template that I have:There are 6 menu buttons on the top, they have rollover animation effects, as well as animation click effects. It did not come scripted with the action of which page to load when you click on them. The way the template was written, it uses the same script for all the buttons. What should I stick into cause it to load different webpages, (index, index1, etc..) based on which menu button it is over the current script for the buttons are as follows:This is on a sprite, not a button object.There are multiple menu buttons of the same sprite. (each one just changes the num = ___) For Example:
PHP Code:
onClipEvent (load){num = 2;}
And I believe they refer to the following sprite:
PHP Code:
on (rollOver){if (_root.link != _parent.num) _parent.gotoAndPlay("s1");
} // end if}on
[code].....
View 2 Replies
Sep 13, 2011
I have three links
Link1, Link 3, and Link 4
The current code I am using is
import flash.net.navigateToURL;
import flash.net.URLRequest;
var link_four:link4;
[code]....
View 1 Replies
Dec 30, 2008
I am using the following action script with a movie clip.But the link is opening in a new window or browser tab. Iwant it to open in the same window or browser tab as the flashinsert is on. What do I need to do?
View 2 Replies
Nov 11, 2009
I've been looking all over for how to create a bookmarking link for IE7 using Flash CS4 Action Script 3.
I'm creating the button using the following code:
BookMark_mc.addEventListener(MouseEvent.CLICK,gotoBookMark_mc);
function gotoBookMark_mc(event:MouseEvent):void
{
URLLoader ("javascript:window.external.AddFavorite ('http://www.actionscript.org
[Code].....
I published the SWF and the Index.html file, then accessed that .html file from my web server, but no luck.
View 3 Replies
Dec 9, 2009
Anyone know a good place to start to learn how to add download links to ur flash page?
View 1 Replies
Jan 11, 2009
I am trying to modify a template that I have: There are 6 menu buttons on the top, they have rollover animation effects, as well as animation click effects. It did not come scripted with the action of which page to load when you click on them. The way the template was written, it uses the same script for all the buttons. What should I stick into cause it to load different webpage(index, index1, etc..) based on which menu button it is over the current script for the buttons are as follows:This is on a sprite, not a button object.There are multiple menu buttons of the same sprite. (each one just changes the num = ___) For Example:
ActionScript Code:
onClipEvent (load)[code]..........
View 1 Replies
Jul 24, 2009
I have the following JavaScript code which I need to call from my Flash Navigation:
Code:
function updateWith(a){
var url = a+'.html';
var pars = '';
var myAjax = new Ajax.Updater(
[code]....
View 1 Replies
Sep 20, 2006
im already read almost of the tutorial in how to create a XML Photogallery but it seems i cant find solution to my problem on "how to put a link on the thumbnail?" im creating a different style of gallery.. i only put the scrolling thumbnail area in my index page like a image scroller via XML. im new to XML thats why i cant still figure out how to put the link and pull it in the AS when the certain image is click..
View 3 Replies
May 21, 2009
I have this xml file that looks like this:
[Code]...
and id like to add a text link like this to each "entry name":
Code:
<link href="Title1.html" text="Title1" />
Note: Each "entry name" currently becomes a link in itself when displayed. I need the new link to be a separate link. And this is the xml code in the actionscript:
[Code]...
View 5 Replies
Sep 13, 2011
I cannot get my buttons to link in flash site, i have tried many different codes and none had worked. I have three links Link1, Link 3, and Link 4
The current code I am using is
import flash.net.navigateToURL;
import flash.net.URLRequest;
var link_four:link4;
link_four = new link4();
stage.addChild(link_four);
[Code].....
View 1 Replies
Oct 5, 2009
I have a 3D carousel that's displaying some web pages. When they're clicked on they come forward and there's a paragraph of text displaying some info (that's pulled from the .xml).I would like to have a link after the paragraph to the web page that it's displaying that says something like "Launch" or "Click Here to View Site"So can I add that link into my .xml document?
View 6 Replies
Apr 8, 2009
i have followed a tutorial to build a flash craousel and have had no problems in building that. i wanted to add a html link to a section of the carousel but everything i have tried up to now has failed. All the information is passed through to the carousel from an xml file and everything works fine except for the link.
i have slightly modified the tutorial so i have an extra box on the information page which holds the web address for the site they are looking at in the portfolio. i have the address showing up but i cannot use the text as a link. the box that i am putting it in is a dynamic text box which has been set up with the following settings
[Code]...
View 4 Replies
Nov 10, 2009
I'm new to xml and flash and have worked through the following tutorial:I now want to add a link so for example I want <name>Thomas Edison</name> the name to be the link how do I do this. I've looked at links which give solutions like <name><a href="item/01.html"> Thomas Edison </a></name> but none of this has worked.
View 1 Replies
Jan 5, 2011
I have created a basic animation in Flash CS5 and I need to add a clickable URL link to it. I've tried a few tutorials that looked promising, but none of them solved my problem. I've tried a number of things including converting parts or all of the images to simple buttons or movies and linking them that way as well as typing in code for ActionScript 2 and 3, none of which were successful. The animation plays correctly when viewed in my browser, but when I click on it, the link does not work. I would prefer that the entire banner be clickable to take viewers to the linked website rather than using hyperlinked text. Also, when I open the Code Snippets window, it is empty, no matter what image or frame I've selected. Do I need to import code snippets from somewhere or am I simply going about things the wrong way?
View 4 Replies
Feb 24, 2010
How do I make a link on a button which is in a Flash movie clip?
View 1 Replies
Oct 27, 2008
I am using the Carousel application as designed in the 3 part tutorial. My question that i can't find an answer to online is how to add a URL link in the description text that shows when an icon is clicked.
View 3 Replies
Feb 4, 2009
I absolutely love the carousel however in the item description I would like to have html links. I have tried the following:
FLASH:
theText.html = true; <<< i added this to the main AS code
import mx.utils.Delegate; ETC.....
XML:
<icon image="icon1.png" tooltip="LimeWire" content="LimeWire is a peer-to-peer file sharing client for the Gnutella network. It is free software released under the GNU General Public License. Limewire was the first file sharing program Java installed
<a href="[URL]">orchard</a>."/>
I also just added the standard html link into the xml. However all that loads is the background content, the main carousel refuses to load.
View 1 Replies
Jan 3, 2007
Here is the situation: I have an XML document which I rip through using a for Loop, and I place the data into an array. From there I tell the data where to go. I have an attribute in my XML called 'link' which contains a URL, now I want to spit that out into a separate textbox and have it also link to the given URL. I have the URL stored in the array just fine, and I can even spit the URL into the textfield, my only question is how to make it link instead of just being normal text?
I hope I explained this well, but the basic gist of it is I have everything working except for adding the hyperlink.
View 2 Replies
Sep 30, 2011
I've created a video in Premiere Pro, and I'd like to add hyperlinks to a couple of words that I added as Titles in Premiere Pro (I'm asking on this forum because I saw a similar question referred this way).In order to add functional hyperlinks, I created a couple of swfs in the Flash CS4 IDE which would serve as invisible buttons (though used movieclips) that link to the respective websites via NavigateToURL. After checking to make sure things were working with the swfs, I dragged them into my premiere pro project panel and added them to the timeline to coincide with when I needed the links to be available.I then exported the flv from Premiere Pro with Adobe Media encoder.
The flash site I'm building uses the Gaia framework, so I added the flv file as an asset to one of my Gaia pages, and everything loads up normally - the video plays and I can see the highlighted areas I'd created to serve as clickable links. The links within the video, however, don't work, and I wasn't sure if this was a Gaia issue or if there's some other step (or steps) I need to take to make this work.(If there's a different way to get working, clickable links into a Premiere Pro video, I'm open to that as well).
View 6 Replies
Jun 25, 2008
I am making a site for a client. They want to be able to upload videos and also have the viewer be able to download the video. But...they want to be able to add the videos / files to download themselves. I was going to use an xml video player component, so I figure it will be fairly easy for the client to add or take away videos. But I'm not sure how to set it up so that the client can add a link that will automatically download a file?
View 10 Replies