com.livecode.engine

Typemodule
DictionaryLCB
LibraryLiveCode Builder
Associationscom.livecode.engine
Summary

This library provides operations for interacting with LiveCode Script from LiveCode Builder.

Description

This library provides operations for interacting with LiveCode Script from LiveCode Builder.

TypeNameSummarySyntax
expressionCaller

The caller's script object

the caller

- - -KeyIsDown

Returns true if the key is down

the ( shift | command | control | alt | option | caps lock ) key is ( currently ) down

- - -MessageWasHandled

Determines whether a message was handled

the message was handled

- - -MessageWasNotHandled

Determines whether a message was handled

the message was not handled

- - -MyResourcesFolder

Returns the resources folder for the current module

my resources folder

- - -TheColumnDelimiter

Fetches the columnDelimiter property from script context

the column delimiter

- - -TheItemDelimiter

Fetches the itemDelimiter property from script context

the item delimiter

- - -TheLineDelimiter

Fetches the lineDelimiter property from script context

the line delimiter

- - -TheRowDelimiter

Fetches the rowDelimiter property from script context

the row delimiter

modulecom.livecode.engine

This library provides operations for interacting with LiveCode Script from LiveCode Builder.

the row delimiter

operatorChildrenOfScriptObject

Get the child objects of a script object.

the children of <Object>

- - -OwnerOfScriptObject

Get the parent object of a script object.

the owner of <Object>

- - -PropertyOfScriptObject

The property of a script object. Set:The name of the custom property set to access

property <Property> of <Object>

- - -ScriptObjectDoesNotExist

Tests the existence of a script object.

<Object> does not exist

- - -ScriptObjectExists

Tests the existence of a script object.

<Object> exists

statementExecuteScript

Executes some LiveCode script.

execute script <Script> [ in <Object> ] [ with <Arguments> ]

- - -Log

Logs a value.

log <Value> [ with <Arguments> ]

- - -PostToScriptObject

Post a message to a script object.

post <Message> [ to <Object> ] [ with <Arguments> ]

- - -ResolveFilePath

Resolves a file path relative to a script object.

resolve file <FilePath> [ relative to <Object> ]

- - -ResolveScriptObject

Resolves a string to a script object.

resolve script object <Object>

- - -SendToScriptObject

Send a message to a script object.

send ( function | command ) <Message> [ to <Object> ] [ with <Arguments> ]

typeScriptObject

An opaque type corresponding to a LiveCode script object.

ScriptObject