OK,
I see two spots in your code where you are using variables that are not
local to the ttt macro. I've always had problems when I don't pass in the
variables explicitly
Try calling the macro with
<$macrocall $name="ttt" listName=<<TestList>>
tiddlerName=<<currentTiddler>> />
And change the macro like this so it passes in the variables and makes them
local:
\define ttt(listName, tiddlerName)
<$radio tiddler='$:/temp/generated-list-demo-state-$listName$'
value="[[10517]]"> целая пицца</$radio><br>
<$radio tiddler='$:/temp/generated-list-demo-state-$listName$'
value="[[10011]]"> кусок пиццы</$radio>
<$tiddler tiddler={{$:/temp/generated-list-demo-state-$listName$}}>
<$list filter="[[$tiddlerName$]]" > <span class="textboxtop textboxwhite ">
{{||$:/_tile_images}} </span>
</$list>
</$tiddler>
\end
<$set name=TestList value=<<currentTiddler>> >
<<ttt>>
</$set>
--
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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/cd1cd1e6-258d-408b-b835-05db7008ad3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.