Browsable Map

In this project a user should be able to browse the world map to identify countries where I've traveled. As the user mouses over a visited country a dot appears/grows, and the user may click the dot to load four thumbnail images of that country. Once the thumbnails are loaded, he/she may click on the thumbnails one at a time to listen to spoken hiaku that I wrote about my experiences in that particular country. The user then should be able to return to the map and select another country.

I used a proximity conditional to enlarge the dot when the mouse was nearby and cause the images to load.

I then used much of what we covered in Lab 3 (with sounds) to make each thumbnail a button to load the thumbnail image into the main image area and play the narrated sound.

In the last working version, there was no way to "reset" the map to clear all previous point and to allow the user to continue to browse. I tried to add a resetMap function, but no matter what I tried I returned the following typeError: Error #1009: Cannot access a property or method of a null object reference. at pointerClass/resetMap() at pointerClass() at mapBrowserDocClass()

when I traced the variable I used to identify the folder (I tried both as a string and as a number variable), it would accurately trace the digit, but when I traced the entire path name, I would get a NaN or null where the digit should appear. As I said I tried it both as a number variable and as a string variable, to no avail.