monomind 2 Posted March 25, 2020 I've made a custom integer on a file node - and I would like to use that for naming my files in ROP file output. File node is directly connected to ROP out. How can I reach this custom parameter on connected opinput? Custom parameter name is "mode" - here is what I tried: Share this post Link to post Share on other sites
anim 1,195 Posted March 25, 2020 if it's integer then something like this $HIP/layers/`ch(opinputpath(".",0) + "/mode")`.png if string $HIP/layers/`chs(opinputpath(".",0) + "/mode")`.png 1 Share this post Link to post Share on other sites
6ril 83 Posted March 25, 2020 I hope Tomas will never leave this forum !!!!! !!!! 1 Share this post Link to post Share on other sites
monomind 2 Posted March 25, 2020 Hm, can I read the first input of another node? NODE 1 connected to NODE 2 --- I'm in NODE 5, trying to get NODE 1 from NODE 2 Share this post Link to post Share on other sites
anim 1,195 Posted March 25, 2020 15 minutes ago, monomind said: Hm, can I read the first input of another node? NODE 1 connected to NODE 2 --- I'm in NODE 5, trying to get NODE 1 from NODE 2 $HIP/layers/`ch(opinputpath("../NODE2",0) + "/mode")`.png 1 Share this post Link to post Share on other sites
monomind 2 Posted March 25, 2020 OH I see - I wish documentation told about these things! Share this post Link to post Share on other sites