I have a button that creates multiple tiddlers. But I would like some or all of them to be saved and closed rather than left in edit mode. I hunted around tiddlywiki.com and don’t see anything. Is there a way to do this?
If you change up your button to use the ActionCreateWidget widget, then the tiddlers won’t be automatically opened in the first place. Instead, you can navigate to any of the tiddlers that you do want to be opened.
Great! Thanks Mark! Worked like a charm. Result:
Article with source tabs: <$button class="tc-btn-invisible" tooltip=“create tiddlers”>
<$action-sendmessage $message="tm-new-tiddler" title=<<currentTiddler>> />
<$action-createtiddler $basetitle={{{ [<currentTiddler>addsuffix[, sources]] }}} $template="$:/.giffmex/Templates/Sources2readTab" />
<$action-createtiddler $basetitle={{{ [<currentTiddler>addsuffix[, blocks]] }}} $template="$:/.giffmex/Templates/BlocksFromSources" />
create tiddlers for <<currentTiddler>>
</$button>
1 Like