Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
565 views

Javascript - Receive mousemove events from iframe, too

I have a javascript app, whichs adds a mousemove listener to the document. Problem: When the mouse is moved over an iframe, the function is NOT called. Is there a way to pass through such events to ...
1
vote
2answers
417 views

Make WPF TextBox or other focusable controls transparent to certain key presses (i.e. pass-through, not swallow)

I have a ListBox with a custom data template which contains a CheckBox, a TextBlock and a TextBox. Normally when you select an item in a ListBox, the underlying ListBoxItem is actually what has the ...
0
votes
1answer
828 views

iphone interface overlay pass-through events

I'm farily new to iphone dev (<3 months on my free time) and I'm starting development of my second app. From the image, I'm adding a number of UIViews as subviews to my main ...
0
votes
2answers
5k views

Firefox: pass event from anonymous javascript function

In this abbreviated code, the inline event works - the "event" is passed to the testKeyPress function <textarea id="source" onkeydown= "showCursPos(this); var tf=testKeyPress(event); ...