Hi everyone!
I’m trying to create a Tiddler thats alows me to create a new tiddler with the name customize and open it directly. My code only create the tiddler but with a default name and not the name that i introducing in a edit-text input box.
Anyone have any idea how to solve that? I paste here the code that i using it.
<!-- Campo para introducir el título del nuevo tiddler -->
Introduce un título:
<$edit-text tiddler="$:/temp/new-tiddler-title" field="text" tag="input" class="tc-edit-textinput"/>
<!-- Botón para crear el tiddler con ese nombre -->
<$set name="newTitle" filter="[<{$:/temp/new-tiddler-title}>get[text]]">
<$button>
Crear nuevo tiddler
<$action-createtiddler
title=<<newTitle>>
text="Este es un tiddler con etiqueta"
/>
<$action-navigate $to=<<newTitle>>/>
</$button>
</$set>
I’using windows, with google chrome and the last version of TiddlyWiki, 5.3.7
Thanks in advance
Rosi