Hi
I am having an issue adding UI stuff to my script. I am unable to use two UI of the same type. I think I'm missing something in my formatting. For example:
(PF_OPTION, "useRare", "Select N to Ignore Rare Percents. ", 0,
(
["N", "Y"]
)
)
That works fine. I am able to get the Y/N info passed into my useRare parameter. I am able to to pass it to scripts, no issue. The problem is I want to add another PF_OPTION. So I added
(PF_OPTION, "useColor", "Select Y to use color ", 0,
(
["N", "Y"]
)
)
And that breaks my script. I can add a PF_RADIO, or a PF_TOGGLE and they work fine too, but I cant add a duplicate for either of those. Can anyone explain to me how I can enter into duplicate PF types to the UI?
Thank you
I am having an issue adding UI stuff to my script. I am unable to use two UI of the same type. I think I'm missing something in my formatting. For example:
(PF_OPTION, "useRare", "Select N to Ignore Rare Percents. ", 0,
(
["N", "Y"]
)
)
That works fine. I am able to get the Y/N info passed into my useRare parameter. I am able to to pass it to scripts, no issue. The problem is I want to add another PF_OPTION. So I added
(PF_OPTION, "useColor", "Select Y to use color ", 0,
(
["N", "Y"]
)
)
And that breaks my script. I can add a PF_RADIO, or a PF_TOGGLE and they work fine too, but I cant add a duplicate for either of those. Can anyone explain to me how I can enter into duplicate PF types to the UI?
Thank you