UICallback Script

From the CreationKit Wiki
Jump to navigation Jump to search


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.