PluginAction
Memory category | Instances |
---|
Member index 8
Description
PluginAction is an object that represents a generic performable action in
Roblox Studio, with no directly associated Toolbar
or Button. In
Roblox Studio, they can be assigned a keyboard shortcut under
File → Advanced → Customize Shortcuts...
, and they can also be added to the
Quick Access Toolbar.
PluginActions must be created using the Plugin:CreatePluginAction() function in order to work as expected.
History 36
- 651 Change WriteSecurity of Text from None to RobloxScriptSecurity
- 651 Change Tags of Text from [ReadOnly, NotReplicated] to [NotReplicated]
- 651 Change CanLoad of Text from false to true
- 553 Change Default of from to true
- 553 Change Default of from to false
- 553 Change Default of AllowBinding from to true
- 486 Change ThreadSafety of Text from ReadOnly to ReadSafe
- 486 Change ThreadSafety of StatusTip from ReadOnly to ReadSafe
- 486 Change ThreadSafety of from ReadOnly to ReadSafe
- 486 Change ThreadSafety of from ReadOnly to ReadSafe
- 486 Change ThreadSafety of from ReadOnly to ReadSafe
- 486 Change ThreadSafety of AllowBinding from ReadOnly to ReadSafe
- 486 Change ThreadSafety of ActionId from ReadOnly to ReadSafe
- 469 Change Tags of from [NotReplicated] to [Hidden, NotReplicated]
- 469 Change CanLoad of from true to false
- 469 Change Tags of from [NotReplicated] to [Hidden, NotReplicated]
- 469 Change CanLoad of from true to false
- 469 Change Tags of from [NotReplicated] to [Hidden, NotReplicated]
- 469 Change CanLoad of from true to false
- 462 Change ThreadSafety of Triggered from to Unsafe
- 462 Change ThreadSafety of Text from to ReadOnly
- 462 Change ThreadSafety of StatusTip from to ReadOnly
- 462 Change ThreadSafety of from to ReadOnly
- 462 Change ThreadSafety of from to ReadOnly
- 462 Change ThreadSafety of from to ReadOnly
- 462 Change ThreadSafety of AllowBinding from to ReadOnly
- 462 Change ThreadSafety of ActionId from to ReadOnly
- 394 Add
- 392 Add
- 391 Add
- 364 Add AllowBinding
- 338 Add Triggered
- 338 Add Text
- 338 Add StatusTip
- 338 Add ActionId
- 338 Add PluginAction
Members 8
ActionId
Type | Default | |
---|---|---|
string |
A string that uniquely identifies this action. This string is the key used when saving and loading the action's state in Roblox Studio.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | false |
AllowBinding
Type | Default | |
---|---|---|
bool | true |
This property determines whether the PluginAction will be hidden from Studio's shortcuts view. Useful for contextual actions. It defaults to true.
See also:
- Plugin.CreatePluginAction, creates a PluginAction
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | false |
History 4
- 553 Change Default of AllowBinding from to true
- 486 Change ThreadSafety of AllowBinding from ReadOnly to ReadSafe
- 462 Change ThreadSafety of AllowBinding from to ReadOnly
- 364 Add AllowBinding
StatusTip
Type | Default | |
---|---|---|
string |
The description of the action, when viewing it from the keyboard shortcuts window in Roblox Studio.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | false |
Text
Type | Default | |
---|---|---|
string |
The text that is displayed when viewing this action in Roblox Studio.
Write security | RobloxScriptSecurity |
---|---|
Thread safety | ReadSafe |
Category | Data |
Loaded/Saved | true/false |
History 6
- 651 Change WriteSecurity of Text from None to RobloxScriptSecurity
- 651 Change Tags of Text from [ReadOnly, NotReplicated] to [NotReplicated]
- 651 Change CanLoad of Text from false to true
- 486 Change ThreadSafety of Text from ReadOnly to ReadSafe
- 462 Change ThreadSafety of Text from to ReadOnly
- 338 Add Text
Triggered
Parameters (0) | ||
---|---|---|
No parameters. |
Fires when the action is triggered. This can be done by either activating the action from the Quick Access Toolbar, or by using the keyboard shortcut that was bound to it.
Security | PluginSecurity |
---|---|
Thread safety | Unsafe |