Background for Skyrim SE
Member of the UI script
voidfunctionSetBool(stringmenuName, stringtarget, boolvalue)NativeGlobal

Description

Documentation Comment

Sets bool/number/string value at target location.
Target value must already exist.

Examples:
UI.SetBool("InventoryMenu", "_root.Menu_mc._visible", false)
UI.SetString("FavoritesMenu", "_root.Menu_mc.panel.message.text", "My Text")


Caveats


Parameters

stringmenuName

stringtarget

boolvalue


Examples

Auto-Generated Example

string myString__menuName
string myString__target
bool myBool__value

UI.SetBool(myString__menuName, myString__target, myBool__value)
Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.