On Monday, February 3, 2014 6:15:26 AM UTC-8, julien23 wrote: > > Hi all > Is there a way to display and (re)calculate simple operations like 108.95 > - 84.72 = 24.23 without the need of an external calculator ? >
There's no *built-in* calculation engine for TWC... However, you *can* embed Javascript code to compute and generate output. Here's two methods: 1) http://www.TiddlyTools.com/#InlineJavascriptPlugin after installing this plugin, you can embed something like: <script> var val=108.95-84.72; return val.toString(); </script> 2) using "evaluated parameters" and <<tiddler>> transclusion of a "hidden section" /% !out $1 !end %/<<tiddler NameOfThisTiddler##out with: {{108.95-84.72}}>> enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios EVERY DONATION IS IMPORTANT! HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... http://TiddlyTools.github.com/fundraising.html#MakeADonation Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/groups/opt_out.

