When I Run the application, firstly is being executed the Constructor.
FAlpha takes the value 255.
BUT, after that is executed the Setter (automatically, I don't call it), where FAlpha := newAlpha;
And newAlpha = 0, so and FAlpha = 0.
I think I will declare newAlpha at the Private section of the component (now it's declared in the Setter, see 1st post), and give it the value I want in the constructor.
Is this the correct way? Any better suggestion?