vote up 2 vote down star

Hi, I am having a problem with SWF File. I have a SWF File on my HTML page and i need to link it to another HTML i used but the anchor is not working. Any one can help me. How to link a SWF file. Thanks

flag

60% accept rate

6 Answers

vote up 2 vote down check

You can use SWFObject to add a flashvar like this:

<script type="text/javascript">
    var flashvars = {};
    flashvars.targetURL = "http://www.stackoverflow.com";
    var params = {};
    var attributes = {};
    swfobject.embedSWF("myflashmovie.swf", "myAlternativeContent", "800", "600", "9.0.0", false, flashvars, params, attributes);
</script>

That being said, this is assuming that within your Flash movie, it is coded such that the Flash movie is expecting that flashvar and using that link to the stipulated URL

In AS 2.0 it would be:

getURL(_root.targetURL);


In AS 3.0 it would be:

var flashvars:Object = LoaderInfo(this.root.loaderInfo).parameters;
var linkURL = flashvars['targetURL']; 
var link:URLRequest = new URLRequest (linkURL);
navigateToURL(link);
link|flag
vote up 0 vote down

Perhaps you can post a little more info on what you are trying to do. Any actionscript?

link|flag
vote up 0 vote down

I have a Flash Movie on my HTML page. When i click on this movie i want to link this to another HTMl File so onClick it move to my next HTML page same like we make links with . I have tried like this but its not working is there any other way to link a Flash file. Please refer any sample thanks.

link|flag
vote up 0 vote down

Here is a link to a blog post about how to navigate to a url through flash:

Linking to url in action script 3

link|flag
vote up 0 vote down

I need a example of Java Script i don't want to embed the URL code in my flash file. I am using the SWFOBJECT.js File to embed my Flash movie. So is there any parameter or variable with that i can pass my URL so when i click anywhere on my SWF Object it will take me to that page such as "http://www.index.php".

link|flag
Hi Talha, you should try to edit your post to give a better description rather than just adding more replies to the thread. That is the typical way of how to ask questions here is Stack Overflow. – Ronnie Liew Jan 15 at 5:07
vote up 0 vote down

you need actionscript to link your swf. i thinks its getUrl() command

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.