Opened 16 years ago

Last modified 7 years ago

#3961 new defect

Flash 10 & Firefox — at Version 4

Reported by: anonymous Owned by: Louis Cordier
Priority: normal Component: FreemindMacro
Severity: normal Keywords:
Cc: Trac Release: 0.11

Description (last modified by Ryan J Ollos)

I've noticed that both RHEL5 Firefox 3.0.2 with Flash 10 and Windows XP SP3 Firefox 3.1 beta with Flash 10 won't load the flash plugin at all. The URL for the flash browser of http://www.efectokiwano.net/mm/ however does load correctly. This seems to lead me to believe there is an issue with the way flash is called via the macro. I have the following debug output:

FreemindMacro Debug Log =======================

time: 20081021T153912Z
version: 
content: wiki://GemsBmcUsage/filename.mm,debug
args: [u'wiki://GemsBmcUsage/filename.mm', u'debug']
kwargs: {}
formatter.href.base: /trac/development

script:

            $(document).ready(function() {
                $("#flashcontent01").mouseover(function() {
                    document.visorFreeMind01.focus();
                });
                
                var fo = new FlashObject("/trac/development/chrome/freemind/swf/visorFreemind.swf", "visorFreeMind01", "100%", "100%", 6, "#9999ff");
                
                fo.addParam("quality","high");
                fo.addParam("bgcolor","#a0a0f0");
                fo.addVariable("openUrl","_blank");
                fo.addVariable("startCollapsedToLevel","3");
                fo.addVariable("maxNodeWidth","200");
                fo.addVariable("mainNodeShape","elipse");
                fo.addVariable("justMap","false");
                fo.addVariable("initLoadFile","/trac/development/raw-attachment/wiki/GemsBmcUsage/filename.mm");
                fo.addVariable("defaultToolTipWordWrap",200);
                fo.addVariable("offsetX","left");
                fo.addVariable("offsetY","top");
                fo.addVariable("buttonsPos","top");
                fo.addVariable("min_alpha_buttons",20);
                fo.addVariable("max_alpha_buttons",100);
                fo.addVariable("scaleTooltips","false");
                fo.addVariable("baseImagePath","/trac/development/raw-attachment/wiki/GemsBmcUsage/");
                fo.addVariable("CSSFile","/trac/development/chrome/freemind/css/flashfreemind.css");
                //fo.addVariable("toolTipsBgColor","0xa0a0f0");
                //fo.addVariable("genAllShots","true");
                //fo.addVariable("unfoldAll","true");
                fo.write("flashcontent01");
            });

Change History (4)

comment:1 Changed 16 years ago by Louis Cordier

If just committed some code [4559] it is now working on Flash 10 but I think it might break on some versions of IE. Test and let me know. Thanks.

comment:2 Changed 16 years ago by anonymous

Thanks,

I can confirm that 4559 does work on Firefox 3.1 with Flash 10, Firefox 3.0.2 with Flash 10 and Internet Explorer 6 with Flash 10.

comment:3 Changed 16 years ago by anonymous

Oh one more thing though - IE6 does throw an error 'document.visorFreemind01' is null or not an object.

Line: 72 Char: 21

comment:4 Changed 7 years ago by Ryan J Ollos

Description: modified (diff)
Note: See TracTickets for help on using tickets.