Top

Note About Added Dialog Methods


NOTE:

Added instance methods

def uispy_show(

)

Display a hidden dialog

can hide by uispy_hide() or uispy_setIsVisible(0)

def uispy_hide(

)

Hide this dialog.

can unhide by uispy_show() or uispy_setIsVisible(1)

def uispy_isVisbile(

)

Retruns dialog visibility

def uispy_setIsVisbile(

true_or_false)

Set dialog visibility.
    
see also uispy_show() or uispy_hide()

def uispy_destroy(

hide=True)

Destroy this dialog.
    
hide=True hide dialog before destroying.
When false the object will remain shown although inaccessible

def uispy_gadgetTuple(

name)

Returns the named GadgetTuple or None

def uispy_gadgetTuples(

self)

Return a list of the GadgetTuple's on this dialog/window.

def uispy_gadget(

name)

Returns the named Gadget or None

def uispy_gadgets(

)

Return a list of the Gadget's on this dialog/window.

def uispy_setGadgets(

gadget_dict)

Set multiple Gadget via a dictionary gadget_name:value

def uispy_uiScriptDialog(

)

Returns the uiScriptPy Object that created Dialog.