Difference between revisions of "UI Script"
Jump to navigation
Jump to search
m
→SKSE Global Functions: Formatting Change
imported>JustinOther m (SKSE minimum version noted) |
imported>CraftySentinel m (→SKSE Global Functions: Formatting Change) |
||
Line 16: | Line 16: | ||
== SKSE Global Functions == | == SKSE Global Functions == | ||
{|class="wikitable" width =100% | |||
!style="text-align:left;"|Function | |||
!style="text-align:left;"|Description | |||
|- | |||
|[[IsMenuOpen - UI|Bool '''IsMenuOpen'''(String ''MenuName'')]] | |||
|Returns if the menu is currently open. | |||
|- | |||
|[[SetBool - UI|'''SetBool'''(String ''MenuName'', String ''Target'', Bool ''Value'')]] | |||
|Sets bool value at existing target location. | |||
|- | |||
|[[SetNumber - UI|'''SetNumber'''(String ''MenuName'', String ''Target'', Float ''Value'')]] | |||
|Sets numerical value at existing target location. | |||
|- | |||
|[[SetString - UI|'''SetString'''(String ''MenuName'', String ''Target'', String ''Value'')]] | |||
|Sets string value at existing target location. | |||
|- | |||
|[[GetBool - UI|Bool '''GetBool'''(String ''MenuName'', String ''Target'')]] | |||
|Sets bool value at existing target location. | |||
|- | |||
|[[GetNumber - UI|Float '''GetNumber'''(String ''MenuName'', String ''Target'')]] | |||
|Sets numerical value at existing target location. | |||
|- | |||
|[[GetString - UI|String '''GetString'''(String ''MenuName'', String ''Target'')]] | |||
|Sets string value at existing target location. | |||
|- | |||
|[[Invoke - UI|'''Invoke'''(String ''MenuName'', String ''Target'')]] | |||
|Invokes the ActionScript function at given Target location. | |||
|- | |||
|[[InvokeBool - UI|'''InvokeBool'''(String ''MenuName'', String ''Target'', Bool ''Arg'')]] | |||
|Invokes the bool ActionScript function at given Target location. | |||
|- | |||
|[[InvokeNumber - UI|'''InvokeNumber'''(String ''MenuName'', String ''Target'', Float ''Arg'')]] | |||
|Invokes the numerical ActionScript function at given Target location. | |||
|- | |||
|[[InvokeString - UI|'''InvokeString'''(String ''MenuName'', String ''Target'', String ''Arg'')]] | |||
|Invokes the string ActionScript function at given Target location. | |||
|- | |||
|[[InvokeBoolA - UI|'''InvokeBoolA'''(String ''MenuName'', String ''Target'', Bool[] ''Arg'')]] | |||
|Invokes the bool array of ActionScript function at given Target location. | |||
|- | |||
|[[InvokeNumberA - UI|'''InvokeNumberA'''(String ''MenuName'', String ''Target'', Float[] ''Arg'')]] | |||
|Invokes the numerical array of ActionScript function at given Target location. | |||
|- | |||
|[[InvokeStringA - UI|'''InvokeStringA'''(String ''MenuName'', String ''Target'', String[] ''Arg'')]] | |||
|Invokes the string array of ActionScript function at given Target location. | |||
|- | |||
''' | |[[InvokeForm - UI|'''InvokeForm'''(String ''MenuName'', String ''Target'', Form ''Arg'')]] | ||
|Sends Form data to Scaleform as a Flash object, FormLists included. | |||
|- | |||
|[[IsTextInputEnabled - UI|Bool '''IsTextInputEnabled'''()]] | |||
|Returns if scaleform is in 'text input' mode. | |||
|- | |||
|} | |||
== Member Functions == | == Member Functions == |