Skip to main content
Known Participant
August 1, 2012
Question

Stagewebview tap highlights entire page

  • August 1, 2012
  • 1 reply
  • 371 views

I am having an issue with stagewebview (air for ios 3.3). Each tap to my stagewebview causes the entire page to grey for a second. I don't see this in the simulator but as soon as I get it on the ipad I get this problem. Any ideas?

thanks,

Jason

This topic has been closed for replies.

1 reply

Known Participant
August 1, 2012

Sorry I just found the answer. I looked for several hours, asked the question here, and then that sparked an idea. My page was higlighting because I had a tap listener on the entire page. It was just highlighting the tapped div. I simply had to add some css to the html and it works fine now.

-webkit-tap-highlight-color: rgba(0,0,0,0);

Hope this helps someone else.