Difference between revisions of "UICallback Script"
Jump to navigation
Jump to search
imported>CraftySentinel (Created UICallback Stub) |
imported>CraftySentinel m (CraftySentinel moved page UICallBack Script to UICallback Script: Callback is one word mistakenly Capitalised Back (Bit pedantic I know))) |
(No difference)
|
Latest revision as of 06:27, 3 February 2014
Script for UI Callbacks.
Definition[edit | edit source]
ScriptName UICallback
SKSE Global Functions[edit | edit source]
- Int Create(String menuName, String target)
- Creates a new UICallback and returns the handle.
- Bool Send(Int handle)
- Creates a new UICallback and returns the handle.
- Release(Int handle)
- Releases the UICallback without sending it.
- PushBool(Int handle, Bool value)
- Pushes a Bool param into the callback.
- PushInt(Int handle, Int value)
- Pushes a Int param into the callback.
- PushFloat(Int handle, Float value)
- Pushes a Float param into the callback.
- PushString(Int handle, String value)
- Pushes a String param into the callback.
- PushBoolA(Int handle, Bool[] args)
- Pushes a Bool[] param into the callback.
- PushIntA(Int handle, Int[] args)
- Pushes a Int[] param into the callback.
- PushFloatA(Int handle, Float[] args)
- Pushes a Float[] param into the callback.
- PushStringA(Int handle, String[] args)
- Pushes a String[] param into the callback.