scListPlugins |
Type | function |
Dictionary | library.smartcrumbsvcw |
Library | SmartCrumbsVCW |
Syntax | scListPlugins(<pType>)
|
Associations | com.livecode.library.smartcrumbsvcw |
Summary | SmartCrumbVCW library plugin list
|
OS | mac, windows, linux, ios, android |
Platforms | desktop, mobile, web |
Parameters | Name | Type | Description |
---|
pType | | It is the type of plugins you want to list. If a value other than those mentioned below is not specified or passed, it will simply return all the add-ons that are installed in the SmartCrumbsVCW library.
* saveProperties: lists the plugins that the SmartCrumbVCW library calls when saving the properties of the objects within the JSON.
* saveScript: lists the plugins that the SmartCrumbVCW library calls before saving the script of the objects.
* RestoreProperties: lists the plugins that the SmartCrumbVCW library calls after restoring the objects
* restoreScript: lists the plugins that the SmartCrumbVCW library calls before restoring the object script.
* enable: lists the plugins that are enabled in the SmartCrumbVCW library.
* disabled: lists the plugins that are disabled in the SmartCrumbVCW library, this is the default value for new plugins installed.
|
|
Example |
local tInstalledPlugins
put scListPlugins("all") into tInstalledPlugins
answer the keys of tInstalledPlugins
|
Values | Name | Type | Description |
---|
The result | | The list of returned plugins comes inside an array where each brace is the name of the plugin. Inside each key are the different properties of the complement.
|
|
Related | Command: scExportObject, scImportMainStack, scIgnoreProperty, scIgnoreAllProperties, scStopIgnoreProperty, scStopIgnoreAllProperties, scCreatePlugin, scInstallPlugin, scUninstallPlugin, scEnabledPlugin, scDisabledPlugin, scSetPluginSetting, scCleanTrash, scResetObjectCache, scCleanTrash, scResetObjectCache
Function: scIgnoreProperties, scListPlugins, scGetPluginSetting, scGetGUID, scGetPathLog, scGetGUID
|
Description | Use the scListPlugins function to find out what plugins the SmartCrumbsVCW library has.
|
Tags | version control |