Importing Libraries

The LiveCode builder syntax is broken down into modules. There are 3 classes of module:

Type Description

- **Default:** These modules are part of LiveCode Builder and are included by default. Their syntax is always available to you as a LiveCode developer. - **Optional:** These modules are created and distributed by LiveCode Ltd and must be imported by the extension developer in order to make use of their syntax. - **Custom:** These modules are created and distributed through the online portal and must be imported by the extension developer in order to make use of their syntax.

LiveCode builder contains the following modules:

> Warning! Module names are subject to change. The LiveCode dictionary has a full list of all available syntax as well as the module each belongs to. As a general rule we recommend importing all three optional modules whenever developing widgets.

widget community.livecode.beaumont.pinkCircle use com.livecode.canvas use com.livecode.widget use com.livecode.engine metadata title is "My Pink Circle" metadata author is "Benjamin Beaumont" metadata version is "1.0.0" end widget

# Next