Hello
I`m trying to add couple of tiddlers by one click
I want to write text and with click it add tiddlers
This code add for me tiddlers, but with constant name:
<$set name=var_title value=This data must be taked from Input">
<$set name=var_title_LV value="""$(var_title)$_LV""">
<$set name=var_title_RU value="""$(var_title)$_RU""">
<$set name=var_title_text value="""<<reftabs "[[$(var_title_LV)$]] [[$(var_title_RU)$]]" "$(var_title_LV)$" "$:/state/tab0">>""">
<$button>
<$action-sendmessage $message="tm-new-tiddler" title=<<var_title>> text=<<var_title_text>>/>
<$action-sendmessage $message="tm-new-tiddler" title=<<var_title_LV>> text=<<var_title_LV>> tabcaption="LV"/>
<$action-sendmessage $message="tm-new-tiddler" title=<<var_title_RU>> text=<<var_title_RU>> tabcaption="RU"/>
<<var_title>>
</$button>
</$set>
</$set>
</$set>
</$set>
I must use <$edit-text/> for input?
How it can be used to set variable?
A.