Changing Links In Html Not Flash
ok say I have a swf button that on press takes me to a new url. Is there a way to change the link in the html rather than the flash? thanks
FlashKit > Flash Help > Flash General Help
Posted on: 07-15-2003, 02:53 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Changing Flash Button Links Thru HTML-Possible?
I've got client who wants to be able to change the links from buttons with a the swf. However I'm not willing to give up the fla.
I have heard that you can set these url links thru the HTML Source by using variables. Is this true? If so what settings/script would I need to use with in Flash?
Changing Movies From Html Links?
Not sure if this is a noob question or not, better safe than sorry probably.
But anyway what I have is shown here:
On the left is an iframe with thumbnail images, and on the right are the larger versions of the image contained with in an flash document (did this to help stop copyright problems + nice looking loader ). Anyway, question is, how can I change the flash movie depending on which thumbnail is selected? Ie click the thumbnail and the corresponding movie loads on the right. I realise the answer probably wont be directly using flash, probably javascript or something, but if anyone has an answer that would be great.
~ Thanks
PS not a total noob here, just lost my old acc
Changing Code To Load External Swfs Instead Of Html Links
Hi
So I've purchased a flash nav menu with some actionscript that's a lot more advanced than my skills. All I want to do is change the code so that i can make the buttons load external swfs instead of launching an html window. Any help would be really apreciated, I suspect it's some thing minor, but I can't figure it out. I've posted the script below, alot of it controls the look of the menu, I trimmed a bit off the end because the post was too long, I'm just concerned with the links part. Thanks in advance.
function subnum(i)
{
var inNum = 1;
var maxNum = 0;
while (inNum > maxNum)
{
if (this["sub" + i]["sub" + i + inNum] == undefined)
{
maxnum = inNum + 1;
continue;
} // end if
++inNum;
} // end while
max = 0;
return (inNum - 1);
} // End of the function
function onNout(n)
{
if (!n && _root.page)
{
n = _root.page;
benm = _root.page;
if (_root.page)
{
this["sub" + _root.page]["sub" + _root.page + _root.spage].frm(1);
} // end if
}
else
{
this["sub" + _root.page]["sub" + _root.page + _root.spage].frm();
} // end else if
for (i = 1; i <= num; i++)
{
if (n)
{
if (n == i)
{
this.ma.coloring(this.ma, i, 1);
this["mtxt" + i].alphaNfrmNmovXY(0, 1, undefined, undefined);
this["omtxt" + i].alphaNfrmNmovXY(100, undefined, undefined, undefined);
this.bar.subControler(_root["omtxt" + i]._x, _root["omtxt" + i]._width + 7, 100);
this["mline" + i].alphaNfrmNmovXY(0, 1, undefined, undefined);
this["mline" + (i - 1)].alphaNfrmNmovXY(0, 1, undefined, undefined);
this.bg._x = this["mtxt" + i]._x - 20;
this.bg._width = subw[i] + 20;
this["sub" + i]._y = 62;
this["sub" + i]._x = Math.round(subx[i]);
this["sub" + i]._alpha = 100;
this.bw.alphaNfrmNmovXY(100, 1, undefined, undefined);
}
else
{
this["mtxt" + i].alphaNfrmNmovXY(100, 1, undefined, undefined);
this["mline" + i].alphaNfrmNmovXY(100, 1, undefined, undefined);
this["omtxt" + i].alphaNfrmNmovXY(0, undefined, undefined, undefined);
this.bw.alphaNfrmNmovXY(0, 0, undefined, undefined);
this["sub" + i]._y = 400;
} // end else if
this.nbtn.frm(1);
continue;
} // end if
this.ma.coloring(this.ma, 0, 0);
this.bw.alphaNfrmNmovXY(100, 0, undefined, undefined);
this["mtxt" + i].alphaNfrmNmovXY(100, 0, undefined, undefined);
this["omtxt" + i].alphaNfrmNmovXY(0, undefined, undefined, undefined);
this["mline" + i].alphaNfrmNmovXY(100, 1, undefined, undefined);
this["sub" + i]._y = 400;
this.nbtn.frm(0);
} // end of for
} // End of the function
function init()
{
_global.num = 6;
_global.onum = 4;
_global.sub = new Array();
_global.subw = new Array();
_global.subx = new Array();
counter = 1;
for (i = 1; i <= num; i++)
{
this.nbtn.gotoAndStop(1);
this["mtxt" + i].gotoAndStop(1);
sub[i] = subnum(i);
subw[i] = this["sub" + i]._width;
subx[i] = this["sub" + i]._x;
this["sub" + i]._alpha = 0;
this.ma.gotoAndStop(1);
this["btn" + i].onRollOver = function ()
{
pagerControl(1);
nm = benm = this._name.substring(3, 4);
onNout(nm);
};
this["btn" + i].onRollOut = this["btn" + i].onReleaseOutside = function ()
{
pagerControl(2);
onNout();
nm = benm = this._name.substring(3, 4);
};
this["btn" + i].onRelease = function ()
{
name = this._name.substring(3, 4);
getURL(_root["connURL" + name + "0"], _root["connGET" + name + "0"]);
};
for (n = 1; n <= sub[i]; n++)
{
this["sub" + i]["sub" + i + n].gotoAndStop(1);
this["sub" + i]["sub" + i + n].onRollOver = function ()
{
pagerControl(1);
nm = benm = this._name.substring(3, 4);
onNout(nm);
this.frm(1);
};
this["sub" + i]["sub" + i + n].onRollOut = this["sub" + i]["sub" + i + n].onReleaseOutside = function ()
{
pagerControl(2);
onNout();
this.frm(0);
};
this["sub" + i]["sub" + i + n].onRelease = function ()
{
name = this._name.substring(3, 5);
getURL(_root["connURL" + name], _root["connGET" + name]);
};
} // end of for
} // end of for
this.bg.onRollOver = function ()
{
pagerControl(1);
nm = benm;
onNout(nm);
};
this.bg.onRollOut = this.bg.onReleaseOutside = function ()
{
pagerControl(2);
nm = benm = undefined;
onNout();
};
this.nbtn.onRelease = function ()
{
if (counter == 1)
{
this.frm(1);
nBtnControler(1);
this._parent.masd.Check = true;
++counter;
} // end if
};
this.nbtn.onRollOver = function ()
{
this.frm(1);
};
this.nbtn.onRollOut = function ()
{
this.frm(0);
};
this.bg.useHandCursor = false;
this.masd.inbt.onRollOver = function ()
{
};
this.masd.inbt.useHandCursor = false;
for (i = 1; i <= onum; i++)
{
this["obtn" + i].onRollOver = function ()
{
};
this["obtn" + i].onRollOut = this["obtn" + i].onReleaseOutside = function ()
{
};
this["obtn" + i].onRelease = function ()
{
name = this._name.substring(4, 5);
getURL(_root["oURL" + name], _root["oGET" + name]);
};
} // end of for
} // End of the function
function nBtnControler(st)
{
var i = 1;
while (i <= num)
{
if (st == 1)
{
onNout();
this["btn" + i]._visible = true;
this.bg._visible = true;
this.m_mask.xwidth(Stage.width);
this["obtn" + i]._alpha = 100;
this["oline" + i]._alpha = 100;
}
else if (_root.page != undefined || _root.spage != undefined)
{
onNout();
}
else
{
this.m_mask._width = 0;
this["mtxt" + i]._alpha = 0;
this["btn" + i]._visible = false;
this.bg._visible = false;
this.bar._alpha = 0;
this["mline" + i]._alpha = 0;
this["obtn" + i]._alpha = 0;
this["oline" + i]._alpha = 0;
} // end else if
++i;
} // end while
} // End of the function
function pagerControl(st)
{
if (st == 1)
{
_root.pager.gotoAndStop(1);
_root.page = "";
}
else if (st == 2)
{
_root.pager.play();
} // end else if
} // End of the function
Stage.align = "";
Stage.scaleMode = "noScale";
Stage.showMenu = false;
_root.connURL10 = "125.html";//COMPANY
_root.connURL11 = "125.html";
_root.connURL12 = "125.html";
_root.connURL13 = "125.html";
_root.connURL14 = "125.html";
_root.connURL15 = "125.html";
_root.connURL16 = "125.html";
_root.connURL20 = "125.html";//BUSINESS
_root.connURL21 = "125.html";
_root.connURL22 = "125.html";
_root.connURL23 = "125.html";
_root.connURL24 = "125.html";
_root.connURL30 = "125.html";//PRODUCTS
_root.connURL31 = "125.html";
_root.connURL32 = "125.html";
_root.connURL33 = "125.html";
_root.connURL34 = "125.html";
_root.connURL35 = "125.html";
_root.connURL40 = "125.html";SERVICE
_root.connURL41 = "125.html";
_root.connURL42 = "125.html";
_root.connURL43 = "125.html";
_root.connURL44 = "125.html";
_root.connURL45 = "125.html";
_root.connURL50 = "125.html";SOLUTION
_root.connURL51 = "125.html";
_root.connURL52 = "125.html";
_root.connURL53 = "125.html";
_root.connURL54 = "125.html";
_root.connURL60 = "125.html";SUPPORT
_root.connURL61 = "125.html";
_root.connURL62 = "125.html";
_root.connURL63 = "125.html";
_root.connURL64 = "125.html";
_root.connURL65 = "125.html";
_root.connURL66 = "125.html";
_root.connGET10 = "";
_root.connGET11 = "";
_root.connGET12 = "";
_root.connGET13 = "";
_root.connGET14 = "";
_root.connGET15 = "";
_root.connGET16 = "";
_root.connGET20 = "";
_root.connGET21 = "";
_root.connGET22 = "";
_root.connGET23 = "";
_root.connGET24 = "";
_root.connGET30 = "";
_root.connGET31 = "";
_root.connGET32 = "";
_root.connGET33 = "";
_root.connGET34 = "";
_root.connGET35 = "";
_root.connGET40 = "";
_root.connGET41 = "";
_root.connGET42 = "";
_root.connGET43 = "";
_root.connGET44 = "";
_root.connGET45 = "";
_root.connGET50 = "";
_root.connGET51 = "";
_root.connGET52 = "";
_root.connGET53 = "";
_root.connGET54 = "";
_root.connGET60 = "";
_root.connGET61 = "";
_root.connGET62 = "";
_root.connGET63 = "";
_root.connGET64 = "";
_root.connGET65 = "";
_root.connGET66 = "";
_root.oURL1 = "125.html";//HOME
_root.oURL2 = "125.html";//LOGIN
_root.oURL3 = "125.html";//JOIN
_root.oURL4 = "125.html";//SITEMAP
_root.oGET1 = "";
_root.oGET2 = "";
_root.oGET3 = "";
_root.oGET4 = "";
MovieClip.prototype.xwidth = function (tw)
{
var speed = 2.000000E-001;
tw = tw == undefined ? (this._width) : (tw);
this.onEnterFrame = function ()
{
this._width = this._width + (tw - this._width) * speed;
if (Math.abs(tw - this._width) < 1)
{
delete this.onEnterFrame;
} // end if
};
};
MovieClip.prototype.coloring = function (name, n, pb)
{
chg = new Color(name);
var confirm = 0;
this.color0 = "255, 255, 255";
this.color1 = "167, 190, 0";
this.color2 = "0,169,190";
this.color3 = "146, 23, 237";
this.color4 = "255, 5, 81 ";
this.color5 = "255, 102, 0";
this.color6 = "227,0,16";
col = this["color" + n].split(",", 3);
cRed = col[0];
cGreen = col[1];
cBlue = col[2];
var spd = 4;
this.onEnterFrame = function ()
{
confirm = 0;
if (pb == 1)
{
this.nextFrame();
if (this._currentframe == this._totalframes)
{
++confirm;
} // end if
}
else
{
this.prevFrame();
if (this._currentframe == 1)
{
++confirm;
} // end if
} // end else if
with (name)
{
thisColor = chg.getTransform();
thisColor.rb = thisColor.rb + (cRed - thisColor.rb) / spd;
thisColor.gb = thisColor.gb + (cGreen - thisColor.gb) / spd;
thisColor.bb = thisColor.bb + (cBlue - thisColor.bb) / spd;
chg.setTransform(thisColor);
if (Math.abs(thisColor.rb - cRed) <= 8)
{
thisColor.rb = cRed;
thisColor.gb = cGreen;
thisColor.bb = cBlue;
chg.setTransform(thisColor);
++confirm;
} // end if
} // End of with
if (confirm == 3)
{
delete this.onEnterFrame;
} // end if
};
};
MovieClip.prototype.mcAlphaMove = function (txa, txb, tyc, tyd, al)
{
var speed = 2.000000E-001;
al = al == undefined ? (0) : (al);
txa = txa == undefined ? (this._x) : (txa);
txb = txb == undefined ? (this._y) : (txb);
tyc = tyc == undefined ? (this._x) : (tyc);
tyd = tyd == undefined ? (this._y) : (tyd);
al = al == undefined ? (this._alpha) : (al);
this.onEnterFrame = function ()
{
this._x = this._x + (txa - this._x) * speed;
this._y = this._y + (txb - this._y) * speed;
this._alpha = this._alpha + (al - this._alpha) * speed;
if (Math.abs(this._x - txa) < 1 && Math.abs(txb - this._y) < 1 && Math.abs(al - this._alpha) < 1)
{
this._x = tyc;
this._y = tyd;
delete this.onEnterFrame;
} // end if
};
};
MovieClip.prototype.frm = function (pb)
{
this.onEnterFrame = function ()
{
if (pb == 1)
{
this.nextFrame();
if (this._currentframe == this._totalframes)
{
delete this.onEnterFrame;
} // end if
}
else
{
this.prevFrame();
if (this._currentframe == 1)
{
delete this.onEnterFrame;
} // end if
} // end else if
};
};
MovieClip.prototype.alphaNfrmNmovXY = function (al, pb, x, y)
{
var spd = 4;
var confirm = 0;
al = al == undefined ? (0) : (al);
x = x == undefined ? (this._x) : (x);
y = y == undefined ? (this._y) : (y);
this.onEnterFrame = function ()
{
confirm = 0;
if (pb == 1)
{
this.nextFrame();
if (this._currentframe == this._totalframes)
{
++confirm;
} // end if
}
else
{
this.prevFrame();
if (this._currentframe == 1)
{
++confirm;
} // end if
} // end else if
this._alpha = this._alpha + (al - this._alpha) / spd;
if (Math.abs(this._alpha - al) < 4)
{
this._alpha = al;
++confirm;
} // end if
this._x = this._x + (x - this._x) / spd;
this._y = this._y + (y - this._y) / spd;
if (Math.abs(this._y - y) < 1 && Math.abs(this._x - x) < 1)
{
this._x = x;
this._y = y;
++confirm;
} // end if
if (confirm == 3)
{
delete this.onEnterFrame;
} // end if
};
};
Flash Links Changing Whole Page
www.guitar.com
The flash portion of the site contains the nav links for the rest of the page, and when clicked change the page below the flash, but in most cases it doesn't look as though the flash is being reloaded.
Here's the question--
Is the flash portion changing everything below it without reloading the actual flash, or is the whole page reloading? I like this effect, and would rather use it than creating the entire site with flash, but can't seem to figure out how it is being done. Seems like frames or something like that, but frames are evil, so I'm guessing it is something else.
Suggestions/help/link to tuts would be appreciated.
Guph
Shockwave Flash Changing Links
Someone made my logo out of ShockWave Flash. The problem is the URL embedded in the graphic is incorrect and I have to change it.
I have Swish 2.0. Is it possible to import this logo and change my link to the correct one. I tried to use the import but it keeps bringing it in as a sprite so the movie does not not work.
Any suggestions would be helpful??????????? thx
Help Changing Flash Links In Server Site
Hi, I'm new here and trust you'll help.
Here's a problem that many of you might now how to go about and solve.
I created a swf movie (4 actually) with buttons that when pressed bring different static images. That works alright local and in the server. The images in this menu are linked to another swf file. These are little animations that come up in a parent window, some are QT movies. These also work fine in local, but not on the server site, message is NOT FOUND or ERROR 404.
Someone suggested to change the links in the server site to absolute. I have 24 images with links! and this means opening the first movie, and changing the get URL in everyone of them.
My assupmtion is this: If I go and change the links to absolute, say http://www.server.com/folder/name.swf instead of /name.swf as it is, the copy in my hardrive won't work. Is this correct? How can I have 2 copies, one for me, one for the server? This is unsound to me. Therefore, there must be another way to do it and I'm sure you have heard or gone through the same before, and can help me. Help me if you please, He-e-e-e-lp me, Heeeeelp.... meeeeeee.!!!(sound)
Much appreciated.
New To Flash Newer To Html How Do I Test Flash-html Links?
im making a site but becuase of file size restrictions my flash has to be split up and put on html pages bit by bit, now i need my menu to link to html pages and so not frames in flash anymore. So far i realise that id need for example getURL "croject/project/news'_blank'"
however i want to test my html with the links on my PC as it is not server side yet i cant replace THIS
getURL"croject/project/news'_blank'"
WITH THIS
getURL"http://www.blahblahblah/news.htm" because it looks for a web page not there yet as it isnt actually uploaded or existing yet, so how do i test my flash-html link?
um that sounds complex, but is there a quick flash fix, which lets u put in say _something/news which allows it to work as C: drive and/or www. prefixes?
Be greatful for any help
HTML Links In To Flash
Is it possible to link into a Flash movie, a specific frame number or label, from an HTML page? For instance, can I have Link A on a .cfm page link to Frame 50 of mymovie.swf?
thanks!
Html Links To Flash
Hello,
I'm a digital art student in Portugal and I my project this year is to makee a node like structure that works almost as a web browser.
The user will input an url than a node will appear, than I have to open that url count how many href (links), and create as many nodes, than the program will chosse one and do the same as for the first, and so on...
The problem is openning an url than getting the links and make flash recognize them...
So I'm asking for help in:
opening an url and getting all the hrefs (links) in it to a list or something so that flash recognizes one by one
Thank you all
Ricardo
HTML Links -> Flash
If I have standard HTML links in an HTML/Flash Hybrid site, can i make the HTML links affect the flash, (ie show different content)?
THanks
Links From HTML To Flash
I have an html file called “gallery”. I need to link the button “About Artist” to a swf file which is the index file.
On the root of the swf is a movie clip called “copy”. The first 100 frames is the copy for the “home” page. The copy for “about artist” starts on frame 166
How do I tell the HTML “about artist” button to go to the movie clip “copy” on the root of the swf file and go to frame 166?
http://www.mywitchywomen.com/gallery.html
Html Links In Flash
i would like to have a button in flash that is an html link, after creating a button, how to i make it a link? is there a way to make it open in the same window/ a different window?
HTML Links In Flash
Right now I'm trying to create a sized pop-up window for a quicktime VR movie from a button in flash.
heres the actionscript i have for it:
ActionScript Code:
on (press) {
getURL("javascript:openNewWindow('http://www.13thdegree.ent/LMV//srvr.mov','Title','height=344,width=430,toolbar=no,scrollbars=no');");
}
and heres the html code i have for it:
HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>srvr</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<a href="javascript:openNewWindow('http://www.13thdegree.net/LMV/srvr.html','UniversityOfMichigan','height=430,width=330,toolbar=no,scrollbars=no');"></a>
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<embed src="srvr.mov" width="430" height="340" hspace="0" vspace="0" align="absmiddle" name="srvr" />
</body>
</html>
any ideas as to what I'm missing? or why this won't work?
How Do I Mix FLASH Links With HTML Frames?
Hi Everybody,
How do I mix FLASH links with HTML frames?
I'm so confused about FLASH links that go open an HTML FRAME page...
My FLASH movie is on a (HTML) TOP frame ....
( What I need to do look's Like this web site TOP FRAME: http://www.westonfl.org/index_fr.htm )
* How can I ad a LINK to the flash movie to open an HTML page on the MAIN FRAME of the HTML browser?
This is what I did:
* On press
* Get URL ("/sample1.html",window="Main")
( I used the name MAIN for the Frame that change the pages )
__________________________________________________ _
I use the 3 Variables available but didn't work!
* Variables >
"Don't send"
"Send using Get"
"Send using Post"
There is also the WINDOW:
_self
_blank
_parent
_top
Note. In this area I write the name of the FRAME : main
- and nothing happen... ?
___________________________________________
The name of the frame I'm calling is > Main (but nothing happen...)
When I click the link on the MOVIE a window browser open with the page > /sample1.html
but outside the HTML - FRAME not inside, the page JUMP OUT on top of the Browser......... why is that?
Do you know any place where I can find a TUTORIAL relates to this ?
Thank you so much for your help and time!
Sincerely,
Ramon Alicea
Internal Flash Links & Html
Hey Guys n Gals
i dont know if this is possible but in some html text that has been brought in to flash, can i load swf's in to target levels and things like that
Thanks for any help
SOLID
Controling Flash From Html Links
Problem:
i have several links in html, that open always the same pop-up which includes a map.swf.
What I want to do is:
when pressing the 1st html link it opens the map.html(map.swf) and it stops on frame 1 of the swf.
when pressing the 2nd html link it opens the map.html(map.swf) and it stops on frame 2 of the swf.
when pressing the 3rd html link it opens the map.html(map.swf) and it stops on frame 3 of the swf.
and so on... hope somebody can help me... thank you!
Html Links In Flash Mx 2004
Hi, i am using flash mx to pull in swfs and html pages as required into my interface. One such html page has a link which works fine when running in explorer on its own, but when inside the flash interface it fails to locate the page. Unfortunately the link is 144 characters (and i cannot do anything about that and am obligated to link to it), it looks like flash cuts off at 128 charcters for links. Is there a work around to this or is it just 'tough luck'? Any help would be much appreciated. Thanks in advance.
Flash Links And Html Frames
hi
i have frame page , with two frames. one for holding the flash menu , and other for displaying htm pages that the flash menu will request. the problem is that the pages always open in a new page !!! not inside the frame.
the code looks like this:
getURL("main.htm",display);
what's wrong?
Html Links Are Not Clickable Under Flash
I have a drop down navigation in flash. The wmode is set to transparent. The flash layer is the top layer so when you mouse over the navigation, it covers the html underneath. The flash navigation links work, but the html links only work in the newer IE browsers. The links do not work on a Mac in Safari, Mozilla or Firefox. Is there any way to get the links under Flash to work in the other browsers?
Flash > Javascript (HTML Links)
Not sure if anyone has anything on this, but what im looking to do, is have html links on a page, affect the state of my flash movie.
As far as i can tell, it would be javascript, and eventListner ? For instance, it would be nice to write a small script that i could specify in my link,
<a href="updateFlash('mypage.swf');">my link</a>
And of course flash would take this, to load mypage.swf into its container.
Anyone have some good starting points?
Thanks,
Mike
[F8] HTML With Flash On CD-ROM - Broken Links
This has probably been covered before, but I can't find the answer and I am losing what sanity I have left.
I have a series of HTML pages; some contain Flash, some do not. These need to reside on a CD-ROM and work together. Problem is, links on pages with Flash will not open pages without Flash, and links on pages without Flash will not open pages with Flash. (These are HTML links, not links in the Flash). If I post these pages on my web server they work fine -- unfortunately the client wants to distribute on CD.
The Flash was published with local network security set to Access Local Files Only. Files are embedded using the Active Content Update - HTTP method in Flash 8. None of the pages access or link to anything outside the CD.
What am I missing?
Control Flash With Html Links
Hello, I'm new to this forum, so I may be posting this in the wrong category, but here goes.
I have a series of swfs, same dimensions, that I would like to toggle through on one html page. I would like to have one swf as the default and a series of html links beside it that when clicked load another swf into the same location as the default swf.
What kind of code needs to be applied to the html links? Is that the best way to go about it?
Thanks!
Flash Button Links To Html
I do template: Flash header with some buttons links and a html content. These buttons link with the html file in the main frame(I've done with frames in Dreamweaver.) But it's so ugly, not what i want to
Any advice to solve this problem? Thx so much,
Flash Nav Inserting Html Links Into Div -example-
I have made a flash navigation bar and I want it to link to the pages on the same page:
.................................................. ........................................
.................... http://www.cbsanswer.com/framecomeon.htm ......
Of course I understand frames are outdated. I have read through CCS and read about SSI, but I cannot find how to open content into a Div. You can see what my objective is when you visit the website above.
Two problems:
1.) What is the codeing for linking a flash button to a corresponding div or frame? (I tried programing the MANUFACTURING link to open in the _Parent frame and than tried the name of the frame "mainFrame".)
2.) Can I make sure that the entire navigation is viewable? I had to put this stupid scroll bar in.
I appreciate any advice as I have already checked out every book on the subject and spent two days searching the internet.
*Dan
Links In Flash And HTML Files
Hi,
I hope someone can help me - it is probably a simple thing, but have searched the help files etc.
I have a flash document with 3 buttons, each with links. When I publish the file, the links in the SWF file work fine, but those in the HTML file don't (all other actions are OK).
I doubt this important, but I have Flash CS3 on an offline computer.
Please help!!
Mark.
Flash Anchors And Html Links
forgive my ignorance, i am new to all this...
i have made a flash movie that i want to be able to link to from an external html file. i managed to get this to work by using flash anchors - not as hard as i would have thought, hurrah! but when i use the links, while it jumps to the correct spot in my movie, the rest of the buttons in my flash movie stop working so i can't navigate within it any longer.
i don't understand why this happens because the movie works fine when i don't access it via the html links..
help!!!
Rollover HTML Links In Flash
i have a dynamic text field which has HTML href's in them. Is it possible for flash to change the style of these text links onMouseOver and onClick like the links on this page????
-bentley k. frog
Links: Flash Versus Html
Question....
I made a menu for a website, with a nice way of structuring links, making it easy for the user to see his whereabouts on the site.
The menu links will set HTML pages to load, but when the user is using links from within the HTML, the flash menu will not respond to this, and the user will be on a page not corresponding with the menu anymore.
Does anyone know how to solve this problem with flash MX?
Thanks!
Jan
HTML Text Links While FLASH Is Loading
I'm not sure if this is the right forum for this question. Problem: I have published a FLASH file, then add some text links to the HTML file. Everything works, but over a slow modem connection the text links won't work until the entire FLASH object is loaded. Order in the file does not appear to have any effect. Is there something in the publishing options that would affect this. I don't want slow connections to have to wait to continue on.
Thanks for any help.
HTML Formtted Text And Links In Flash
Hey guys, is there a tutorial on creating dynamic text fields that can diplay HTML formatted text that is loaded into the Flash movie via LoadVars using PHP? I'd like to load in text that can have hyperlinks, be able to set the color etc... They do it on www.flash-db.com Not sure how. When I test my text in the dynamic field and set it to HTML I see all the tags from my HTML. Check it out
http://www.thetouchpage.com/test/news.html
Thanks
Updating Flash Menu With HTML Links
Hello all-
I'm bit newbie-ish in the AS department and I'm currently trying to handle something that probably seems really old to most of you.
I have a flash menu targetting an iframe to update it's content. While this works as expected, the one problem I have is if I include any internal links in the HTML content of that iframe, the flash menu does not update to reflect where that person navigated to.
More specifically, if my flash menu has an "About Us" button, which when clicked it targets the iframe to load "about_us.html"
The "about_us.html" page contains a link called "mission_statement.html", which when clicked brings up the "mission_statement.html" - however, the flash menu does not update to show that the user is looking at "Mission Statement" page - it's still showing "About Us"
I imagine this requires the use of variables, but as I said, I'm a bit AS-stupid (heh) and could use a pointer or two.
Thanks in Advance...
Robs
Links From Html To A Flash Frame Number...
Hey Guys!
I need to know if there is any way to have links in a regular html pato to go to a frame number in a flash movie.
I have a html page with 300 links and a flash movie with 300 frames to match each link.
Thanks for your help.
Lou
Creating Html Links In Flash Menu?
I am having trouble creating html links in my flash menu. I am a newbie and I'm trying to teach myself.
Here's the file
Click Here For The File
HTML Links Used To Control A Flash Movie
Hello,
Anyone tell me if it is possible to use a regular HTML links to load certain movies to appear in a Flash movie? Is this possible?
For example...I have about 5 different links (html) that I want to use to call up certain movies in my original flash movie.
Let me know
Thanks peeps
FLASH + CSS HTML Links Strange Behaviour
hey,
I load external text files using loadvars and also use external css file and I load all content(swf's) in a master.Swf using MovieClipLoader...
Everything works fine, also a:link, a:hover, ...
But when I click on a link, my whole text becomes black...(so not only the link, the complete textfile...). And there's nowhere in the file where I define such thing.
Anyone any idea?
It seems that when I click, the loaded css file stops working or something.
You can check for yourself on www.mochica.be (not quite finished). It doesn't seem to happen the first time you load. But if you skip over to other menu elements, eg first you go to biography, then contacts who also use the same css-file, and then go back to the links, and click on one, all text becomes black... I really don't get it...?!
Html Text With INTERNAL Flash Doc Links........
Hey All,
I'm using dynamic text boxes with html text so as to spec underlines and such. Some links are to other sites and such but some are targeted to flash document itself.
How could I go about setting those links?
I thought invisible buttons but placement is kind of unpredictable.
Is there another way to spec underlined text?
HELP!!!!!
jub
Getting Html Links In Flash Into Blank Page
Hi, I have a Flash site which will read in XML formatted with CSS, but my problem is that the links will not open in pop-ups in Firefox.
I used this format in the xml files:
<a href="www.link.com" target = "_blank">
In IE it works fine but in FF it opens in the same window..
Any advice?
Flash Video Player + Html Links
Howdy,
Ive searched through some previous threads & the internet & I haven't been able to find a solution to my problem.
I was wondering if anyone could guide me to a tutorial , or book or something that will explain how to create a video site that has the flash media player embedded in to a html page, with html links to movies that when
clicked are directed to this flash video player.
I have built a player by following this tutorial here , however this teaches you to direct the content path of the player to just one specific video. So i would like to know how you would go about having a list of links created in html that would tell the video player which movie to play.
I think i understand how i would build this in flash, but i was hoping i could just build the player in flash and have everything else just in html (or php) so it would be quicker to update.
I haven't come across any tutorials on how to have multiple links to the one player, leaving me to think that maybe its a much bigger task than i think it is.
Thanks in advance
Flash MX 2004 / Swf Links To Swf Or Html Link To Swf
Hey guys I am new to Flash MX 2004,
What i am looking for is that a and HTML page that has menu links...
which is HTML coding, and everytime i click on it i want the flash swf file to show up menu in a same page...
I never heard anything about two swf file linking together and interacting in one page..
Is it possible... THANK YOU FOR YOUR TIME...
pls answer as soon as possible...
Opening Flash Links Into HTML Frames
Hello Everyone.
I am trying to create a Flash menu for my site that opens into an HTML frame. I have checked online to try and see how to get it to work, but nothing is working.
I have my action script set to open the links into the frame titled "main", but whenever I test it out, they open in a new window.
on (release) {
getURL("home.html", window="main");
}
I've also tried it without the "window=" part, but still nothing.
Can anyone help me out? Thanks so much!
HELP Opening HTML Links From A Flash Movie
Hi
I am using a dynamic text field rendered as HTML to make a list of links whitin a flash movie. I am using this code to generate the text with links:
ActionScript Code:
amigostext.htmlText = "<font color='#000000'><a href='http://www.ultrashock.com' target='blank'>ultrashock</a></font>";
The problem is that whenever I test the movie whitin flash it works just fine ( opens a new browser window and loads the site), but when I publish the movie ( embeded into HTML) and run it form a browser the link does not work!.... I mean it displays the hand cursor but when you click nothing happens!. What am I doing wrong???
I´ve also tried using getURL and the asfunction methods but I´m still getting the same results!!!
can Anyone PLEASE HELP ME????
Problem With Links In Flash Html Files
Hi everybody,
sorry if this thread is a little basic but im at my wits end (not very long i admit!)
I have recently finished making an interactive map in flash where after zooming in to a specific country, I have created a button symbol which acts as a link to an external webpage. the action script I have used for the link is
on (release) {
getURL("(URL address blocked: See forum rules)");
}
When i test the movie in flash (as swf. file) the link works fine, however when i preview the movie in HTML (or embed the swf. file in an html document) the links just wont work in any browser i try! You can tell the button is clickable but nothing happens when you click it.
I don't know if this is a security issue or something to do with the HTML publishing settings but can't seem to find anything about it.
If anyone can help i would be very grateful. Thanks everyone.
Jack
Flash Links To HTML Page/images Not Loading
We're using a flash navigation to open html pages in an i-frame. The problem is that the images aren't loading properly all the time. It's random but if you just move around clicking the navigation and having pages open in the i-frame, the images will either
a: not load
b: only partially load
c: or they will load fully
If you click the same link a second time (where an image did not load or partially loaded) the image will come up fine. I'm trying to narrow down what could possibly be causing this problem.
Anyone have any experience with this before?
Thanks.
Re: Can I Add HTML Links/data To Buttons In Flash 5 Or MX2004?
'best free porn clip'
(http://debemersv.bravepages.com/p/best-free-porn-clip.html) ,
jxws'anime free pornography'
(http://auahtauauryn.angelcities.com/p/anime-free-pornography.html) ,
gyqq'all american barrell'
(http://giainmeiitl.bravepages.com/k/all-american-barrell.html) ,
cyvj'black pumps'
(http://inaatiabilie.bravepages.com/d/black-pumps.html) , boyb
Re: Can I Add HTML Links/data To Buttons In Flash 5 Or MX2004?
ïðèâåòïèçäó âïåðâûå, 'Ãà éòè ïèçäó'
(http://pizda.rufreeporno.ru/map.html) , ïèçäà âèäåîðîëèêèãîë õóé
îçåðîâ, 'òåëêè ñîñóò õóè' (http://chlen-video.rufreeporno.ru/map.html)
, çà ñóÃóòü õóéñèñüêà Ãþ, 'ñèñüêè à Ãôèñà ÷åõîâà '
(http://siski-zdes.rufreeporno.ru/map.html) , ñèñüêè ôîòî
ëþáèòåëüñêîåâîÃþ÷à ÿ ïèçäà , 'âûëèæó ïèçäó'
(http://pizda-video.rufreeporno.ru/map.html) , äîáà âèòü åáóò ïèçäó ôîòî
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!
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!
|