Hi Kevin
Regarding having a mindmap in a tiddler area - it depends what you are
trying to achieve with this.
I can quite easily get the macro callable from a tiddler however the
problem arises if you call the macro again elsewhere. If you are
planning to have more than 1 mind map on the screen how would you
expect this to work? If you opened a tiddler - would it update both
graphs or just the last one? If I can understand better the use case
I'm sure I can come up with something.
In terms of loading from FreeMind Map, I'm sure this is possible as
this is just a case of traversing an xml file, working out how each
node connects and popping the data into the map/tiddlywiki. A generic
way of traversing xml files is on my to do list, but in the meantime
you may be interested in this macro. Maybe combining this with another
plugin might get you the effect you want?
config.macros.TagMindMapEdge = {};
config.macros.TagMindMapEdge.handler = function
(place,macroName,params,wikifier,paramString,tiddler) {
var from = params[0]; var to = params[1];
if(tiddlytagmindmapobject){
tiddlytagmindmapobject.drawEdge(from,to);
tiddlytagmindmapobject.computeThenPlot();
}
};
Usage:
<<TagMindMapEdge "The Earth" "The Moon">>
On Oct 24, 8:38 am, 27escape <[EMAIL PROTECTED]> wrote:
> Also, now that I notice the mention of Freemind on your TiddlyWiki, if
> you could pull in a freemind map and use that as the basis of the mind
> map and add tiddlers to the nodes that would tick ALL my boxes
>
> <<mindmap file:///some/file/path zoom:"yes">>
>
> kevin
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" 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/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---