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




Dynamic Mc's With Dynamic Links



Ok, I'm making a playlist generator and I'm pulling the info from anxml. I have everything functioning except the links are not working.I've tried numerous things with out a solution found.here is the current code without pulling anything from the link[] array:
Code:
function loadXML(loaded) {if (loaded) {xmlNode = this.firstChild;link = [];cover = [];total = xmlNode.childNodes.length;for (i=0; i<total; i++) {link[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;cover[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;_root.createEmptyMovieClip("covers"+i, i);cover_mc = _root["covers"+i];cover_mc.loadMovie(_root.cover[i]);cover_mc._x = 86*i;cover_mc._y = 0;_root.createEmptyMovieClip("mirror"+i, i+5);mirror_mc = _root["mirror"+i];mirror_mc.loadMovie(_root.cover[i]);mirror_mc._x = 86*i;mirror_mc._y = 168;mirror_mc._yscale = -100;gradient_mc._x = 86*i;gradient_mc._y = 168;gradient_mc.duplicateMovieClip("gradient"+i, i+10);}} else {content = "file not loaded!";}}xmlData = new XML();xmlData.ignoreWhite = true;xmlData.onLoad = loadXML;xmlData.load("playlist.xml");
any help would be appreciated.thanks,saveth



KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 01-22-2006, 07:13 PM


View Complete Forum Thread with Replies

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

Creating Dynamic Links Inside Of Dynamic Menus
hello, I am having a problem adding links dynamically inside of a menu that was created dynamically. Look here to see the movie. All of the menus are created dynamically with a for loop iterating through an array. As each menu is created I want the links to be created also. For this i have used nested for loops. My problem is labeling the link text. Here is all of my code.
code:
stop();

function default_location(){
topX = 10;
topY = 5;
bottomX = 10;
bottomY = 590;
bar._x = topX;
bar._y = topY;
}
default_location();

//number of menus
var numMenus = 6;

var menuTop = new Array();
var locationY = 5;
var locationX = 10;

//define the menu headings
var top0 = "New Home Buyer Program";
var top1 = "Franchise Opportunities";
var top2 = "Broker/Realtor Program";
var top3 = "Mortgage Broker Program";
var top4 = "Home Builder Program";
var top5 = "Company Info";

var menu0 = new Array();
//New Home Buyer Program Menu Items
menu0[0] = ["Get the Home of Your Choice Now", "www.nhba.com"];
menu0[1] = ["The NHBA Application Process", "www.nhba.com"];
menu0[2] = ["Find an Office", "www.nhba.com"];
menu0[3] = ["Complete an Application", "www.nhba.com"];
menu0[4] = ["Check the Status of Your Application", "www.nhba.com"];
menu0[5] = ["Available Property Specials", "www.nhba.com"];

//Franchise Opportunity Menu Items
var menu1 = new Array();
menu1[0] = ["The NHBA Franchise Experience", "www.nhba.com"];
menu1[1] = ["NHBA for the Franchisee", "www.nhba.com"];
menu1[2] = ["Exclusive Tools and Technology", "www.nhba.com"];
menu1[3] = ["FAQ's/Resources", "www.nhba.com"];
menu1[4] = ["Franchise Facts", "www.nhba.com"];
menu1[5] = ["Discovery Days Registration", "www.nhba.com"];
menu1[6] = ["Franchise Testamonials", "www.nhba.com"];
menu1[7] = ["Apply to be a Franchsie", "www.nhba.com"];

//Broker/Realtor Program Menu Items
var menu2 = new Array();
menu2[0] = ["What Brokers & Realtors Need to Know", "www.nhba.com"];
menu2[1] = ["NHBA for the Realtor", "www.nhba.com"];
menu2[2] = ["Request Information", "www.nhba.com"];

//Mortgage Broker Program Menu Items
var menu3 = new Array();
menu3[0] = ["What Mortgage Brokers Need to Know", "www.nhba.com"];
menu3[1] = ["NHBA for the Mortgage Broker", "www.nhba.com"];
menu3[2] = ["Request Information", "www.nhba.com"];

//Home Builder Program Menu Items
var menu4 = new Array();
menu4[0] = ["What Homebuilders Need to Know", "www.nhba.com"];
menu4[1] = ["How Lease-to-Own Works for You", "www.nhba.com"];
menu4[2] = ["Request Information", "www.nhba.com"];

//NHBA Company Info Menu Items
var menu5 = new Array();
menu5[0] = ["Company Overview", "www.nhba.com"];
menu5[1] = ["Contact Us", "www.nhba.com"];
menu5[2] = ["Management Team", "www.nhba.com"];
menu5[3] = ["Corporate Media Kit", "www.nhba.com"];
menu5[4] = ["What People are Saying", "www.nhba.com"];
menu5[5] = ["Pride in Partnership", "www.nhba.com"];
menu5[6] = ["Privacy & Security Policies", "www.nhba.com"];
menu5[7] = ["Site Map", "www.nhba.com"];


var numMenusLeft = numMenus;

//Create the Menus
for(i=0; i < numMenus; i++){
bar.duplicateMovieClip("bar"+(i), i+1);

_root["bar"+(i)]._y = locationY; //sets the initial location

locationBottom = bottomY - (28*numMenusLeft);//sets the bottom location

menuTop[i] = [locationY,locationBottom,_root["top"+(i)]];//assigns the menuTop array with the instance info
_root["bar"+(i)].menuName_txt = menuTop[i][2];
_root["bar"+(i)].name = "bar"+(i);

_root["bar"+(i)].id = i; //assigned id as array index (id = 0, 1, 2....)
_root["bar"+(i)].up = true;

locationY += 28; //increment locations for next menu
numMenusLeft-=1;
var len = _root["menu"+(i)].length;
//trace(len);
var linkY = 45;
var obj = new Array();

x = i;
for (j=0; j<len; j++){
//THIS IS THE PART THAT IS NOT WORKING
obj[j] = _root["bar"+(i)].link.duplicateMovieClip("link"+(j), j);

//_root["bar"+(i)].createEmptyMovieClip("mc"+j, j);
//["mc"+(j)].createTextField("txt", j, 0, linkY, 130, 40);

trace(obj[j]);
//IT DOESNT ASSIGN THE TEXT TO THE LINK
obj[j].link_button.link_text.text = _root["menu"+(i)][j][0];

obj[j]._y = linkY;
linkY += 30;


}
_root["bar"+(i)].link._visible = false;
//trace(obj.length);
for (k=0; k<obj.length; k++){
trace("Link:"+k+obj[k]);

}
}

_root.bar._visible = false;

function moveMenus(button_id){ //button id is coming in as the array index (0,1,2...)

//loop through all of the menus
for (i=0;i<=(menuTop.length - 1); i++){

if(i<button_id){
if (_root["bar"+(i)].up == false){
easeUp(i)}
}else if(i == button_id){
if (_root["bar"+(i)].up == false){
easeUp(i)}
}else if (i>button_id){
if (_root["bar"+(i)].up == true){
easeDown(i)}
}
}
}
/*This is how to use the MX easing tween:
var tabUp = new mx.transitions.Tween(movieClip, "_y", mx.transitions.easing.Bounce.easeOut, beginCordinate, endCordinate, time);
*/
function easeUp(menu) {
var tabUp = new mx.transitions.Tween(_root["bar"+(menu)], "_y", mx.transitions.easing.Strong.easeOut, menuTop[menu][1], menuTop[menu][0], 12);
_root["bar"+(menu)].up = true;
}
function easeDown(menu) {
var tabUp = new mx.transitions.Tween(_root["bar"+(menu)], "_y", mx.transitions.easing.Strong.easeOut, menuTop[menu][0], menuTop[menu][1], 24);
_root["bar"+(menu)].up = false;
}


Any help would be MUCH appreciated.

Problem With Dynamic Links Attached To Dynamic MC's
My question is a little hard to explain (but I'll do my best) so I have added a link to my source files below for you to look at.

OK, I am working on the logic for a much larger project and I am about 95% of the way there. Basically what I am doing is loading a text file that contains variable information and then breaking that into arrays based on which category the user chooses. Once the user clicks on a category the array for that selection is broken apart and read. It then loads (dynamically) an image (whose name comes from my array) into the "holder" mc, sets it's link to an external HTML page, determines how many sub-buttons (based from the array) are needed and then populates them in their own emptyMovieclips inside another mc called "buttons" and gives each of them a unique link (also generated from the array) that changes the image in the holder "mc". This is where my problem is occurring, for some reason it is assigning the link of the last attached sub-button in the group to all of the other sub-buttons in the "buttons" mc. For the life of me I cannot figure out why, they should each have a unique link. Hopefully some fresh eyes can shed some light on this. Frame 5 is the gut of the code, any help would be greatly appreciated.
Thanks

Here are the source files:
http://www.icandraw.com/source.zip

Dynamic Button With Is Dynamic Code(links)
Hello,
anyone can help me to create dynamic button with its code dynamically.
ex:
from XML file a learn names and links,
and i wanna display name as button and evry clicked button redirect me to its link,HHHHOOOWWW ???
i just began to work witha solution that conciste to deal with a array variables created as number as names.
you can mail me directly in my box mail : amine_youness@hotmail.com

thanks for your help

Apply Dynamic Links To Dynamic Mc's
Ok, I'm making a playlist generator and I'm pulling the info from an xml. I have everything functioning except the links are not working. I've tried numerous things with out a solution found.

here is the current code without pulling anything from the link[] array:


Code:
function loadXML(loaded) {
if (loaded) {
xmlNode = this.firstChild;
link = [];
cover = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
link[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
cover[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
_root.createEmptyMovieClip("covers"+i, i);
cover_mc = _root["covers"+i];
cover_mc.loadMovie(_root.cover[i]);
cover_mc._x = 86*i;
cover_mc._y = 0;
_root.createEmptyMovieClip("mirror"+i, i+5);
mirror_mc = _root["mirror"+i];
mirror_mc.loadMovie(_root.cover[i]);
mirror_mc._x = 86*i;
mirror_mc._y = 168;
mirror_mc._yscale = -100;
gradient_mc._x = 86*i;
gradient_mc._y = 168;
gradient_mc.duplicateMovieClip("gradient"+i, i+10);
}
} else {
content = "file not loaded!";
}
}

xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load("playlist.xml");
any help would be appreciated.

thanks,
saveth

Dynamic Links For Dynamic Text
Any way to do this? (well, there's always a way, but you know what I mean...) Any help is appreciated.

Dynamic Links
Does anyone know how to update/add links to a flash movie using an external text file?

Dynamic Links...
Hi guys...

I wonder how can I do a dynamic text file which has links in it?
Is it possible to make Flash to understand those links in that text file??




This how I load the text.. how can I add links to those text and when the texts are loaded those links should be able to click?


loadText = new LoadVars();
loadText.onLoad = function() {

linksclip.linx.text = loadText.linx;

};
loadText.load("linkx.txt");








thanx in advance...

-GM

Dynamic Links
i am trying to grab a URL from a text file. on the button i have

on (release) {
getURL(urlA6, "_blank");
}

and in the text file i have

&url6=http://www.google.com&


but it wont work. i know it SHOULD though.

Dynamic Links
Guys,

I have designed a flash banner, it loads the text and link from an external .txt file which is to be updated frequently, I just noticed that it works fine with simple url's (www.macromedia.com) however if the link contains any other parametre (generated by dynamic jsps) like for example (/page.jsp?id=62&siteid=1) it doesn't even display the text

have you ever encountered a similiar problem that can help me solve this ?

thanks
silv

Ugh, Dynamic Links
Ok, these things are making me pull my hair out. Can someone help me out here?

Now i can do this the easy way but then i have like 80 lines of code that could easily be 30 or somethin.

Here is what i have.
1.) A Movie Clip named "link_01", with the name "link_01" for its AS linking too.
1.A) Inside that movie clip is a text box, and the instance of that text box is named "linkT".
2.) Next, i am trying to bring 8 instances of that movie into scope if you will. I am using attachMovie(), but i dont really care how its done.
3.) Next i am loading variables from a text file, the text file holds the names that will go into "linkT", and the swf those buttons will go to.

Now how can i do this? i understand its a simple loop, but flash's naming structure is killing me. Obviously for this whole thing to be nice and dynamic, the instance name of the movieclip, and the variables that hold any information (link name, and link goto filename) must have some sort of array structure, atleast the principles behind arrays. like "link0", "link1", ect.

I am dying trying to get stuff like "link0.linkT.text = this.myVarFromFile;" to work, mainly because of the link0 part, stuff like "this["link"+i].linkT.text = this.myVar" is killing me. I dunno, seems no matter what i do i cant make flash happy lol. Can someone help me please? Thanks a ton. I'm about ready to blow my monitor up

Dynamic Links
is there a way to make links appear automatically when put in a certain directory. Say i have a buncha pictures, and instead of having to update the flash to make links to the new pictures, just have them be made automatically put in.

Dynamic Links
I want to have a link that is generated if a pdf file is in a particular directory. Something like:

if (file.pdf is present in ../pdf/) then
generate link in the swf file that will open the pdf in a new window

else

generate text that says 'no pdf file present'.

Is this possible? And can anyone give me any advice on how to go about this?

thanks!

Dynamic Links
Hi!
I have a dynamic text, I load its content by loadVars and it works fine until I try to put a link in it.
<as>
stringa="";
for(i=0; i<qi; ++i){
stringa += "<b>"+titoli[i]+"</b><br>"+descrizioni[i]+"<br><br>";
}
_root.finestra.rivendite = stringa;
</as>
titoli[i] and descrizioni[i] are my loadVars. This works fine; this one doesn't instead (I mean that no text is shown anymore):
<as>
stringa="";
for(i=0; i<qi; ++i){
stringa += "<a href=http://www.google.com target=_top>link</a><b>"+titoli[i]+"</b><br>"+descrizioni[i]+"<br><br>";
}
_root.finestra.rivendite = stringa;
</as>

I enabled html in the text field.
Help me please.
Thank you
Carla

Links From Dynamic .txt
Hi,

I'm making a site with a main window browser which allows the user to enter the site in a fullscreen chromeless window.
My problem is in the link part of the site, the links come from dynamic txt files
but when user click on a link the new window open behind the main window which is already behind the chromeless window.

So my question: is there a way to make the window resulting on the press on the link appears front of the chromeless window ?

Thanks in advance for your replies ( excuse my english, expect it's understanding)...

Dynamic Links
Ok so www.bestpricecoralcalcium.biz/test the flash header is flash of course and all the text that loads is from a txt document


here is what is in the txt document info

name=Best Price Coral Calcium&slogan=Quality Products, Guaranteed Low Prices.&blurb1=Ripsum ametdol fut labore et dolore&blurb2=Stet ita kasd gubergr Donsetetur sadipinvita&rep=replay&button1=home&button2=contac t us&button3=NaturesRenewal&button4=Packages&button5 =March Special&button6=Order&button7=Contact&button8=Logi n Us&url1=#url2=#&url3=#&url4=#&url5=#&url6=#&url7=# &url8=#&enddata=1


now where it says url1 and url2 etc.... im not sure which button the url refers too and how to put links in their.. where it says url1 i tried entering products.html just to test it.. well nothing happened when i played the movie.. every button i click refreshes me to to index.html any one help me link all those buttons that are on the site but editing this dang txt file?

Dynamic Links
Hello guys

this is my first time on this forum

i was going through the Photogallery using xml and flash, it was simply great, and the way Kirupa has explained the whole process is simply great.

now i would like to convert those captions to links, each picture has a different link, can u help me to do this

looking forward for ur response

Thanking You
Shriram

Dynamic Links
Ok So im kinda new in flash.
But i want my links to be dyanmic so the movie clip that is on, removes itself(with a fade out transition) when the link is clicked and the lmovie clip of the link i clicked gets loaded. but i want it dynamic so i dont have to make new buttons.

Dynamic Links
HI,

Is there a way to dynamicaly generate buttons and set their variables?

For example: I click on one file from a list, some buttons are generated and their actions are set so they each load in a seperate jpeg when clicked. Then when another file is selected these buttons are cleared and some more buttons are generated etc...

*The amount of buttons generated will vary depend on the file clicked.

How can I do this???

Thanks!

Dynamic Links
Ok so www.bestpricecoralcalcium.biz/test the flash header is flash of course and all the text that loads is from a txt document


here is what is in the txt document info

name=Best Price Coral Calcium&slogan=Quality Products, Guaranteed Low Prices.&blurb1=Ripsum ametdol fut labore et dolore&blurb2=Stet ita kasd gubergr Donsetetur sadipinvita&rep=replay&button1=home&button2=contac t us&button3=NaturesRenewal&button4=Packages&button5 =March Special&button6=Order&button7=Contact&button8=Logi n Us&url1=#url2=#&url3=#&url4=#&url5=#&url6=#&url7=# &url8=#&enddata=1


now where it says url1 and url2 etc.... im not sure which button the url refers too and how to put links in their.. where it says url1 i tried entering products.html just to test it.. well nothing happened when i played the movie.. every button i click refreshes me to to index.html any one help me link all those buttons that are on the site but editing this dang txt file?

Dynamic Links
Hey all, I am trying to figure out how to create dynamic links in flash. I tried importing HTML, but it didn't render the link, only the code (yes, I did hit the "Render Text as HTML" button :-)). All I want to do, is have a list of 10 links that will be auto loaded into the flash app. BTW, I'm using Flash MX 04 Pro.

Suggestions?

Dynamic Links
Hi, is there anyway of making dynamic links from php & flash

so it reads a link from a db and then writes it to flash?

any ideas?

thanx


Martin

Computing help and info:

http://www.webrevolt.biz

Dynamic Links?
Is this possible?

I want to have a button, a normal flash button. But instead of;
on release, get url blah blah blah
I want on release to open a link that is stored in a .txt file. Is this possible?

If it is, im assuming I would have to load the text file, and use a variable in the geturl section?

Im not sure, if anyone has any ideas please let me know.

Thanks fellaz

Dynamic Links
Morning,

I bumped in to a little problem to day.

I have an actionscript that generats a number of MC depending of a variable called foundcount.

Any way, what I would like to do is have all new MC:s that is created have an "on relasre link on it" and also the link should be like getURL ('index.php?id=[variabel_id1]')
where [variabel_id1] depends on what the database say that id1 is.

The code I have looks like this:
for (var i = 0; i<found_count; i++) {

duplicateMovieClip("senaste_mc", "senaste_mc"+i, i);

tester = this["senaste_mc"+i];

vartext1 = this["senaste"+i];

vartext2 = this["kat"+i];

vartext3 = this["user"+i];

tester._y = 65*i;

tester._x = 0;

tester.text_senaste = vartext1;

tester.text_kat = vartext2;

tester.text_user = vartext3;

}

Dynamic Links From XML
So, I have a text field which will display different company's contact email addresses... which need to be pulled from an xml file. Once they're there, I'd like the user to have the ability to click and have it function like a mailto: hyperlink would work. Any suggestions? I've been looking around for hours, but have not had much luck. Is it even possible? I've seen a couple threads started here and there with no replies. Thanks in advance.

Problem W/dynamic Links
I have buttons that grab a dynamic url from a variable which is imported from a text file. in most cases this works fine. The problem is the url for a particular client has "&"s and "=" in the url path, which confuses flash since these symbols are used to seperate the varibles. If anyone knows any work arounds for this problem it would be a big help!

Dynamic Text Links
please is it possible!!

objective= to display an external txt file in a dynamic text box, fired from a hyperlink in another external text file currently displayed in an ajacent dynamic text box!!


don't mean to confuse anyone, if you can help that would be fandabydoozey.

need more coffeeee !!!!!!

Dynamic Text Links
please is it possible!!

objective= to display an external txt file in a dynamic text box, fired from a hyperlink in another external text file currently displayed in an ajacent dynamic text box!!


don't mean to confuse anyone, if you can help that would be fandabydoozey.

need more coffeeee !!!!!!

Dynamic Text And Links
It's posible to have into a dynamic textbox a link to a web page? Or to have a picture pop up when a word is clicked?

Links In Dynamic Textbox
Hi,
I did a scrolling textbox in Flash 5 and can't figure out how to integrate a link in the dynamic text in the actionscript window. Any suggestions?

Dynamic Text As Links?
Is this possible?

I have a dynamic menu that writes out the menu text from a dynamic array, but I want to make a link for each menu item... is there a way I can do that?

thanks

-Emo

Links In A Dynamic Text Box
Hello everyone,

I'm trying to assign hyperlinks/actionscript links to some text in a dynamic text box. Since the text box's properties does not give you this option, how else could it be done? has anyone ever done this before?

Thanks

Series Of Dynamic Links
i am building a site that lets the owner update things and i am trying to keep all the text thats getting passed into the movie on one page. it has been working fine but now im stumped. there are three sections with three links each that have to be dynamic. what i am wondering is how do I connect my getUrl code to the individual links in the text file. i know its basic but im a code retard.

Dynamic Text With Links
I know how to do HTML links with dynamic text....I was wandering if anyone new how to make the link change colour when the mouse is placed on it?

Links In Dynamic Text
Here is the problem, I am not sure how to put url's or mailtos into dynamic text. I have my txt file outside of the swf. Can I put hyperlinks into this txt file? Can flash parse that? How do I make forms and include links in text fields?

Herk

How To Make Dynamic Links?
Hello,

I'm Raśl, from Spain. I want to know if anybody can help me with this problem.

I have to make an intro flash movie where there will be 3 lines of text with 3 news that webmaster could change changing the text in an external txt file that I have created. It's done.

No I have to make that with this 3 news appear 3 text links displaying 'see' that takes the user who makes click there to one of the 3 links contained in another external txt file. Is it possible? How can I do this?

Thank you very much for your support.


Raśl

How To Make Dynamic Links?
Hello,

I'm Raśl, from Spain. I want to know if anybody can help me with this problem.

I have to make an intro flash movie where there will be 3 lines of text with 3 news that webmaster could change changing the text in an external txt file that I have created. It's done.

No I have to make that with this 3 news appear 3 text links displaying 'see' that takes the user who makes click there to one of the 3 links contained in another external txt file. Is it possible? How can I do this?

Thank you very much for your support.


Raśl

Links In Dynamic Text
Hello,
I'm populating a dynamic text box with a bunch of HTML links. I would like these text links to call a function within Flash MX, but I can't get it to work.

Here is the code I'm using:


PHP Code:



linkarea += "<font color='#ff0000'><u><a href='show(" + a + "," + b + ");'>" + temp[0] + "</a></u></font><br><br>";




The "show" function is a function I've created in an earlier frame, but it doesn't get called when the link is clicked. Is it possible to call Flash functions using HTML text in a dynamic text box? How do you do it (assuming it's possible)?

Thanks. B

Dynamic Text & Links
Hello!

In a piece, I have a scrollable section of text. I'd like to make some of the text link to other movies... that can be loaded into that flash file. Is this possible?

Thanks

Links In Dynamic Text
Hey, I currently have my text load dynamically and ive been told you can have links in dynamic text, if you could tell me how to do that it would be great!

Dynamic Text And Links
Hi there,

I am in a team, making a promotional CD for a company. They wish for the CD to be reusable, so that they can change it after we have left. For that, I have made all the text dynamic, so all they have to do is access the .html files and change the text within these files.

But this is where my problem occurs. I will need one word within that text to be a link, but linking to another scene within the movie (not an external url)....is there any way at all of doing this? only one word out of 50 will be a link, so i can't turn the whole thing into a button. Also, I need it to be scrollable, so thats another issue that needs to be thought about.

any help would be greatly appreciated. Hope you can help

-mike

Databases & Dynamic Links Etc
Hi Everyone

This is my first post so please be gentle.

I am undertaking a project which involves displaying a large number
of products within the site.

The client will be adding to these via a php web interface.

Flash front end, php middleware and MySQL dbase to hold the content.

I have got the dbase and php side of things sussed I am however trying to develop the site so that rather than me having to maintain the site they can just add records to the dbase and flash will automatically show the updates.

For example the products section will show a list of clickable images that when clicked go to a product_detail page where more info can be found. How can I program this so the images and links update with the database.

Can you give me some pointers as how best to go about this.


Cheers Elskan.

Dynamic Text As Links?
Hi.

Is it possible to have dynamic text as links?
I want them to work as buttons...as in click the button(the dynamic text) and it will load a swf into an empty mc.

If possible. Can anyone be nice and please explain how
Do I make the links in html in the txt-file from where I load the dyn. text or?

thanx in advance!

chris

Links In Dynamic Text
hey,

i've got some text loading into dynamic text fields from external .txt files. html is enabled in the text, and i'd like to add some links to them. when i added the typical html <a href> tags, it added the link, but the entire text field from that point down became a hyperlink as well. and yes, i closed the <a> tag.

what am i doing wrong?

also, if it's possible to do what i'm trying to do, is it also possible to format and/or add a style to that .txt file so that the links have hover states and all that?

thanks...appreciate any help i can get!
Clint

Links In Dynamic Text
is it possible to define a link to a webpage when the address is in the middle of dynamicly loaded text? example:
"please visit the company website at www.thecompany.com for more information"

Dynamic Text Links
Hello,
I'm deconstructing a flash movie I received and am trying to add a link to the dynamic text. Here is the code:

on (release) {
varX = 80;
varY = 15;
txt = "click here";
maintxt.txtb.text;
}

Does anyone know how to accomplish this?

Links In Dynamic Text Box
is is possible to put a link, or possibly a picture in a dynamic text box?

Links In Dynamic Text Box
i cant seem to get the a href to work, the first line of text works but not the rest, cant seem to work it out.

&textfield=<font color ="#999999" size="13">OUR FRIENDS LINKS</font>
<a href ="http://www.website.co.uk

Help With Dynamic Textboxes And Links
Hey All,
I was browsing some templates on a website I really liked this specific one.

So I went about trying to re-create it. But I stumbled a few problems.

First off I dont know how to use Variables with links(Over,Click,etc..), And I could not figure out how to get the links to target the "Body" Dynamic Box.

Here is what I Have: Link
and this is the Original template: Link
Any help would be great
-Twitch

Dynamic Text Links
Hi,

i called the text from xml into flash movie. now i need to link any word form that xml text. that link must be open in a movie clip only.

anytime i will change that text and links also. for example

"welcome, welcome1, welcome2
welcome3, welcome4, welcome5" this is one paragraph call from xml into flash dynamic text. now i need to link welcome1. if i click on welcome1, welcome1 related text must me open one movie clip(this txt also call from xml). next time i will change the text, now that link go to some other text for example welcome5, now welcome 5 is clickable. if i click welcome5, this related txt mustbe open in movie clip....

if there is any solutions plz let me now, it's very urgent for me....

ramana.

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