LibreOffice 25.2 Help
This section describes how to assign scripts to application, document or form events.
You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of document events and at what point an assigned macro is executed.
| घटनाएँ | आबंटित मॅक्रो चलाया गया... | routine | 
|---|---|---|
| अनुप्रयोग प्रारंभ करें | ...after a LibreOffice application is started. | OnStartApp | 
| अनुप्रयोग बन्द करें | ... LibreOffice अनुप्रयोग को बन्द करने से पहले. | OnCloseApp | 
| दस्तावेज़ निर्मित | ...New document created with File - New or with the New icon. Note that this event also fires when Basic IDE opens. | OnCreate | 
| पाठ दस्तावेज़ | ...after a new document is created with File - New or with the New icon. | OnNew | 
| दस्तावेज़ का लोडिंग विफल | ...before a document is opened with File - Open or with the Open icon. | OnLoadFinished | 
| दस्तावेज़ खोलें | ...after a document is opened with File - Open or with the Open icon. | OnLoad | 
| दस्तावेज़ बंद होने जा रहा है | ... दस्तावेज़ बन्द करने से पहले. | OnPrepareUnload | 
| दस्तावेज़ बंद | ...after a document was closed. Note that the "Save Document" event may also occur when the document is saved before closing. | OnUnload | 
| -no UI- | OnLayoutFinished | |
| दृश्य निर्मित | Document is displayed. Note that this event also happens when a document is duplicated. | OnViewCreated | 
| दृश्य बंद होने जा रहा है | Document layout is getting removed. | OnPrepareViewClosing | 
| दृश्य बंद | Document layout is cleared prior to the document closure. | OnViewClosed | 
| दस्तावेज़ सक्रिय करें | ... दस्तावेज़ अग्रभूमि में लाए जाने के बाद. | OnFocus | 
| दस्तावेज़ अक्रिय करें | ... अन्य दस्तावेज़ अग्रभूमि में लाए जाने के बाद है. | OnUnfocus | 
| दस्तावेज़ सहेजें | ...before a document is saved with File - Save or the Save icon, provided that a document name has already been specified. | OnSaveAs | 
| दस्तावेज़ सहेजा गया | ...after a document is saved with File - Save or the Save icon, provided that a document name has already been specified. | OnSaveDone | 
| दस्तावेज़ सहेजना विफल | Document could not be saved. | OnSaveFailed | 
| दस्तावेज़ ऐसे सहेजें | ...before a document is saved under a specified name (with File - Save As, or with File - Save or the Save icon, if a document name has not yet been specified). | OnSaveAs | 
| दस्तावेज़ ऐसे सहेजा गया | ... after a document was saved under a specified name (with File - Save As, or with File - Save or with the Save icon, if a document name has not yet been specified). | OnSaveAsDone | 
| 'Save As' has failed | Document could not be saved. | OnSaveAsFailed | 
| -no UI- | When the document disk location has changed, for example after a File - Save As action. | OnStorageChanged | 
| दस्तावेज़ की नक़ल निर्यात या जमा कर रहा है | ...before a document is saved with , , or the icons. | OnCopyTo | 
| दस्तावेज़ नक़ल बनाया गया है | ...after a document is saved with , , or the icons. | OnCopyToDone | 
| दस्तावेज़ की नक़ल लेना विफल | Document could not be copied or exported. | OnCopyToFailed | 
| Print document | ...after the Print dialog is closed, but before the actual print process begins. This event occurs for each copy printed. | OnPrint | 
| -no UI- | ...after document security settings have changed. | OnModeChanged | 
| 'सुधारें' स्थिति बदली गई | Modified state of a document has changed. | OnModifyChanged | 
| दस्तावेज़ शीर्षक परिवर्तित | When the document title gets updated. | OnTitleChanged | 
| कोई उप घटक लोड कर रहा है | ...after a database form has been opened. | OnSubComponentOpened | 
| कोई उप घटक बंद करें | ...after a database form has been closed. | OnSubComponentClosed | 
| फ़ॉर्म अक्षर की छपाई आरंभ | ...before printing form letters using File - Print or Tools - Mail Merge Wizard menus. | OnMailMerge | 
| फ़ॉर्म अक्षर की छपाई संपन्न | ...after printing of form letters using File - Print or Tools - Mail Merge Wizard menus. | OnMailMergeFinished | 
| Printing of form fields started | ...before printing form fields. | OnFieldMerge | 
| Printing of form fields finished | ...after printing form fields. | OnFieldMergeFinished | 
| पृष्ठ गणना बदलना | When the page count changes. | OnPageCountChanged | 
Most events relate to documents, except OnStartApp, OnCloseApp, OnCreate and OnLoadFinished that occur at application level. OnSubComponentOpened, and OnSubComponentClosed events are fired by database's forms.
Writer documents are triggering those specific events: OnLayoutFinished, OnMailMerge, OnMailMergeFinished, OnFieldMerge, OnFieldMergeFinished and OnPageCountChanged.
Choose Tools - Customize and click the Events tab.
Select whether you want the assignment to be globally valid or just valid in the current document in the Save In listbox.
Select the event from the Event list.
Click Macro and select the macro to be assigned to the selected event.
Click OK to assign the macro.
Click OK to close the dialog.
Choose Tools - Customize and click the Events tab.
Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the Save In listbox.
Select the event that contains the assignment to be removed from the Event list.
Click Remove.
Click OK to close the dialog.