Difference between revisions of "UI Script"

Jump to navigation Jump to search
184 bytes removed ,  23:13, 2 February 2014
m
→‎SKSE Global Functions: Reverted to List
imported>Snakster
imported>CraftySentinel
m (→‎SKSE Global Functions: Reverted to List)
Line 17: Line 17:
== SKSE Global Functions ==
== SKSE Global Functions ==


{|class="wikitable" width =100%
:'''Bool [[IsMenuOpen - UI|IsMenuOpen]](String ''menuName'')'''
!style="text-align:left;"|Function
:*Returns if the menu is currently open.
!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'')]]
:'''[[SetBool - UI|SetBool]](String ''menuName'', String ''target'', Bool ''value'')'''
|Sets bool value at existing target location.
:*Sets bool value at existing target location.
|-


|[[SetInt - UI|'''SetInt'''(String ''menuName'', String ''target'', Int ''value'')]]
:'''[[SetInt - UI|SetInt]](String ''menuName'', String ''target'', Int ''value'')'''
|Sets the Integer value at existing target location.
:*Sets the Integer value at existing target location.
|-


|[[SetFloat - UI|'''SetFloat'''(String ''menuName'', String ''target'', Float ''value'')]]
:'''[[SetFloat - UI|SetFloat]](String ''menuName'', String ''target'', Float ''value'')'''
|Sets the Float value at existing target location.
:*Sets the Float value at existing target location.
|-


|[[SetNumber - UI|'''SetNumber'''(String ''menuName'', String ''target'', Float ''value'')]] '''(DEPRECATED)'''
:'''[[SetNumber - UI|SetNumber]](String ''menuName'', String ''target'', Float ''value'') {DEPRECATED}'''
|Sets numerical value at existing target location.
:*Sets numerical value at existing target location.
|-


|[[SetString - UI|'''SetString'''(String ''menuName'', String ''target'', String ''value'')]]
:'''[[SetString - UI|SetString]](String ''menuName'', String ''target'', String ''value'')'''
|Sets string value at existing target location.
:*Sets string value at existing target location.
|-


|[[GetBool - UI|Bool '''GetBool'''(String ''menuName'', String ''target'')]]
:'''Bool [[GetBool - UI|GetBool]](String ''menuName'', String ''target'')'''
|Gets bool value at existing target location.
:*Gets bool value at existing target location.
|-


|[[GetInt - UI|Int '''GetInt'''(String ''menuName'', String ''target'')]]
:'''Int [[GetInt - UI|GetInt]](String ''menuName'', String ''target'')'''
|Gets the Integer value at existing target location.
:*Gets the Integer value at existing target location.
|-


|[[GetFloat - UI|Float '''GetFloat'''(String ''menuName'', String ''target'')]]
:'''Float [[GetFloat - UI|GetFloat]](String ''menuName'', String ''target'')'''
|Gets the Float value at existing target location.
:*Gets the Float value at existing target location.
|-


|[[GetNumber - UI|Float '''GetNumber'''(String ''menuName'', String ''target'')]] '''(DEPRECATED)'''
:'''Float [[GetNumber - UI|GetNumber]](String ''menuName'', String ''target'') {DEPRECATED}'''
|Gets numerical value at existing target location.  
:*Gets numerical value at existing target location.  
|-


|[[GetString - UI|String '''GetString'''(String ''menuName'', String ''target'')]]
:'''String [[GetString - UI|GetString]](String ''menuName'', String ''target'')'''
|Gets string value at existing target location.
:*Gets string value at existing target location.
|-


|[[Invoke - UI|'''Invoke'''(String ''menuName'', String ''target'')]]
:'''[[Invoke - UI|Invoke]](String ''menuName'', String ''target'')'''
|Invokes the ActionScript function at given Target location.
:*Invokes the ActionScript function at given Target location.
|-


|[[InvokeBool - UI|'''InvokeBool'''(String ''menuName'', String ''target'', Bool ''arg'')]]
:'''[[InvokeBool - UI|InvokeBool]](String ''menuName'', String ''target'', Bool ''arg'')'''
|Invokes the bool ActionScript function at given Target location.
:*Invokes the bool ActionScript function at given Target location.
|-


|[[InvokeInt - UI|'''InvokeInt'''(String ''menuName'', String ''target'', Int ''arg'')]]
:'''[[InvokeInt - UI|InvokeInt]](String ''menuName'', String ''target'', Int ''arg'')'''
|Invokes the Integer ActionScript function at given Target location.  
:*Invokes the Integer ActionScript function at given Target location.  
|-


|[[InvokeFloat- UI|'''InvokeFloat'''(String ''menuName'', String ''target'', Float ''arg'')]]
:'''[[InvokeFloat- UI|InvokeFloat(]]String ''menuName'', String ''target'', Float ''arg'')'''
|Invokes the Float ActionScript function at given Target location.  
:*Invokes the Float ActionScript function at given Target location.  
|-


|[[InvokeNumber - UI|'''InvokeNumber'''(String ''menuName'', String ''target'', Float ''arg'')]] '''(DEPRECATED)'''
:'''[[InvokeNumber - UI|InvokeNumber]](String ''menuName'', String ''target'', Float ''arg'') {DEPRECATED}'''
|Invokes the numerical ActionScript function at given Target location.  
:*Invokes the numerical ActionScript function at given Target location.  
|-


|[[InvokeString - UI|'''InvokeString'''(String ''menuName'', String ''target'', String ''arg'')]]
:'''[[InvokeString - UI|InvokeString]](String ''menuName'', String ''target'', String ''arg'')'''
|Invokes the string ActionScript function at given Target location.
:*Invokes the string ActionScript function at given Target location.
|-


|[[InvokeBoolA - UI|'''InvokeBoolA'''(String ''menuName'', String ''target'', Bool[] ''arg'')]]
:'''[[InvokeBoolA - UI|InvokeBoolA]](String ''menuName'', String ''target'', Bool[] ''arg'')'''
|Invokes the bool array of ActionScript function at given Target location.
:*Invokes the bool array of ActionScript function at given Target location.
|-


|[[InvokeIntA - UI|'''InvokeIntA'''(String ''menuName'', String ''target'', Int[] ''arg'')]]
:'''[[InvokeIntA - UI|InvokeIntA]](String ''menuName'', String ''target'', Int[] ''arg'')'''
|Invokes the Integer array of ActionScript function at given Target location.
:*Invokes the Integer array of ActionScript function at given Target location.
|-


|[[InvokeFloatA - UI|'''InvokeFloatA'''(String ''menuName'', String ''target'', Float[] ''arg'')]]
:'''[[InvokeFloatA - UI|InvokeFloatA]](String ''menuName'', String ''target'', Float[] ''arg'')'''
|Invokes the Float array of ActionScript function at given Target location.
:*Invokes the Float array of ActionScript function at given Target location.
|-


|[[InvokeNumberA - UI|'''InvokeNumberA'''(String ''menuName'', String ''target'', Float[] ''arg'')]] '''(DEPRECATED)'''
:'''[[InvokeNumberA - UI|InvokeNumberA]](String ''menuName'', String ''target'', Float[] ''arg'') {DEPRECATED}'''
|Invokes the numerical array of ActionScript function at given Target location.
:*Invokes the numerical array of ActionScript function at given Target location.
|-


|[[InvokeStringA - UI|'''InvokeStringA'''(String ''menuName'', String ''target'', String[] ''arg'')]]
:'''[[InvokeStringA - UI|InvokeStringA]](String ''menuName'', String ''target'', String[] ''arg'')'''
|Invokes the string array of ActionScript function at given Target location.
:*Invokes the string array of ActionScript function at given Target location.
|-


|[[InvokeForm - UI|'''InvokeForm'''(String ''menuName'', String ''target'', Form ''arg'')]]
:'''[[InvokeForm - UI|InvokeForm]](String ''menuName'', String ''target'', Form ''arg'')'''
|Sends Form data to Scaleform as a Flash object, FormLists included.
:*Sends Form data to Scaleform as a Flash object, FormLists included.
|-


|[[IsTextInputEnabled - UI|Bool '''IsTextInputEnabled'''()]]
:'''Bool [[IsTextInputEnabled - UI|IsTextInputEnabled]]()'''
|Returns if scaleform is in 'text input' mode.
:*Returns if scaleform is in 'text input' mode.
|-
 
|}


== Member Functions ==
== Member Functions ==

Navigation menu