Hi Emily. There are a couple of options
1) have a detection page with no frames. 2) you can use the lower level APIs for SWFObject 2.x ( see http://code.google.com/p/swfobject/wiki/api ). Specifically createSWF() and showExpressInstall(). e.g. <script type="text/javascript" src="swfobject.js"></script> <script type="text/javascript"> function cancelFunction() { alert("do somethig now that expressInstall has run"); } if (swfobject.hasFlashPlayerVersion("10")) { var fn = function() { var att = { data:"flashContent.swf", width:"300", height:"120" }; var par = {}; var id = "myContent"; swfobject.createSWF(att, par, id); }; } else { var fn = function() { var att = { data:"expressInstall.swf", width:"600", height:"240" }; var par = {}; var id = "myContent"; swfobject.showExpressInstall(att, par, id, cancelFunction); } } swfobject.addDomLoadEvent(fn); </script> Cheers, Aran On Fri, Jul 9, 2010 at 11:06 AM, Emily Christiansen < [email protected]> wrote: > Hello everyone, > > I am pretty new to swfobject, but after a search of Google didn't turn > up any answers, I am turning to all of you. I have a page that is laid > out using frames. The top frame contains the naviagtion and the bottom > frame contains the content. I am using embedSWF to embed flash into > the bottom frame when I need to, and I am using the expressInstall to > upgrade users if necessary. The problem is that after a user gets > upgraded, the expressInstall closes the browser and reopens it using > the url of the bottom frame. This means that my top navigation frame > is lost. I know that in a previous version there was an attribute > called xiredirecturl that you could use to redirect people when they > were done upgrading flash player. Does such a thing still exist in > SWFObject? > > Thanks, > Emily > > -- > You received this message because you are subscribed to the Google Groups > "SWFObject" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<swfobject%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/swfobject?hl=en. > > -- You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/swfobject?hl=en.
