Skip to content

Commit 4ee0b5d

Browse files
committed
clarify docs
1 parent 67e390f commit 4ee0b5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/rgp-lua/finaleplugin-properties.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Default is `true`.
4545

4646
#### NoStore (boolean)
4747

48-
If this is set to `true`, the script will run in “sandbox mode”. After the script has run, any saves made to Finale's database are automatically rolled back, so such a script will never do any permanent edits to a document. This might be useful for example when creatin diagnostic scripts, or during development to check that the script syntax will work.
48+
If this is set to `true`, the script will run in “sandbox mode”. After the script has run, any saves made to Finale's database are automatically rolled back, so such a script will never do any permanent edits to a document. This might be useful for example when creating diagnostic scripts, or during development to check that the script syntax will work.
4949

50-
NOTE: Callbacks from modeless dialog windows are not automatically protected by `NoStore`. You should always add explicit calls to `StartNewUndoBlock` and `EndUndoBlock` in callbacks that modify or potentially modify the document. Provided you do this, however, `NoStore = true` prevents `EndUndoBlock` from saving any permanent edits.
50+
NOTE: Callbacks from modeless dialog windows are not automatically protected by `NoStore`. You should always add explicit calls to `StartNewUndoBlock` and `EndUndoBlock` in modeless callbacks that modify or potentially modify the document. Provided you do this, however, `NoStore = true` prevents `EndUndoBlock` from saving any permanent edits, even if you specify `true` for the "save" parameter.
5151

5252
Example:
5353

0 commit comments

Comments
 (0)