0
votes
3answers
40 views
jQuery blur with an exception
I have set a focus event on an input element. When there is a focus, jQuery searches for a div and displays it. That works. Wit the blur event on the same input element I make the …
0
votes
1answer
30 views
Validating radiobuttons with an “other” textbox item
I have a HTML form with a couple of radio buttons. The first few are normal radios, but the last one is associated with a text box. I'd like to run some JavaScript validation to wa …
1
vote
1answer
41 views
Action Script3 / Pixel Bender Compound Blur effect ?
I need Action Script3 / Pixel Bender blur filter with mapping capability’s.
We have such image, we want to apply such blur map to get such result
Its also known as Compound B …
0
votes
3answers
35 views
Gradient affects of a function - Flash CS4
I want to apply a blur filter to an image in Flash CS4. I understand how to apply the filer but is there a way to apply it in differing amounts to different parts of the image? I …
0
votes
2answers
63 views
How to create simple blur filter with HLSL (for Silverlight)?
How to create simple Gaussian Blur filter with HLSL (for Silverlight)?
Why - I want to create some complex filter for Silverlight and I do not want to apply blur filter and mine se …
2
votes
4answers
200 views
How do I gaussian blur an image without using any in-built gaussian functions?
I want to blur my image using the native gaussian blur formula. I read this, but I am not sure how to implement this.
How do I use the formula to decide weights?
[I mentioned MAT …
0
votes
1answer
34 views
Blur Effect - Flash CS4 (Replicate aperture settings)
Using Flash CS4 how can I create a function that will replicate the affects of different aperture settings on a camera. I want the user to be able to click on different 'focal poin …
0
votes
0answers
13 views
Flash CS4 create aperture blurring affect from different focal points
Using Flash CS4 how can I create a function that will replicate the affects of different aperture settings on a camera. I want the user to be able to click on different 'focal poin …
0
votes
2answers
35 views
Create Aperture / depth of field affect
How can I create a function that will replicate the affects of different aperture settings. I want the user to be able to click on different 'focal points' of their picture and se …
0
votes
3answers
26 views
onlick on link display only div, make other body balck or shaded
I have a page which has anchor tag clicking on which ma div tag toggles. I want to make whole body of page black or shaded except that Div tag.
2
votes
4answers
115 views
Stopping the jQuery blur event within the blur function.
I have a textbox that I am using the blur event to validate the text with a regular expression. If it fails I want the textbox to keep the focus. I know in regular javascript you c …
0
votes
2answers
148 views
Direct3d/C# - Blur area under a rectangle drawn on a sprite
Any idea how to do it? I am drawing a rectangle that is supposed to be a half-transparent window. I managed to do the transparency by drawing a half-transparent texture, but I also …
0
votes
1answer
262 views
Using JQuery to bind “focus” and “blur” functions for “window”, doesn’t work in IE
I need to use JQuery like the follwoing:
var focusFlag = 1;
jQuery(window).bind("focus", function(event)
{
focusFlag = 1;
});
jQuery(window).bind("blur", function(event)
{
focusF …
1
vote
3answers
530 views
Issues with jQuery .blur() and .focus() events
I have a form with a few input fields. When a user clicks on an input field, a hidden div appears with some selections for that field, they can then choose an option, and this set …
0
votes
4answers
39 views
How to operate on a certain element when blur?
When focusing,we can do something like:
$('#target').focus(function(){$(this)..});
Because "this" is just the one that's focused($(this) == $('#target')).
But can't do the same …
