[Python - Resolved] Get the object of a name

Say I have a string property on an item that is set to the name of another object. What can I do to set a variable to the object of that name, so that I can then alter properties on that object with:

(object).(property) = (value)

Thanks,
Eterniam.

you could use:
name=firstObject.property
secondObject=GameLogic.getCurrentScene().getObjectList()[name]

Thanks! It works perfectly! :slight_smile: