I just realised that within a parameter expression box, we don’t have the ability to reference the parameter’s name without hardcoding it. In my specific case, I want to fetch a parameter from a stored object in the parent. I have to type:
me.parent().fetch("file")
If i want to fetch the file parameter from the stored object. However, assuming that the stored object has the correct naming scheme, it would be nice to be able to write:
me.parent().fetch(this.par.name)
or something similar.