eventOnClose(ObjectReferenceakActionRef)
Description
Wiki Description
Event called when the object has finished closing. (Like a door that has finished animating shut, but not a book that has finished closing.)
Documentation Comment
Event received when this object is closed
Parameters
ObjectReferenceakActionRef
CK Wiki Description
The reference that caused us to close.
Examples
No human-generated examples found for this event.
Auto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnClose(ObjectReference akActionRef)
Debug.trace("Event received - OnClose: akActionRef = " + akActionRef)
endEvent