Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Goto Specific Flash Page

Status
Not open for further replies.

theogary

Programmer
Mar 3, 2003
99
US
I want to send my clients a newletter link. I want this email link to start the flash website and goto the newsletter part of the flash website. Can this be done.
 
I glad this can be achieved. Do you have any code sample or link to sample where this is demostrated
 
Use SWFObject:
Code:
var so = new SWFObject("flashvars.swf", "flash", "320", "240", "8", "#ffffff");
var vars = window.location.search.substr(1).split("&");
for(var i = 0, n = vars.length; i<n; i++){
   var a = vars[i].split("=");
   so.addVariable(a[0], a[1]);
}
so.write("flash");

Kenneth Kawamoto
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top