Difference between revisions of "document.markChanged"

From Inspired-Lua Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
<br>  
 
<br>  
  
The function marks the current document as changed. It will ask you to save it when you close it.<br>  
+
The function flags the current document as changed. It will ask you to save it when you close it.<br>  
  
 
== Syntax  ==
 
== Syntax  ==

Revision as of 12:45, 31 May 2011

document.markChanged is a function that is part of the Document Library.


The function flags the current document as changed. It will ask you to save it when you close it.

Syntax

document.markChanged()
Turns the 'changed' flag on.

Example

--[[
Code that modifies the current document
..
..
--]]

document.markChanged() --ask the user to save the document when closing it