Even going between the pages 10 times, I still don't get the error. We need
more guinea pigs...

That being said we still need to isolate whether the issue is a SWFObject or
SWFaddress issue. Can you please make test pages which does not include
SWFAddress js include or call SWFaddress methods in your swf (just use a
standard getURL call to move between the FR and EN pages).

If the error still occurs when there are no other external factors then we
know there is something wrong with the SWFObject implementation on the page.


I don't think that swfobject is the culprit here however as you can view the
pages individually as many times and refresh without getting the error yes?


As Bobby has said in previous threads, operation aborted errors "usually
happen when you try to manipulate the 
IE DOM, while it has it internally flagged as locked. Sometimes it is also
caused by nesting errors, so first please make sure that your page is set up
correctly and contains no errors. " 



Let's keep your test pages nice and simple like the below (I know the mark
up is correct on these):

FR

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml"; lang="en" xml:lang="en">
        <head>
                <title></title>
                <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
                <script type="text/javascript" src="swfobject.js"></script>
                <script type="text/javascript">
                        swfobject.registerObject("bisco_fr", "9.0.0",
"expressInstall.swf");
                </script>
        </head>
        <body>
                <div>
                        <object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="870"
height="776" id="bisco_fr">
                                <param name="movie" value="bisco-fr.swf" />
                                <!--[if !IE]>-->
                                <object type="application/x-shockwave-flash"
data="bisco-fr.swf" width="870" height="776">
                                <!--<![endif]-->
                                        alt - FR
                                <!--[if !IE]>-->
                                </object>
                                <!--<![endif]-->
                        </object>
                </div>
        </body>
</html>


EN

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml"; lang="en" xml:lang="en">
        <head>
                <title></title>
                <meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
                <script type="text/javascript" src="swfobject.js"></script>
                <script type="text/javascript">
                        swfobject.registerObject("bisco_en", "9.0.0",
"expressInstall.swf");
                </script>
        </head>
        <body>
                <div>
                        <object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="870"
height="776" id="bisco_en">
                                <param name="movie"
value="http://www.bisco.ca/en/bisco-en.swf"; />
                                <!--[if !IE]>-->
                                <object type="application/x-shockwave-flash"
data="http://www.bisco.ca/en/bisco-en.swf"; width="870" height="776">
                                <!--<![endif]-->
                                        alt - EN
                                <!--[if !IE]>-->
                                </object>
                                <!--<![endif]-->
                        </object>
                </div>
        </body>
</html>



-----Original Message-----
From: [email protected] [mailto:[email protected]] On
Behalf Of [email protected]
Sent: Thursday, 19 February 2009 11:53 AM
To: SWFObject
Subject: Re: Operation aborted in Internet Explorer


I forgot to tell, sometime the problem doesn't occur on the first try,
but the second time, I almost always get the error.
What I mean with one try is all the step I described above.

Thanks!

On Feb 18, 7:40 pm, "[email protected]" <[email protected]>
wrote:
> I commented the swfaddress includes, and I still get the error.
> On IE7 xp and Vista
>
> Here's my way of encountering the problem :
> I go on another site (google for example) and delete my IE cache.
> Next, I go towww.bisco.caand click english version.
> On the next page, I get the IE error.
>
> This doesn't happen if :
> cache is not empty before loading the page
> you go directly to the pagewww.bisco.ca/en/
>
> - Julien
>
> On Feb 18, 5:12 pm, "Aran Rhee" <[email protected]> wrote:
>
>
>
> > I just tested it now, and still don't get the error?
>
> > Can anyone else verify either way?
>
> > BTW- Have you isolated the issue as a swfobject issue rather than a
> > swfaddress related one? (does it still happen with no swfaddress
includes /
> > swfaddress calls)
>
> > Aran
>
> > -----Original Message-----
> > From: [email protected] [mailto:[email protected]] On
>
> > Behalf Of [email protected]
> > Sent: Thursday, 19 February 2009 8:41 AM
> > To: SWFObject
> > Subject: Re: Operation aborted in Internet Explorer
>
> > Hi Aran, thanks for your input.
>
> > I did as you told, ie fix id case and put all the js in the head, now
> > the error is occurring every time I try to load the english page
> > uncached on my computer.
> > So you should now see the error too.
>
> > Is there anything else I can try?
>
> > Thanks!
>
> > - Julien Brassard
>
> > On Feb 17, 8:45 pm, "Aran Rhee" <[email protected]> wrote:
> > > The swfobject and swfaddress js includes and code should definitely be
in
> > > the <head> otherwise your page will render before the replacement can
take
> > > place. You will see alt content etc.
>
> > > SWFobject 2.x code only runs on the ondomready event, so there is no
> > reason
> > > to defer etc.
>
> > > BTW - I cannot replicate the error on my IE7 / Vista set up.
>
> > > One thing you might want to fix up is the case sensitivity of your dom
id
> > > for the flash object. You want to make sure your id is correct and
> > > consistent. You have defined it as "bisco_fr" / "bisco_en", but on
your
> > > register calls you are referencing it as
> > > swfobject.registerObject("Bisco_fr"... and
> > > swfobject.registerObject("Bisco_en"...
>
> > > Aran
>
> > > -----Original Message-----
> > > From: [email protected] [mailto:[email protected]]
On
>
> > > Behalf Of [email protected]
> > > Sent: Wednesday, 18 February 2009 12:11 PM
> > > To: SWFObject
> > > Subject: Operation aborted in Internet Explorer
>
> > > Hi guys!
>
> > > First off all, thank you so much for the hard work you put into this!
>
> > > Here's my problem :
> > > I installed swfobject and swfaddress on the following
:http://www.bisco.ca
>
> > > Now, the problem only appears when you click "english version" at the
> > > center left, with the site uncached, I get the following error :
> > > Internet Explorer cannot open the Internet site - Operation aborted.
>
> > > I know this is a problem a lot of people are getting, but it seems
> > > like I tried every solution I found such as updating to the latest
> > > SWFObject version, moving the JS to the bottom of the code and adding
> > > defer="defer".
>
> > > Also, the problem doesn't seem to occur anymore on my 3 XP/Vista PCs
> > > with IE7, but my client SWEARS he still gets the error with the site
> > > uncached.
>
> > > Can you guys help me getting rid of this annoying problem?
>
> > > Any help greatly appreciated.
>
> > > Thanking you all in advance.
>
> > > - Julien Brassard- Hide quoted text -
>
> > > - Show quoted text -- Hide quoted text -
>
> > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -



--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to