Saving the Project
Save the project to a .cfx file.
myApplication:SaveAs("Example-I01-Introduction_to_Application_Automation.cfx")
- Since all actions like loading a project, saving a project or exiting the application are done on the application level, search for application (object) in the Help1.
-
In the Help, under
, search for methods that are applicable to saving the
project:
- Save ()
- SaveAs (filename string)
To specify a file name and save the model, we will use the method:SaveAs (filename string)
-
Fill in the file name:
SaveAs("Example-I01-Introduction_to_Application_Automation.cfx")
-
Determine the syntax to prepend to SaveAs():