Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a home automation app. Users can create their own images, such as floor plans and custom dashboards. They also create custom "colormaps" that are loaded as a second layer, with specific colors registered to target regions on their image. Everything works as designed right now. The user taps on their living room and the lighting interface is displayed.

What I would like to do is add some visual feedback to the onClick method. I am open to ideas. Two ideas come to mind. One, I could perhaps make some sort of flash effect that somehow makes the entire image appear to flash. I don't know how to do that. Or possibly even cooler, I might just flash the region associated with the colormap color that was touched. This could help the user with troubleshooting by identifying the entire region that was touched. Again, I don't know how I would do this. Or I could do something completely different.

Whatever the effect is, it would have to be fast because it is possible that when the user taps the screen, the command might be to load a different image rather than load the lighting interface. In that case, the effect should happen (very quickly) and then the next image would load.

Looking for ideas, and maybe a little detail on how you would implement it.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.