Page 1 of 1

AnalogNumeric Opacity iX RunTime

Posted: Mon Sep 02, 2013 2:18 am
by Joe
Hi,

It is possible set opacity analognumeric block or picture in script?

AnalogNumeric1.Opacity = 50; -> this is not right way ... Is there another way?

Thanks for reply

Joe

Re: AnalogNumeric Opacity iX RunTime

Posted: Mon Sep 02, 2013 8:16 am
by Edmund
Hi Joe!

If you are targeting PC for your iX-application try to access the real object by calling it with the prefix "m_".

Like

Code: Select all


m_AnalogNumeric1.Opacity = 0.1;

Opacity runs from 0 to 1.

Re: AnalogNumeric Opacity iX RunTime

Posted: Mon Sep 02, 2013 9:14 am
by Joe
Hi Edmund,

Thank you for your help ... works fine ... ;).

Regards

Joe