readme.txt 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. Just a personal freemind flash browser v.0.99
  2. // CHANGES v1.0b
  3. offsetX and offsetY didn't worked with numbers.
  4. new conf attribute cssFile:/css/freemindbrowser.css
  5. new conf attribute baseImagePath: will be added to all the images src's.
  6. ej: baseImagePath=/images/ src="house.gif" --> /images/house.gif
  7. // CHANGES v1.0a
  8. new button "fit".
  9. Now mouse wheel scale map.
  10. // CHANGES v99
  11. minor modifications plus:
  12. some new atributes:
  13. defaultToolTipWordWrap: max width for tooltips.
  14. offsetX: for the center of the mindmap // admit also "left" and "right"
  15. offsetY: for the center of the mindmap // admit also "top" and "bottom"
  16. scaleTooltips: has been requested, default is true
  17. toolTipsBgColor: bgcolor for tooltips ej;"0xaaeeaa"
  18. now you can use "flashfreemind.css" for tooltips stile:
  19. p {
  20. font-family: Arial;
  21. color: #664400;
  22. }
  23. max_alpha_buttons: for dynamic view of buttons
  24. min_alpha_buttons: for dynamic view of buttons
  25. buttonsPos: "top" or "bottom"
  26. /////CHANGES v98
  27. added sad icon :(
  28. modiffied some other for better looking
  29. somo suport for freemind 9, for richcontent. It doesn't work very well.
  30. some new options on the html configuration.
  31. //for hiding the upper options
  32. // default="false"
  33. fo.addVariable("justMap","true");
  34. //for hiding shape of the main node
  35. // default="false"
  36. fo.addVariable("mainNodeShape","none");
  37. ////V97////
  38. It does only load jpg's images (limitation of flash7 and olders), in this versión, if you have flash8
  39. will load png and gif.
  40. it will improve with time.
  41. For the easy of development flashout (http://www.potapenko.com/flashout/) have
  42. been used with Eclipse.
  43. USE:
  44. - insert in any browser page like in the example.
  45. CONFIGURATION:
  46. All this variables can be added in the script. None of then if needed, they all
  47. have default values.
  48. //Where to open a link:
  49. //default="_self"
  50. fo.addVariable("openUrl", "_self");
  51. // for changing the WordWrap size
  52. fo.addVariable("defaultWordWrap","300"); //default 600
  53. // for changing to old elipseNode edges
  54. fo.addVariable("noElipseMode","anyValue");
  55. // IF we want to initiate de freemind with al the nodes collapset from this level
  56. // =default "-1" that means, do nothing
  57. fo.addVariable("startCollapsedToLevel","1");
  58. // Initial mindmap to load
  59. // default="index.mm"
  60. fo.addVariable("initLoadFile", "index.mm");
  61. // To create de main node with a diferent shape. // default="elipse "
  62. fo.addVariable("mainNodeShape", "rectangle");
  63. //set max width of a text node
  64. // default="600"
  65. fo.addVariable("defaultWordWrap", "600");
  66. //width of snapshots
  67. // default="600"
  68. fo.addVariable("ShotsWidth", "600");
  69. //generate snapshots for all the mindmaps reachable from throught the main mindmap
  70. // default="false"
  71. fo.addVariable("genAllShots", "true");
  72. //for every mindmap loaded start the visualization with all the nodes unfolded
  73. // default="false"
  74. fo.addVariable("unfoldAll", "true");
  75. CONFIGURATION OLD MODE:
  76. For iexplorer
  77. <param name="FlashVars" value="initLoadFile=index.mm"/>
  78. For others
  79. <embed FlashVars="initLoadFile=index.mm"