Setting custom properties
LiveCode's objects come with an impressive number of properties that help us control how they look and function. We can also add our own properties to objects called custom properties. This provides us with a tremendous amount of flexibility.
How to do it...
Follow these steps to set the custom properties:
Create a main stack.
Drag any object onto the stack's card (for example, a button).
Select an object that you wish to add custom properties to.
Right-click on the object and select Property Inspector.
Using the property inspector, select Custom Properties. You should see an interface similar to the one displayed in the following screenshot:
Click on the plus sign to add a new custom property:
Enter a name for the custom property and click on OK. For example, you might want to use a button to represent a book in a game. Add the custom properties,
bookTitle
,bookYear
,bookAuthor
,bookPublisher
, until your display matches the following screenshot:Next, we will add content...