Hi,
Thank you for your enquiry.
If you want to permanently change the image which is displayed by these objects, you will need to open each image objects' properties and browse to the appropriate image files.
If, however, you want to change the image dynamically at runtime, due to a button being pressed or a condition being met, I would recommend using the
SetImage() script function.
For example, if an Image object named Image_1 is currently pointing towards a variable named <image>, but you want this image object to point towards a variable named <picture>, use the following script action on a button:
Code:
Image_1.SetImage(picture)
You can also point the image object towards a file on the publication CD using the following syntax:
Code:
Image_1.SetImage(SYSTEM_PUBLICATION_DIR + "imagename.jpg")
I hope this helps. Please do not hesitate to contact me if you have any further queries.
Kind regards,