Objects and images are missing on export

This usually happens when you are using absolute paths for your objects (images etc.) The project will still be looking in eg. ‘C:\Users\<username>\Desktop\<project>\’ for the objects when this folder obviously doesn’t exist on the target machine, this is why they are missing on export .

You will need to use relative paths. ie. (instead of ” C:\Users\<username>\Desktop\<project>\<image name>.jpg” just use “.\<image name>.jpg “)

It is common for users to create a subfolder in their Mediator project directory called ‘Images’ and store all the images here. In this case the path would be something along the lines of “.\Images\<image name>.jpg” but this is down to personal preference.