Links To Anchor On Dynamic Text Field Don't Work
I've created a dynamic text field that loads an html page, but the links to
anchors inside other parts of the text do not work. When I test the html
page outside Flash, it works normally. If I replace the internal anchors
with a web page address, it also works normally. The problem seems to be
finding the anchors inside the dynamically loaded text. Any suggestions on
how to do it?
Adobe > ActionScript 1 and 2
Posted on: 11/22/2006 10:13:38 AM
View Complete Forum Thread with Replies
Sponsored Links:
XML Anchor In Dynamic Text Field
I'm looking to create HTML-like anchors in the XML/CSS I'm loading into a text field (kind of like <a name="anchor">. I'm hoping someone knows a relatively easy approach to this, as my AS3 is shaky and my XML is downright bad.
I was hoping I could include something in my XML like this:
Code:
<text>A text block here</text>
<anchor id="myAnchor" />
<text>Another text block here</text>
Then when I load the XML into the flash movie, I do it something like:
ActionScript Code:
var urlRequest:URLRequest = new URLRequest("myText.xml#anchor");
The point of which would, eventually, to control the "#anchor" bit of the URL with a string variable I could change when I need to point the text field to the appropriate section of text.
I've spent the better part of two days searching the web for solutions to this, but have yet to find anything I think I can make work.
Any help pointing me in the right direction would be greatly appreciated.
View Replies !
View Related
Why Dont Anchor Links Work In Flash?
I have a set of button that calls getURL to the same page but anchored..
getURL("index.php#services"."_self");
this doesnt seem to work in flash.. when i click on them NOTHING happens. sometimes some of these buttons would work, for some reason i dont quite understand. but most of the time they dont.. but if i try
getURL("index.php#services"."_blank");
//open in ne page
it always works...
how come?
tea
View Replies !
View Related
Preloader Doesn't Work With Named Anchor Links
I have a swf with a simple preloader embedded in an html page. Everything works fine when the link to the html page does not include a named anchor: http://www.danielohlsen.com/fgw_site/the_ads/the_ads_header.htm
However, the preloader in the swf does not work when the link to the same html page includes a named anchor:
http://www.danielohlsen.com/fgw_site/the_ads/the_ads_header.htm#header_ad
The rest of the movie will still play after loading, but for some reason not the preloader. I am on a mac using Firefox and Safari, and they both act the same. Perhaps its a browser issue. Is this a known issue?
View Replies !
View Related
Downloadable MP3's From Dynamic Text Field Links?
How can I make the context menu from a link in a html dynamic text field include "save link as".. on a music site i designed. i have all of the content loaded from a text file - including sound file links to mp3's.. i need to be able to have the visitor download the file to save.. using FlashMX
http://www.darsombra.com
thanks in advance
View Replies !
View Related
Downloadable MP3's From Dynamic Text Field Links?
How can I make the context menu from a dynamic text field include "save link as".. on a music site i designed. i have all of the content loaded from a text file - including sound file links to mp3's.. i need to be able to have the visitor download the file to save..
http://www.darsombra.com
thanks in advance.
View Replies !
View Related
HTML Links In A Dynamic Text Field
Hey folks,
I'm in the process of redesigning my weblog in Flash. All of the archived posts in my database are formatted using HTML. I'm displaying the content in a dynamic text field, and I have the HTML formatted text appearing just fine.
The problem is, the links are not underlined, or otherwise distinguished from the rest of the content. Most of the references I've read have recommended just putting u tags around the link to underline them, but that doesn't work well in this situation, as I have years of posts in the database already, and none of them have the u tags in place.
Is there a way to change the way a dynamic text field displays HTML links? Any help is greatly appreciated.
View Replies !
View Related
Loading External Text File Into Flash Using Links From Dynamic Text Field Link?
I am using a dynamic text field to load in .txt files with html tags. I have a couple "click here" type links that I would like to use to load a different .txt document into the same dynamic text field instead of a url link like it does default. Is this possible? I'm sure I could put a button over the text since its not long enough to need a scrollbar but I would like a more dynamic and flexible way to do this if its possible.
Thanks
View Replies !
View Related
Dynamic Text Field Links - Hit Area Too Small
Hi,
I'm trying to create a dynamic table in a flash movie with links on many of the bits of data. However, I'm having a bit of trouble with the links themselves. If I'm displaying just one character e.g. '1', the hit area where the user can click is very small and seems to sit just to the left of the actual number. This happens if I'm defining the data through actionscript (using 'htmlText = .....'), but seems to be fine if I create a dynamic textfield manually and set up a link myself.
Any ideas?
View Replies !
View Related
Problem With OnRollOver And Links In Dynamic Text Field.
Hello All. I hope someone can help me with my problem.
Ok, here's the thing: I have this flash file with an automatic scrolling dynamic text field that, when your mouse moves over the text, stops scrolling. The dynamic text field pulls data from an external text file, including urls that are supposed to be clickable on the flash file.
The dynamic text field is inside a mc, and I also have a mask mc that allows the script to check the position of the text field with the mask.
Now here's the problem. For some reason, the onRollover script is interfering with the user's ability to click on the links. When I remove the onRollOver script, I can click on the links.
I'm sorry if I havent explained it clearly, as I am a noob with flash and actionscript. I'm attaching the script in the hopes that someone can help me. If you need the flash file, let me know and I'll upload it.
Thanks!
Code:
news_mc.TextHolder.autoSize = true;
scrollText = true;
function scrollIt() {
this.onEnterFrame = function() {
if (scrollText == true) {
news_mc._y -= 1;
if (news_mc._y<mask._y-news_mc._height) {
news_mc._y = mask._y+mask._height;
}
} else {
news_mc._y = news._mc._y;
}
};
}
mask.onRollOver = function() {
scrollText = false;
};
mask.onRollOut = mask.onReleaseOutside=function () {
scrollText = true;
};
scrollIt();
View Replies !
View Related
HTML Links Won't Display In Dynamic Text Field
I am loading external text files in dynamic text fields on my webage. These texts contain html links (<a href="page.html" target="_blank">Click Here</a> and I have "render as HTML" on and "selectable" off in my dynamic text field. Also, I am loading a CSS file. Not only do I not have a hand cursor, but I do not even have any of the text from that piece of html code down. What is going on with this? Please respond asap, as I have been struggling with this for a day now. Here is the Actionscript for loading the CSS:
var flash_css = new TextField.StyleSheet();
flash_css.load("styles.css");
flash_css.onLoad = function(success:Boolean) {
if (success) {
zloc_txt.styleSheet = flash_css;
} else {
trace("Error loading CSS file.");
}
};
var zloc_lv:LoadVars = new LoadVars();
zloc_lv.load("zloc.txt");
zloc_lv.onLoad = function(success:Boolean) {
if (success) {
zloc_txt.text = this.content;
} else {
trace("unable to load text file.");
}
};
zloc_txt.html = true;
zloc_txt.editable = false;
_global.styles.TextArea.setStyle("backgroundColor" , "transparent");
_global.styles.TextArea.setStyle("border styles" , "solid");
Here is a sample of the text file code:
&content=<span class="headline">Northwest Arkansas Locations</span>
121 Main St.
Russellville, AK 77801
(626) 111-1111<br />
<html><a href="
View Replies !
View Related
Auto Formatting Html Links With Color In Dynamic Text Field
formatting html links using cdata
I am parsng a xml document that has html along with text, I am bringing the xml into a dynamic text field. I can retrive the same data from cdata tags as well.
I get the links into my document ok but I need to color the links so user can tell they are links.
Know anyway to do this?
MAybe a function that will take your text, look for the hrefs and add the color thing in the text.
anyone devloped this or know of a workaround?
I unfortunatly cannot modify my xml
Example xml and .fla here:
http://lincart.com/xml_feed_samples.zip
Here is a srting prototype I found that might do what I need but I cannot figure out how to implement???
String.prototype.makeClickable = function(){
var tmp = this.split(" ");
for(var i = 0; i < tmp.length; i++){
if(tmp[i].indexOf("www.") != -1 && tmp[i].indexOf("http://") == -1){
tmp[i] = "<font color="#0000FF"><u><a href='http://"+tmp[i]+"' target='_blank'>"+tmp[i]+"</a></u></font>";
}else if(tmp[i].indexOf("http://") != -1 || tmp[i].indexOf("ftp://") != -1){
tmp[i] = "<font color="#0000FF"><u><a href='"+tmp[i]+"' target='_blank'>"+tmp[i]+"</a></u></font>";
} else if (tmp[i].indexOf("@") != -1 && tmp[i].charAt(0) != "@" && tmp[i].charAt(tmp[i].length-1) != "@") {
tmp[i] = "<font color="#0000FF"><u><a href='mailto:"+tmp[i]+"'>"+tmp[i]+"</a></u></font>";
}
}
return tmp.join(" ");
}
how would it apply to my code?
do I assign the tmp var to my var?
//frame 1 parse xml
function Article(id, news_item) {
this.id = id;
this.news_item = news_item;
}
function makeArray(success) {
var i, j, mainTag, id, news_item;
if (success) {
for (i=0; i<=moXML.childNodes.length; i++) {
if (this.childNodes[i].nodeValue == null && this.childNodes[i].nodeName == "idj_news_feed") {
mainTag = this.childNodes[i];
}
}
for (i=0; i<=mainTag.childNodes.length; i++) {
if (mainTag.childNodes[i].nodeName == "record") {
articleTag = mainTag.childNodes[i];
id = articleTag.attributes["id"];
for (j=0; j<articleTag.childNodes.length; j++) {
if (articleTag.childNodes[j].nodeName != null) {
if (articleTag.childNodes[j].nodeName == "news_item") {
news_item = articleTag.childNodes[j].firstChild.nodeValue;
}
}
}
thisArticle = new Article(id, news_item);
articles.push(thisArticle);
delete thisArticle;
}
}
_root.gotoAndStop("showArticles");
}
}
// articles is an array of Article objects
var articles = [];
// read xml and display when loaded
moXML = new XML();
moXML.ignoreWhite = true;
moXML.onLoad = makeArray;
moXML.load("demoNews.xml");
stop();
// frame label showArticles
news = "";
for (i=0; i<articles.length; i++) {
news += "<a href='" + articles[i].link + "'>" + articles[i].news_item + "</a><br>";
//news += " <font color='#cccccc'>(" + articles[i].source + ")</font><br>";
}
scroller.html = true;
scroller.htmlText = this.news;
stop();
thanks for the help I am still getting a grasp on coding.
View Replies !
View Related
Xml In Dynamic Txt With Link To Anchor And Different .txt Field?
'K. So I realize that title may not have made much sense, but hey! you're reading so I count myself lucky...
I thought I got this xml business, but of course I might have been a tad bit optimistic... (just a wee little bit. *blush*)
Basically what I have are two dynamic txt fields that I want to load with xml data.
I want the first link_txt to contain links.
Different links that will either and/or both lead to:
1. a new xhtml/xml page in the field main_txt
2. an achor in the text in main_txt
or... 3. opening an xhtml page in a new window.
Tutorials or guide me throughs and/or allaround helpfullness would be greatly appreciated.
Thanks...
View Replies !
View Related
Is Mask Work For Dynamic Text Field ?
Hi
1) I have tried to apply mask for dynamic text field but it doesn't work.
2) Only through script the mask is working for dynamic textfield.
ActionScript Code:
myTextfield_mc.setMask(my_mc)
//converted dynamic text field as a movieclip name "myTextfield_mc".
3) Static text field with normal mask working.
Is there any way to apply mask for dynamic text field without script ?
Thanks in advance.
View Replies !
View Related
Text In Dynamic Text Field Does Not Work On Server
Hi i use this method to inport text into my dynamic text field:
Code:
on(press){
file="about.txt"
_root.loadVariables(file,"POST");
}
on(press){
file="about_info.txt"
_root.loadVariables(file,"POST");
}
This works fine on my computer, nbut when i upload my movie to a server, the movie does not display the text. What is wrong?
View Replies !
View Related
Anchor Points In Flash Text Field HELP PLEASE
OK I am having a small problem and I got tired and browsing and reading tons of books to find the solution...
I am doing a website in flash, so there's a page where I have some text which is really long and I have my scroll buttons to navigate up and down, the problem is that since the text is too long I added a list next to the text field that when a user clicks on any item of the list it will take him/her to that specific area in the text field, yes is the same as anchor tags in html, but since I'm doing all this in flash I don't know how to do it and I don't think the answer could be creating a movie click and have the text move from one side to anther with labels right...? help PLEASE!!!
View Replies !
View Related
How To Goto A Frame Using A Text Field HTML Anchor Tag Link?
Does anyone know how to goto a frame using a dynamic text field HTML anchor tag link?
for example, the dynamic HTML text field variable might look something like this:
boxText = "jump to <A HREF=" someMClabel "> clip link </A>";
Below is all the documentation i could find, but it only covers links to external pages:
http://www.macromedia.com/support/fl...s/htmltext.htm
any help is very appreciated!
peace,
dan
View Replies !
View Related
How To Goto A Frame Using A Text Field HTML Anchor Tag Link?
Does anyone know how to goto a frame using a dynamic text field HTML anchor tag link?
for example, the dynamic HTML text field variable might look something like this:
boxText = "jump to <A HREF=" someMClabel "> clip link </A>";
Below is all the documentation i could find, but it only covers links to external pages:
http://www.macromedia.com/support/fl...s/htmltext.htm
any help is very appreciated!
peace,
dan
View Replies !
View Related
Scroll Bar For Html Dynamic Text Field Won't Work With Html
Hi:
I'm trying to add a scroll bar to a dynamic text field that is populated with an XML file. (see attached scolltext.zip file).
If I populate the field with plain hard coded text, it works fine. However, in my application, I need the text to contain html formatting codes. When I change the hard coded string to include html, it doesn't appear to work.
Can anyone suggest an alternative way to create a scroll bar for this dynamic text field? I need the html to stay as is because eventually the glossary will be populated via XML through a CF server.
Thanks in advance for any assistance!
Dawnthea
View Replies !
View Related
Jumping To Anchor In Dynamic Text?
Hey all - I have a question, but first let me lay out the problem:
Background: I have built an e-learning app that loads dynamic text into scrolling text field with some sentences that are 'wrong'. User clicks on each sentence that is 'wrong', which pops up a quiz question. Correct answer of quiz question replaces 'wrong' sentence in dynamic text with 'correct' sentence, and reflows dynamic text to accomodate the new sentence (string) length. If user is stumped, there is a 'hint' button that currently highlights all remaining 'wrong' sentences, and user can then proceed to click each sentence to activate quiz question, etc. To achieve the functionality I currently have, I've used asFunction extensively.
Problem: I would like to change the functionality of the 'hint' button to highlight one 'wrong' sentence at a time, instead of all remaining 'wrong' sentences. I can script this, EXCEPT that since this is a scrolling text field, if the next sentence is off-screen, it will not be obvious to user that the sentence has been highlighted.
Solution needed: I would like the scrolling text field to scroll or jump to an 'anchor' in the dynamic text field that corresponds to the beginning of the newly highlighted 'wrong' sentence (like an html anchor tag). This would need to be scripted into the dynamic text somehow, since the text reflows with sentence replacement throughout the exercise, and the beginning of the next sentence is not at a specified xy location. This app is also meant to be dynamic, and accomodate lots of diff text files, so the sentences will be in diff locations for each text file imported.
Does anyone have any ideas?
Thanks in advance.
-S
View Replies !
View Related
Dynamic Text And Anchor Tags
I'm trying to create a .swf that reads an external text file. The .swf needs to scroll but be able to recognise HTML tags in the text fille.
Now, I'm 99% there. However, when I add an anchor tag to the text, then click on it when the flash file is running, the flash window closes, rather than going to the web page in question.
Any ideas?
Code below:
First part
System.useCodepage=true;
newstext.html=true;
loadVariablesNum("news.txt", 0);
newsText.autosize = "left";
var maxheight = newsText._height;
var maxpos = 0-maxheight;
gotoAndStop(2);
Second part
if (newsText._y < maxpos){
newsText._y = 110;
}
newsText._y -= 1;
gotoAndPlay(2);
Cheers
View Replies !
View Related
Html Anchor In Dynamic Loaded Text
Hi,
I'm using a movie that loads an CSS en HTML file for displaying text. The CSS is applied and working. The HTML is also recognized. But I wanna nagivatie within this text such as a normal webpage:
<a href='#label' target='_blank'>Tester</a><br>
<p>textetxtetxtetxtetxtetxtetxtete</p><br>
<a name='label'>My anchor to go to</a>
I applied this to the html that is loaded in my Flash movie but it doens't do his job...can anyone help me to find the right way to make this work ????
manny manny thanx...
View Replies !
View Related
Html Anchor In Dynamic Loaded Text
Hi,
I'm using a movie that loads an CSS en HTML file for displaying text. The CSS is applied and working. The HTML is also recognized. But I wanna nagivatie within this text such as a normal webpage:
<a href='#label' target='_blank'>Tester</a><br>
<p>textetxtetxtetxtetxtetxtetxtete</p><br>
<a name='label'>My anchor to go to</a>
I applied this to the html that is loaded in my Flash movie but it doens't do his job...can anyone help me to find the right way to make this work ????
manny manny thanx...
View Replies !
View Related
Anchor Tags, Dynamic Text, Tabbing
I've got some html text that gets loaded and dropped into a dynamic text field:
ActionScript Code:
<p><ul><li><u><a href="asfunction:launchPage,El Segundo" tabindex="15">El Segundo</a></u></li><br />
<li><u><a href="asfunction:launchPage,Houston" tabindex="16">Houston</a></u></li><br />
<li><u><a href="asfunction:launchPage,Huntington Beach" tabindex="17">Huntington Beach</a></u></li><br />
<li><u><a href="asfunction:launchPage,Ogden" tabindex="18">Ogden</a></u></li><br />
<li><u><a href="asfunction:launchPage,Puget Sound" tabindex="19">Puget Sound</a></u></li></ul></p>
Clicking on the text works just dandy, but I can't seem to tab to it. I'd like to be able to tab to each link just as if it were in a regular HTML page.
In the past I've put invisible buttons over the text field and guessed about where the text would be, but you have to change the size and position every time you update the text.
Thoughts?
View Replies !
View Related
Trying To Pass Text From Form Text Field To A Flash Dynamic Text Field
Hi, I was hoping someone might enlighten me as to how/if I can do this...
Currently I'm using javascript which works fine to pass text from textfield A to textfield B:
Code:
window.onload=function()
{
document.forms.form1.shirtText.value=document.forms.form1.KitGroupID_16_TextOption_38.value
}
Is there a way to pass the textfield A text to a dynamic text input (flash) as I'd like to use the font embedding flash offers. I can make it work when loading a value from a txt file but I'm not sure how to access the value identified above as KitGroupID_16_TextOption_38 and make it appear in a dynamic input box. Eventually I might want to have 3 font choices for the user but I'd like to just see if I can get this working properly first.
Your help/advice would be greatly appreciated,
-Scott
View Replies !
View Related
Multiple Anchor Styles -> CSS/Dynamic Text Feild
I'm looking for a way to get multiple a:link and a:hover styles to work with a dynamic text field. Flash likes to choose one or the other but wont respect subclasses. Is there any way to pull off two different coloured anchor tags?
CSS i have tried looks something like this:
ActionScript Code:
a:link{
color: #FFFF00;
}
a:hover{
text-decoration: underline;
}
.download a:link{
color: #FFFF00;
}
.download a:hover{
text-decoration: underline;
}
Flash won't honor the .download anchor subclass.
I will pay in copious amounts of emoticons for a solution.
Thanks
View Replies !
View Related
Links In Input Text Field?
Bonjour...
Ok, need some educating on this topic, I want to know if there is anyway i can wack some links in a txt file which will then be dynamically uploaded to the relevant textfield so the user can be transported to whereever.
Basically, i want to produce links within a txt file. Is this possible and if not what do you guys recommend, if anything??Hmmmmmm??
Ta.
Cam.
View Replies !
View Related
Links In Text Field Capabilities?
I have some text fields in Flash MX and some of the words of the text are links to websites. I just highlight the text I want to make a link and then type the URL in the link area of the properties panel... everything is OK there. But I was wondering if there is any way to do any kind of other actionscripting with those "linked" areas. For example, I was wondering if you could link (or in other words GotoAndPlay) to an area of the timeline or something like that. Is Flash only able to do external links on text areas?
-- It is pretty cool when you reach the areas that Flash will not go... then it means you are pushing Flash to it's limits... maybe this is one of it's limits?
** And NO I can't just make it a button, because it is a dynamic text field that is being scrolled.
Thanks for any help,
-- K
View Replies !
View Related
Links In An External Text Field
I am using the loadvars tag to load text into my movie from a .txt file. I cannot figure out how to make that text appear as a link. I have tried using this bit of code, where the name of the text box is name and the text is an html code.
name.html = true;
name.htmlText = this.name;
When i do this however, the text just appears as html and not a link. I just don't get it . Thanks in advance.
View Replies !
View Related
Targeting Links To Different Text Field
I have searched everywhere I could think of to figure this out but have failed so far.
I have two dynamic text boxes set to HTML. I am loading a php file that reads article titles into one. I can use the target property on the properties console to change it to open links in _self, _parent, _blank, or _top, but that is not what I want. I would like the links to open in the other text box. Is there an easy way to do this? If not is there a hard way to do it?
I am pulling all the data from a mysql database that contains article titles and text as well as control information like start and end date, author, etc. I am very experienced with php, but new to flash. I have managed to make an mp3 player that loads from the database and some other things so I am not a complete newbie and am not afraid of code. So if there is a way to do this directly in action script that would be good too. Thank you.
View Replies !
View Related
Anchor Links
I've got to be missing something obvious here. In HTML, I could have something like:
[HTML]<a name="section1"></a>[/HTML]
To link to that, I would use:
[HTML]<a href="#section1">link</a>[/HTML]
So in Flash, I would expect I could do something like:
Code:
on(release){
getURL("#section1");
}
But that doesn't seem to work. What am I missing?
View Replies !
View Related
AS 2 - Anchor Links
Hi, i have a problem.
i have one movie clip who is scrolling up and down. now, right from that movie clip, client want to put anchor links to particular text in movie clip.
how i can make that? when i click on link, movie clip scrolls to the point where links point to.
is that possible, i search and search and nothing...
pls, help
View Replies !
View Related
Calculating Input Text Field To Dynamic Field (easy Action Script)
hi. i'm trying to learn action script and i need help with this bit. i'm trying to use action script to calculate my brothers ages based on my own.
using flash MX. i have an input field called "my_age" and two dynamic fields called "eli_age" and "jacob_age". eli is 4 years younger and jacob is 6 years younger. i want to be able to enter my age in the "my_age" input field and then click a button that will calculate their respective ages.
here's the fla if i haven't been clear.
thanks for any/all help,
josh
View Replies !
View Related
Flash Dyn Text Field Links Working In SWF But Not In Director DCR?
Hello,
I have an SWF with a dynamic text field that is calling its content from a text file. In the text file there are HTML (hypertext) links which use the <A> tag. Ultimately, this SWF is being imported into Director as a sprite and exported as a DCR along with some Director elements. When I test these hypertext links in the SWF alone, they work. When I export the DCR with the SWF and test the links, they don't. Is there any way to make these links work in this manner?
Thanks,
Damien
View Replies !
View Related
Adding Buttons/links To A Scolling Text Field
I'm trying to make an online catalog of an art collection, so I have a scrolling text box, with many names listed, and I want each name to link to a new page with images of the artwork. I was planning to make the box with each name as a separate button, until I ran into what seems like the problem of not being able to have buttons in a text field. PLEASE..any suggestions on how to make this work? I need to figure this out urgently..thanks!
View Replies !
View Related
HTML Links W/ Javascript In Flash Text Field...is It Possible?
I am wondering if it's possible to input a javascript command (borderless window or popup window) on a HTML link that's located inside a text field in Flash?
I found a link http://www.flashfoundry.com/details/yes-460-swf-0 that teaches how to add an HTML link inside the Flash text field but it didn't have any tutorial on what I am looking for... I wanted to launch a borderless browser when I click on a hyperlink that's inside a text field.
Thanks in advancd guys!
View Replies !
View Related
HTML Links W/ Javascript In Flash Text Field...is It Possible?
I am wondering if it's possible to input a javascript command (borderless window or popup window) on a HTML link that's located inside a text field in Flash?
I found a link http://www.flashfoundry.com/details/yes-460-swf-0 that teaches how to add an HTML link inside the Flash text field but it didn't have any tutorial on what I am looking for... I wanted to launch a borderless browser when I click on a hyperlink that's inside a text field.
Thanks in advancd guys!
View Replies !
View Related
Place Links To Flv Files In Text Field On Carousel?
I need some help please...
I made everything like in that great carousel tut but i need to make autoplay menu and i dont know how to place some text links in text field that will trigger flv files from cd...
Maybe to use swf that loads into the main movie and place links there but how to write the scipt in xml? And do I need to modify the script in flash?
Thanks!
View Replies !
View Related
Dreamweaver Anchor Links
I've created a site with named anchors within dreamweaver 3 which work fine on a mac but don't work on a pc.
This is the code for the cell in which the link is attached. Is my CSS style causing any hassles or is it something else. Please help!
<tr align="left" valign="middle">
<td width="595" height="40" class="text2"><a href="#top" class="text2">Back
to Top</a></td>
</tr>
View Replies !
View Related
[F8] Using Anchor Links In Flash
is there a way to use anchor links in flash so that you have a button in flash that when clicked it jumps to an anchor in a HTML page? Here is what i tried but it did not work:
Quote:
on (release) {
getURL("<a href="#anchor1"></a>","_self");
}
I would really like help with this the faster the better.
View Replies !
View Related
Named Anchor Links
Boy, do I need help! I've created lovely HTML scrolling text with an external .txt file and have no problem creating links externally to the site. Here's the but....
I can't work out how to:
1. Create links within the HTML that take me to different scenes within the site I'm working on.
2. Create named anchors within the same bit of text. I have used <a name="link"></a> with <a href="#link">Link</a> and all that does is take me straight back to the top of the scrolling text
Any clues?
Thanks in advance.
View Replies !
View Related
Named Anchor Links
Boy, do I need help! I've created lovely HTML scrolling text with an external .txt file and have no problem creating links externally to the site. Here's the but....
I can't work out how to:
1. Create links within the HTML that take me to different scenes within the site I'm working on.
2. Create named anchors within the same bit of text. I have used <a name="link"></a> with <a href="#link">Link</a> and all that does is take me straight back to the top of the scrolling text
Any clues?
Thanks in advance.
View Replies !
View Related
|