Geht nur, wenn lediglich ein Parent vorhanden ist und nicht auch noch ein Parent des Parent:
Code:
scn name
short doonce
ref myParent
Begin onActivate
if doonce == 0
set doonce to 1
set myParent to getParentRef
endif
if myParent.getDisabled
myParent.enable
else
myParent.disable
endif
end