Computer Science Canada

Pic.ScreenLoad

Author:  Kelsey [ Wed Dec 15, 2004 4:42 pm ]
Post subject:  Pic.ScreenLoad

code:

for count:100..600 by 5
cls
Pic.ScreenLoad("picture.bmp",count,0,picCopy)
delay(100)
end for


Nothing shows up Shocked . Any help as to why?

Author:  Cervantes [ Wed Dec 15, 2004 4:54 pm ]
Post subject: 

Do you have "picture.bmp" in the same folder as your program? If not, this might help to illustrate the problem:
code:

for count : 100 .. 600 by 5
    cls
    Pic.ScreenLoad ("picture.bmp", count, 0, picCopy)
    put Error.LastMsg
    delay (100)
end for

Author:  Kelsey [ Wed Dec 15, 2004 5:46 pm ]
Post subject: 

Thanks so much!


: