In your code, when you set the value for your array of imageList variable, you did NOT put the correct spaces between the names in quotes and you put ".bmp" instead of ."jpg", which is actually the real format of the pics themselves in the folder of the program. I hope this fixed your errors.
This is the incorrect version
Quote:
imageList (0) := Pic.FileNew ("image0.bmp")
imageList (1) := Pic.FileNew ("image1.bmp")
imageList (2) := Pic.FileNew ("image2.bmp")
imageList (3) := Pic.FileNew ("image3.bmp")
imageList (4) := Pic.FileNew ("image4.bmp")
imageList (5) := Pic.FileNew ("image5.bmp")
imageList (6) := Pic.FileNew ("image6.bmp")
thank you very much!
btw i have problem displaying the dashes in the screen and the code for getting the original phrase, if you or anybody could help me with that please
This is the corrected version
Quote:
imageList (0) := Pic.FileNew ("image 0.jpg")
imageList (1) := Pic.FileNew ("image 1.jpg")
imageList (2) := Pic.FileNew ("image 2.jpg")
imageList (3) := Pic.FileNew ("image 3.jpg")
imageList (4) := Pic.FileNew ("image 4.jpg")
imageList (5) := Pic.FileNew ("image 5.jpg")
imageList (6) := Pic.FileNew ("image 6.jpg")