• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Tab Unique ID's for Linked Panel Id edit box

tpodolan

New member
Hiya...

I've been adding some Custom Merits via the Editor.
I'd like to change the color of the Merit Tab red when validation Pre-reqs fails.
I've not been able to find the IDs for the Tab/Panel to use in the Linked Panel Id edit box.
Where can I find these IDs for the Tabs?

Thanks in advance for your assistance;
Thom
 
I just fixed merits and a few other types of things to now reference their correct tabs automatically. So you don't need to specify any ids in the Linked Panel Id box.
 
If you use an exprreq or a pickreq, the tab will automatically be flagged in red if the validation test fails. However, if you use a prereq, you'll need to handle that manually within the script. The code to add at the end of the script is shown below.
Code:
    if (@ispick <> 0) then
      altpick.linkvalid = 0
      endif
 
If you use an exprreq or a pickreq, the tab will automatically be flagged in red if the validation test fails. However, if you use a prereq, you'll need to handle that manually within the script. The code to add at the end of the script is shown below.
Code:
    if (@ispick <> 0) then
      altpick.linkvalid = 0
      endif

Thanks Rob...
Goin'ta try it out.
Thought I missed something and it was driving me crazy:D
Much appreciated.
 
Back
Top