Skip to main content

Is it possible to set "Visibility" for 3 conditions?

  • October 9, 2020
  • 4 replies
  • 0 views

We have a button that will require 3 different conditions.

I set a character on the green screen hostfield called "Flag"

If Flag = Blank , I want to hide this button
If Flag = "0", I want to enable the button.
If Flag = "1", I want to disable the button.

By using Visibility, I can have only 2 conditions?

Thanks.

------------------------------
Peter Cheng
E2open
------------------------------

4 replies

Sarah Gilbert
Forum|alt.badge.img
We have a button that will require 3 different conditions.

I set a character on the green screen hostfield called "Flag"

If Flag = Blank , I want to hide this button
If Flag = "0", I want to enable the button.
If Flag = "1", I want to disable the button.

By using Visibility, I can have only 2 conditions?

Thanks.

------------------------------
Peter Cheng
E2open
------------------------------
Hi Peter,

Normally, I would suggest using two buttons layered on top of one another.
For example:
Button 1: 
If Flag = Blank Then Hide
If Flag = 0 Then Display

Button 2:
If Flag <> 1 Then Hide
If Flag = 1 Then Disable

However, I am researching to determine if there are alternatives to this method.

Thanks, Sarah

------------------------------
Sarah Gerards-Gilbert
Rocket Software
------------------------------

  • Author
  • Participating Frequently
  • October 19, 2020
Hi Peter,

Normally, I would suggest using two buttons layered on top of one another.
For example:
Button 1: 
If Flag = Blank Then Hide
If Flag = 0 Then Display

Button 2:
If Flag <> 1 Then Hide
If Flag = 1 Then Disable

However, I am researching to determine if there are alternatives to this method.

Thanks, Sarah

------------------------------
Sarah Gerards-Gilbert
Rocket Software
------------------------------
This could work.  Let me try it.

Thank you Sarah.

------------------------------
Peter Cheng
E2open
------------------------------

Sarah Gilbert
Forum|alt.badge.img
This could work.  Let me try it.

Thank you Sarah.

------------------------------
Peter Cheng
E2open
------------------------------
Thanks Peter. 
Please let me know how it goes.

------------------------------
Sarah Gerards-Gilbert
Rocket Software
------------------------------

  • Author
  • Participating Frequently
  • October 21, 2020
Thanks Peter. 
Please let me know how it goes.

------------------------------
Sarah Gerards-Gilbert
Rocket Software
------------------------------
Yes, it works, thank you Sarah.

------------------------------
Peter Cheng
E2open
------------------------------