Time2Live
New User
Joined: 27 Apr 2005 Posts: 43 Location: United States
|
|
|
|
Is there a way to do a conditional in MFS based on whether a different field is spaces or not spaces? I want my green "operator selection" field to be underlined only if there is something in the "Literal" field.
Code: |
LITRAL DFLD POS=(07,26),LTH=40,ATTR=(PROT,MOD)
OPRSEL1 DFLD POS=(07,23),LTH=01,EATTR=(GREEN)
OPRSEL2 DFLD POS=(07,23),LTH=01,EATTR=(HUL,GREEN)
IF LITRAL,=,' ',OPRSEL1
IF LITRAL,¬,' ',OPRSEL2
|
Thank you for your advice |
|