Objects
Declared Objects
Declared Objects are Meta Objects declared using an XML based declarative language called the Appxweb Meta Language (AML). AML is defined by the AML Schema. Click the Meta Object name in the chart below for declaration and usage examples.

Canned Objects
Canned Objects are Meta 0bjects provided by default to all Meta extensions. These canned objects are able to be incorporated and used within your Meta extension like a declared object simply by referencing the objects identifier. Data Objects and Function Objects that are canned are described below.
Data Objects | |
| Object Identifier | Description |
| _did_url | URL value of the current web page. |
| _did_url_to | URL value the browser is about to navigate to. Once the web page is fully downloaded this value is the same as _did_url |
| _did_key_events | Value of "1" (default) indicating that keyboard events are handled. Set this value to "0" to improve the performance for webpages with a high number of fields. |
| _did_download_complete | Value of "1" indicating that the downloading of the current web page is complete, otherwise "0" |
| _did_webpage_title | Title of the current web page. |
| _did_clipboard | Current HTML contents of the Windows clipboard added by the _fid_set_clipboard_html function call. |
| _did_dialog_ok | Value of "true" indicating that _fid_dialog_ok was called, otherwise "0". |
| _did_dialog_cancel | Value of "1" indicating that _fid_dialog_cancel was called, otherwise "0". |
| _did_dialog_yes | Value of "1" indicating that _fid_dialog_yes was called, otherwise "0". |
| _did_dialog_no | Value of "1" indicating that _fid_dialog_no was called, otherwise "0". |
Function Objects | |
| Object Identifier | Description |
| _fid_data_get | Updates the extension's data with the values of bound html elements within the web page. |
| _fid_data_set | Updates the values of bound html elements within the web page with the extension's data. |
| _fid_save | Saves the extension's data to file. If the data has not been previously saved the "Save As" dialog will be displayed and the user will be prompted to select a file to save to. |
| _fid_saveas | Displays the "Save As" dialog with the user prompted to select a different file to save the extensions data to. |
| _fid_new | Resets the extension, clearing all data and setting the title to "Untitled". |
| _fid_open | Displays the "Open" dialog with user prompted to select an existing extension data file which is then loaded. |
| _fid_exit | Exits the extension. |
| _fid_get_clipboard_html | Copies the Windows clipboard data in HTML format to the _did_clipboard data object. |
| _fid_get_clipboard_html_absolute | Copies the Windows clipboard data in HTML format to the _did_clipboard data object. All URLs are in the copied data are absolute. |
| _fid_set_clipboard_html | Copies the _did_clipboard data object to Windows clipboard. |
| _fid_undo_mark | Saves a temporary copy of the extension's data. |
| _fid_undo | Rolls the extension's data back to the point when _fid_undo_mark was called. |
| _fid_redo | Rolls the extension's data forward to reflect the latest changes. |
| _fid_browser_back | Navigates the browser back one item in the browsers history list. |
| _fid_browser_forward | Navigates the browser forward one item in the browsers history list. |
| _fid_browser_stop | Stops the browser downloading the current web page. |
| _fid_browser_refresh | Reloads the browsers current web page. |
| _fid_browser_home | Navigates the browser to the current home or start page specified in the Internet Explorer Internet Options dialog box. |
| _fid_dialog_minimize | Minimize the active dialog. |
| _fid_dialog_minimize_all | Minimize all open dialogs. |
| _fid_dialog_maximize | Maximize the active dialog. |
| _fid_dialog_restore_all | Restore all previously minimized dialogs to their original size and position. |
| _fid_dialog_move | Creates a handle by which the dialog is able to be moved. Normally associated with the left mouse down event on the element that this function object is bound to. |
| _fid_dialog_ok | Commit changes and close the dialog. _did_dialog_ok is set to "1". |
| _fid_dialog_yes | Commit changes and close the dialog. _did_dialog_yes is set to "1". |
| _fid_dialog_no | Cancel changes and close the dialog. _did_dialog_no is set to "1". |
| _fid_dialog_cancel | Cancel changes and close the dialog. _did_dialog_cancel is set to "1". |