Make an action run only once as soon as I apply a prototype to a note

Yup, there sure is. :slight_smile:

Try this:

if{$Checked=false}
   If($Prototype=="Thoughts"){$Container="/Content/Thoughts";};
   $Checked=true;
   $RuleDisabled=true;
};
if($Checked==false){RuleDisabled=false;};

This will only move the notes when checked is false. Once the notes are moved it will turn checked to true and disable the running of the rule for the note.

If you manually uncheck the check, it will run the rule again.

You’ll want to make it $EdictDisabled=...etc. if you’re using an Edict and not a Rule.

Note: I use this quite a bit in my project management file: Tinderbox Training Video 26 - Daily Journal Time Tracking Project Management Part 1 - #27 by TomD.

1 Like