Can anyone help with this, can't seem to get it to work.
I am trying to load a background Image on a page at load time, but if the file does not exist then use internal color settings. I am trying to do this so i can change a background without rewriting the program. Below is the code I tried but it does not work. Any ideas ?
Jerry
-- Checks to see if Introduction Background.jpg file exists.
ProgramIntro = File.DoesExist("autoplay\\Images\\Introduction Background.jpg");
--If the Introduction Background.jpg file does not exist, Use Internal color settings.
if ProgramIntro == false then
-- Do Nothing and Use Internal color settings.
else
-- Load Page Background Image
Image.Load("IntroPage", "AutoPlay\\Images\\Introduction Background.jpg");
end

