<< The problem is that each time I click any image (or mouse over any image) every image on the form blinks. It looks a little strange to see each form blink, plus it takes a while for the blinking to stop since the images appear to blink in sequential order. My mouse click EEP should only effect 1 or 2 of the images on the form. Is there a way that I can prevent every image from blinking?? >>
Don't use the form's variable list to set the image variables. Every time the list recalculates, the variables have to get looked up again — causing the blinking you're seeing, plus taking a bunch of time. You'll find that the variable list is recalculated more often than you think. Instead, create a custom form action with the code to load your variables. Call this form action once in the form's AFTER START EEP. Then, in the EEPs that update the image contents either reload the image variables directly, or set the key values that control the loading of the images and then call the aforementioned form action. This will give you much finer grain control over the function of the form. -- Larry

