mindmaps.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  5. <meta name="description" content="freemind flash browser"/>
  6. <meta name="keywords" content="freemind,flash"/>
  7. <title>MINDMAPS</title>
  8. <script type="text/javascript" src="flashobject.js"></script>
  9. <style type="text/css">
  10. /* hide from ie on mac \*/
  11. html {
  12. height: 100%;
  13. overflow: hidden;
  14. }
  15. #flashcontent {
  16. height: 100%;
  17. }
  18. /* end hide */
  19. body {
  20. height: 100%;
  21. margin: 0;
  22. padding: 0;
  23. background-color: #9999ff;
  24. }
  25. </style>
  26. <script language="javascript">
  27. function giveFocus()
  28. {
  29. document.visorFreeMind.focus();
  30. }
  31. </script></head>
  32. <body onLoad="giveFocus();">
  33. <div id="flashcontent" onmouseover="giveFocus();">
  34. Flash plugin or Javascript are turned off.
  35. Activate both and reload to view the mindmap
  36. </div>
  37. <script type="text/javascript">
  38. // <![CDATA[
  39. // for allowing using http://.....?mindmap.mm mode
  40. function getMap(map){
  41. var result=map;
  42. var loc=document.location+'';
  43. if(loc.indexOf(".mm")>0 && loc.indexOf("?")>0){
  44. result=loc.substring(loc.indexOf("?")+1);
  45. }
  46. return result;
  47. }
  48. var fo = new FlashObject("visorFreemind.swf", "visorFreeMind", "100%", "100%", 6, "#9999ff");
  49. fo.addParam("quality", "high");
  50. fo.addParam("bgcolor", "#a0a0f0");
  51. fo.addVariable("openUrl", "_blank");
  52. fo.addVariable("startCollapsedToLevel","3");
  53. fo.addVariable("maxNodeWidth","200");
  54. //
  55. fo.addVariable("mainNodeShape","elipse");
  56. fo.addVariable("justMap","false");
  57. fo.addVariable("initLoadFile",getMap("freeMindFlashBrowser.mm"));
  58. fo.addVariable("defaultToolTipWordWrap",200);
  59. fo.addVariable("offsetX","left");
  60. fo.addVariable("offsetY","top");
  61. fo.addVariable("buttonsPos","top");
  62. fo.addVariable("min_alpha_buttons",20);
  63. fo.addVariable("max_alpha_buttons",100);
  64. fo.addVariable("scaleTooltips","false");
  65. fo.write("flashcontent");
  66. // ]]>
  67. </script>
  68. </body>
  69. </html>