Hi @Stardot :
You can modify the magnification of the picture to make the picture bigger.
Set the image control's OnSelect property to:
Set(ZoomValue,!ZoomValue)
Set the image control's Width property to:
Parent.Width*0.5*If(ZoomValue,2,1)
Set the image control's Height property to:
Parent.Height*0.5*If(ZoomValue,2,1)
When you click on the image, the image will be enlarged, and click the image again to revert to its original size.
Best Regards,
Bof