com.livecode.engine | |
Type | module |
Dictionary | LCB |
Library | LiveCode Builder |
Associations | com.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. |
Type | Name | Summary | Syntax |
---|---|---|---|
expression | Caller | 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 | the column delimiter |
- - - | TheItemDelimiter | Fetches the | the item delimiter |
- - - | TheLineDelimiter | Fetches the | the line delimiter |
- - - | TheRowDelimiter | Fetches the | the row delimiter |
module | com.livecode.engine | This library provides operations for interacting with LiveCode Script from LiveCode Builder. | the row delimiter |
operator | ChildrenOfScriptObject | 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 |
statement | ExecuteScript | 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> ] |
type | ScriptObject | An opaque type corresponding to a LiveCode script object. | ScriptObject |