When I try to access a property of a stored variable, it says that “it does not exist.” Why does this happen?
I’ll try not to think about what text this thing is spitting out–yikes!
Anyhow… I see no errors at all.
It seems like either the OP responded to my message, or they just figured it out by themselves.
Ah okay 👍
You can’t assign variables in the middle of a list, instead you would move this part to the
output
assignment so it would actually create the variable that could be evaluated by the..., r = recipies.selectOne, r.name]
instance:[f=createInstance(ingredients.flour.selectOne), createInstance(b=ingredients.flour.selectOne)]
Like this:
Why does this happen?
Perchance recognizes and evaluates the
f
variable assignment block I’ve mentioned before as the child of the listpie
which is a child of the listrecipies
, making it unusable when called it directly within the variable’s name. To fix this you’d need to execute that assignment before therecipies
list is evaluated (as I’ve said before).