Use this function to reset a project starting point after it has run once. It is typically used in projects that start with an external query, resetting the starting point after the query is completed. Subsequent actions in the user interface will not re-execute the query.
Syntax:NewStartingPoint Parameters:None Examples:<external query operations> SavePageToNOD,_temp.nod NewStartingPoint AddPage,_temp.nod Generally this function is not used in scripting but this example shows how it could be used to rest the starting point after you’ve performed a series of expensive operations and written the data to a file. Comments:Caution: after NewStartingPoint is passed, trying to reference a page in the user interface causes all pages following NewStartingPoint to be recreated with different page numbers. Make sure your project script is page safe! |