UICallback Script

From the CreationKit Wiki
Revision as of 06:27, 3 February 2014 by imported>CraftySentinel (CraftySentinel moved page UICallBack Script to UICallback Script: Callback is one word mistakenly Capitalised Back (Bit pedantic I know)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.