Thanks guys for your replies.
Chris2's suggestion is a quick solution when disabling a single control, by changing the view's alpha when I disable the view using code. Kudos for that.
stevel05's solution will work for the entire application by adding just one line of code. So that's likely the solution I will go with.
A couple of quick questions though.
1) Thanks for that list of CSS properties. Is there a link at the B4X site for this? I did find something similar at
WheelerCode.WordPress.com
2) Is it possible to create an Id Style in the CSS file and have the B4X view reference it? For example, can I put the "#font-button" Id Style name in the "Extra CSS" property using the Designer? Or do I have to hard code the text (below) into this property (which makes it more difficult to maintain)?
#font-button {
-fx-font: bold italic 20pt "Arial";
-fx-effect: dropshadow( one-pass-box , black , 8 , 0.0 , 2 , 0 );
}
TIA