> My 1.st problem: Select tiddler (value=tiddler with list) -> run it > through script - still remains unsolved...
The following <<select>> macro lets you pick from a droplist of tiddlers tagged with "someTag", and store the selected title in TW's internal config.options[...] array: <<select =txtSelectedTitle =someTag autoSave rows:1>> where: =txtSelectedTitle is the name of the option variable to use to store the selected value =someTag fills the list with the titles of matching tiddlers autoSave (keyword) causes the value to be stored as soon as a selection is made rows:1 makes a droplist (if rows>1, it's a listbox) Then, in your inline script code, you can write something like: var title=config.options['txtSelectedTitle']; to retrieve the current value from the variable. enjoy, -e --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en -~----------~----~----~----~------~----~------~--~---

