Quote: "I think your problem is in the code you posted. everying has a , then a number. the , tells DBPro that you will specify when you will use it. you would want to load the images, then tell it to use the image. what i mean is this."
Not quite. He has loaded them correctly, he just needs to use them. To use an image, you refer to its image number which is defined when loading an image. E.g if you want to create a sprite out of a specific image, you would use its image number in the corresponding parameter of the SPRITE command.
Sample code:
rem load an image
Load Image "YourImage.png", 2
rem create a sprite
SPRITE 1, 0, 0, 2 // the 2 refers to the image loaded above