blur

Onblur event mistakenly fires in IE when parts of popup document are clicked

I have a bunch of small pop-up pages that are designed to self-close when they lose focus- i.e. the user clicks on the parent document. Unfortunately in IE8, the blur also occurs when the user starts to fill out an input form inside the pop-up page. Indeed clicking ANYWHERE inside the form causes this, or even when the user accidentall...

How to prevent Android's drawBitmap from only drawing black images?

As per the original question, The end result is a rounded-rect png in an ImageView with a natural looking drop shadow. I have the shadow working, but when it draws, it makes the entire image black. How can I prevent the original image (definitely not black) from being black when adding the shadow? BlurMaskFilter blurFilter = new...

How do I scrape what a transparent panel shows into a bitmap?

Question: How do I scrape what a transparent panel shows into a bitmap? Background: I need to make a form that sits on top of everything and blurs part of the screen but doesn't stop the user from interacting with it. Odd... I know. I created a form and added a panel to it. I then set the set background color of the panel to red. Th...

How to blur a Bitmap (Android)?

I am struggling to get Bitmaps blurred using Android. I have seen a lot of information about using a simple kernel like 0 0 0 5 0 0 0 0 5 18 32 18 5 0 0 18 64 100 64 18 0 5 32 100 100 100 32 5 0 18 64 100 64 18 0 0 5 18 32 18 5 0 0 0 0 5 0 ...

Blur Tween in AS3

Hi. I wish for a movie clip to slowly blur over a couple of seconds. Is there some way to do this without using Tweener or some other external class? I only wish to use the tween class. The code I use at the moment is below, but this doesn't do it gradually, just turns the blur on like a switch: var blur : BlurFilter = new BlurFilter()...

Actionscript Tweening with Motion Blur

So i have several items on a page, each of which tweens out or in depending on a mouse event. So far i can do Easing on them when they are going out/in but how do i also set up a tween so that it blurs as the come in and out (motion blur) like the ones in the motion presets. I want to accomplish the same motion preset settings but with A...

jquery replace < with " " (a space)

I'm trying to replace the characters < and > onblur with a space when someone enters it into my form. I've got this at the moment $(".tbAddress").blur(function() { $("<").replaceWith(" "); $(">").replaceWith(" "); } Any help would be much appreciated thanks Jamie ...

Android Remove Custom Listview Blur Effect

I have a custom listview which is populated correctly. Each view contains a thumbnail. When I hold the listview for scroll i can see the pictures blurring and probably their size changing a little bit. When I release the listview it is back to normal. How can I remove this effect? It is breaking the layout of each views while scrolling. ...

Best way to prevent a field from blurring?

I have a text field that I would like to maintain focus, no matter what. The problem is, my page loads an iframe (cross domain), the contents of which steal the focus. What's more, the user might be typing in my text field as the iframe steals focus, causing the user to type in the iframe's text field instead. I've tried spamming the ...

WPF Aero window without shadow

I am aware of the following question: http://stackoverflow.com/questions/3696838/i-want-to-disable-the-shadow-effect-on-a-specific-aero-window However, I still need the DWM blur/reflections behind my Aero window, so I can't create a custom transparent one. How would I approach that? I could handle the reflections by myself, but I don't ...

Clean blur mask over an image by finger

Hi there, I want to create an ImageView with a blur mask over it. And user can use his finger to clean the mask and view origin pic under it. Is there any library for that purpose? Thanks. ...

Blur the layer underneath

Hey! I have a SlidingDrawer in my application. When it opens, I want everything underneath it to be blurred. Anyway I can do this? Thanks. ...

jquery: focus and blur on the password input field

Hi, I only want to set the code to alert one when I am out of 'focus' but the alert keeps piling up if I click on the input field and out of 'focus' more than one? http://nano-visions.net/dump2/focus/ $(document).ready(function(){ $(function() { $('#test-form-1 *[title]').inputHint(); }); $(".input-password").each(functio...

Help with focus/blur semantics in jquery

... $(document).ready(function(){ $('form').submit(function(){ $('input#second').focus(); return false; }); $('#first').blur(function(){ alert('blur'); }); }); ... <form> <input id=first><br> <input id=second><br> <input type=submit> ...

Javascript Bind on Blur, Both 'if indexOf' and 'else' Performed

[Edit by Author - 10/27/2010 @ 08:49 AM CST ] HTML <!-- Contents of div #1 --> <form id="6hgj3y537y2biacb"> <label for="product_calendar" class="entry_label">Calendar</label> <input type="text" name="product_calendar" class="entry" value="" /> </form> <form id="pyc2w1fs47mbojez"> <label for="product_calendar" class="entry_l...

jQuery Unfocus / No Value

I have the following jQuery code that detects if a user has clicked a search button but not typed anything in the text box, if so then they are focused on the textbox and the box turns red. What I want to do is when the user unfocuses (blur) from the textbox regardless of whether they have entered text or not then the box will return to ...