Returns the current record or find request to the way it was before editing began.
With dialog displays a dialog box when the script step is performed, asking users to confirm the revert action.
Product  | Supported  | 
FileMaker Pro Advanced  | Yes  | 
FileMaker Go  | Yes  | 
FileMaker WebDirect  | Yes  | 
FileMaker Server  | Partial  | 
FileMaker Cloud products  | Partial  | 
FileMaker Data API  | Partial  | 
Custom Web Publishing  | Partial  | 
Runtime solution  | Yes  | 
FileMaker Pro 6.0 or earlier
Displays a dialog box if the current record has been modified but not committed. Gives the user the option of reverting the record.
If [Get ( RecordOpenState ) = 2]
	Show Custom Dialog ["This record has been modified since it was last entered."]
	#Button 1 is Commit. Button 2 is Revert.
	If [Get ( LastMessageChoice ) = 2]
		Revert Record/Request [With dialog: Off]
	End If
End If