Object Opacity

Aquí puedes preguntar o compartir tus dudas y conocimientos acerca del programa
Hello everyone.. i hope you are safe from pandemic.
Anyway is there a possible way to make objects like Paragraph, Label, buttons, Slideshow and other object to have opacity option like the Images?

i found using winapi to enable opacity of input, but is it possible to other object?

thank you so much..
Desde mi reducido conocimiento la respuesta es no, pero quizá alguien sí sepa cómo.
Te daré la misma respuesta de Dow Sher no es posible a menos que alguien cree algún plugin para ello pero lamentablemente esa función de opacidad no es nativa de los objetos en ams.
Te diría que usando WinApi pero no existe en las propiedades de un paragraph la WindowsHandle
Yeah, windowsApi can make opacity but for input only not available in paragraph and others..
thanks for taking time to answer this..
Sin estos objetos como un paragraph con Label, no es compatible con la función WindowsHandle, pero puede crear esto.

Veja esse simples example
HIDE: ON
Hidebb Message Hidden Description
dripro escribió:
23 Jul 2020 13:56
Sin estos objetos como un paragraph con Label, no es compatible con la función WindowsHandle, pero puede crear esto.

Veja esse simples example
HIDE: ON
Hidebb Message Hidden Description
Hi dripo thanks for this but i already used this approach it works but not really what i want in my own project..
really need opacity funtion on specific object like to the Image itself that has opacity..

Thanks for the example anyway..

regards

Sendai
Thanks
vou testar o item do dripro
I am tested this code a ComboBox and Inbut object, and worked.

tblInputProps = {};
tblInputProps = Input.GetProperties("Input1");
InputwHnd = tblInputProps.WindowHandle;
WinApi.SetWindowTrans(InputwHnd , 175);

(This code needs WinApi plug-in)
THANKS