Re: Dynamic nodes?

2008-04-07 Thread Edward K. Ream
On Mon, Apr 7, 2008 at 12:13 AM, Alex Polite [EMAIL PROTECTED] wrote: I'd like to have a node that is a function of some other node/nodes. Sort of like in a spreadsheet. If node A is a function of nodes B and C it should get automatically updated in the view whenever B or C are changed.

Re: Dynamic nodes?

2008-04-07 Thread Alex Polite
2008/4/7, Edward K. Ream [EMAIL PROTECTED]: Write a script :-) p.bodyString() is the body text of node p, so what you want is a script that will update your spreadsheet nodes. Something like: for p in c.allNodes_iter(): if spreadSheetEval(p): myEval(p) You define