Personally, I am going to shoot the next person I see using absolute paths and the next person responding to a thread and not pointing out it’s evils. Seriously, for you own sanity down the road, learn to use relative paths. For those who may not know, this is a absolute path.
load image "C:\Users\MateiSoft\Desktop\selectiontest\test.png", 500
By all rights your executable and project files should be in the selectiontest folder on your desktop. So the relative path should look like this.
load image "test.png", 500
Most of the time you with see someone put the media files in a sub-folder of the executable and projects root folder. For example say you have the media in the sub-folder; Media, therefore the relative path would be.
load image "Media\test.png", 500
You may have noticed a few apps in you Program Files folder where the executable is in a sub-folder from the root. Usually it will be in a sub-folder named Bin. The media may be in a sub-folder from the root, named Media. In which case the relative path would be.
load image "..\Media\test.png", 500
I realize this is off-topic. Just don’t want to see you pulling your hair out over this down the line.