Support Board
Date/Time: Tue, 12 May 2026 17:51:57 +0000
Post From: Version 2865: Custom Study: missing input in settings dialog: my solution
| [2026-01-18 18:34:10] |
| User509533 - Posts: 97 |
|
When I use the following, it does not show up in the Settings dialog: SCInputRef Input_Subgraph13Reference = sc.Input[22]; The solution for me was to use a lower available index, such as [0], which works correctly for my code: SCInputRef Input_Subgraph13Reference = sc.Input[0]; |
