Can anyone explain why I might see the following? I have a simple Accordion effect made with Scriptaculous:

        var tog = function(){
                var params = {duration:0.2};
                if (this.next('p')) {
                        Effect.toggle(this.next('p'),'blind',params);
                }else{
                        if(this.up().next('p')){
                                
Effect.toggle(this.up().next('p'),'blind',params);
                        }
                }
        };

It works fine in all browsers. But while watching the page in Safari's error console, and clicking the header over a Flash movie, I see an incrementing error related to the Flash movie itself: "Failed to load resource: cancelled". If I open and close the accordion effect, hiding and showing the Flash movie, the page works perfectly, but that error repeats every time after the first time the movie shows. The other header on the page reveals a static JPEG image, and nothing happens in the console when that opens and closes.

Here's a live example, extracted from my Rails project, if you want to see it in the wild. http://scripty.walterdavisstudio.com/problem

Thanks,

Walter

--
You received this message because you are subscribed to the Google Groups "Prototype 
& script.aculo.us" group.
To post to this group, send email to prototype-scriptacul...@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.

Reply via email to