I would like a way of locking down my TW so data can be entered, copy and pasted into another app but the changed TW itself can not be saved. I am using this TW as a form entry app and the completed form data needs to be inserted into another app. For privacy and security reasons, we do not want to save the enterred data in this TW.
I have investigated the Control Panel and can see how to hide the red save button and other toolbar buttons , (eg. edit, control panel, auto save, etc) but after I set the save button setting, I need to save my âlocked downâ TW and can not see a way to do that.
Can you use a hotkey? ctrl+S works for me (single file setup, open in a Windows desktop browser).
However, in light of your underlying motivationâŚ
Personally, Iâd just write the input data to a set of tiddlers that will be excluded by the Saver Filter, which you can modify in $:/config/SaverFilter (determines what triggers the visual âdirtyâ state) and $:/core/save/all (determines what actually gets saved). By default, any tiddlers with the $:/temp prefix wonât get saved, so that would be my go-to for this sort of thing, but you could define any filter you likedâe.g. -[tag[Job]] if you were assigning the âJobâ tag to each new tiddler generated by the form.
EDIT: To avoid modifying the core tiddler, you can define a new global macro in a separate tiddler with the $:/tags/Global tag, as documented in the Saving Mechanism: