Hi @MrSheen,
The easiest way would be to create a variable for each width and height property of each image.
OnSelect Property of the Image:
// For Image 1
If(Self.Width = 100,
Set(gblWidth1, 200);
Set(gblHeight1, 200),
Set(gblWidth1, 100);
Set(gblHeight1, 100)
)
// For Image 2
If(Self.Width = 100,
Set(gblWidth2, 200);
Set(gblHeight2, 200),
Set(gblWidth2, 100);
Set(gblHeight2, 100)
)
In the Width and Height properties, it would be gblWidth1 & gblHeight1, etc.
Please tick Accept as solution if the answer is useful.
Thanks,
@AARON_C