Nicolò Blunda 3 Posted August 1, 2022 (edited) Hello. I want to make responsive my WIN/MACOS application. If control's Align property is setted to Scale value, all works fine: object dimensions scale correctly and the Form is resized. But if an object is in hidden state (Visible;= False) it not follows scaling and when is showed runtime (setting Visible:= True) his position/dimension is the same as befolre resizing. There is a way to scaling object not visible? Edited August 1, 2022 by Nicolò Blunda Share this post Link to post
Nicolò Blunda 3 Posted August 3, 2022 FInd the solution! It is necessary to keep Object always in visible state and act on Opacity parameter: Object.Opacity:= 0 to hide Object and Object.Opacity:=1 to show it.. 1 Share this post Link to post