Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
713 views

Make JFace Window blink in taskbar or get users attention?

Hi folks I wonder someone has any idea how to solve this: In my Java Eclipse plugin there are some processes which take some time. Therefore the user might minimize the window and let the process run ...
6
votes
4answers
1k views

SWT and blinking

I need the ability to have a blinking (red, maybe more colors) background for rows in a TableViewer/TreeViewer. What are the best options? There may be more than one row blinking, the blinking MUST ...
6
votes
2answers
1k views

OpenCV: Detect blinking lights in a video feed

I have a video feed. This video feed contains several lights blinking at different rates. All lights are the same color (they are all infrared LEDs). How can I detect the position and frequency of ...
5
votes
2answers
797 views

eye blink detection for iphone sdk

Now that face detection is possible with ios 5, i am just wondering is it also possible to detect blinking eyes? I read the frameworks, but i just got methods for getting the position of eyes. Also, i ...
3
votes
1answer
1k views

How do I blink/control Macbook keyboard LEDs programmatically?

I've googled for this, but no results, so I ask you guys for help. Do you know how I can switch on/off (blink) Macbook keyboard leds (capslock,numlock) under Mac OSX (preferably Tiger). I would like ...
2
votes
1answer
98 views

How to clear interval of clicked element

I am using http://www.antiyes.com/jquery-blink-plugin for blinking images on my document. Code of that plugin is (function($) { $.fn.blink = function(options) { var defaults = { delay:500 ...
2
votes
2answers
149 views

Make a screen blink / flash to alert user

Using .NET 3.5 Winforms, How would i make the entire screen flash/blink between red and white for just a second. I have a big screen that's only meant to show status on monitored equipment. I would ...
2
votes
2answers
1k views

How to blink the Keyboard's LED using C# or VB.Net

Need to make the Keyboard's LED (Caps lock / Num lock or Scroll lock LED) blink either using C# or VB.net. (With or without using interop is fine)
1
vote
2answers
428 views

flash text for three seconds

I know blinking is not a nice thing. However... I have a long complex HTML form with a number of compulsory fields. As well as highlighting the empty text boxes I want to draw attention to them by ...
1
vote
4answers
1k views

How can I blink with jQuery?

I would like to blink my menu text. I have this code, but it doesn't work with IE. (function($) { $.fn.blink = function(options) { var defaults = { delay:500 }; var options = ...
1
vote
2answers
72 views

My jquery this correct?

I am wondering if my jquery function is correct <script> window.blinker = setInterval(function(){ if(window.alerta){ $('a.cadastrotopo').css('color','#346698'); ...
1
vote
2answers
359 views

Setting layer.transform flashes the layer at the end location then animates it from current location

On occasion when setting layer.transform to a new transform I see the layer blink at its finished location, then animate from its current location to its finished location. I don't know if this is ...
0
votes
4answers
87 views

Delay is not working

Why this is not working $('#upload-title').css({ background: '#ffffff' }).delay(800).css({ background: '#00FF72' }); I want that my #upload-title. Is white for 0.5 sec. Thanks for help
0
votes
3answers
109 views

How to make a title blink until it becomes active with jQuery?

I have a javascript chat. When a user receives a message, I want the title to blink until it becomes active. (like Gmail Talk) For example: You are in an other tab. Title is My website Someone ...
0
votes
1answer
43 views

Windows Forms graphics blink

I have a Windows Forms application, borderstyle=none, own background image, when i start application window show partly and fill when every control will paint, how to do that form will showed when all ...
0
votes
0answers
69 views

GTK TextView: I implement custom cursor movement, cursor blink timer does not get reset after move

In GTK TextView, I implement my own cursor movement, which differs from default. While cursor movement works ok, the cursor blinking is the problem, because I cannot match default movements ...
0
votes
0answers
231 views

Drawing path on canvas, when touch input moves quickly and stops, last segment blinks continuously

I'm working on a drawing app. It's fairly simple, uses onTouchEvent, paths, and canvas.drawPath. Whenever the user does a quick swipe and releases without stopping, the last segment of the path blinks ...
0
votes
1answer
41 views

IE6 and <select> - blinking page

I have a rather big page (with lots of html, css and js(dojo framework)). This page contains html-select element and when I select any option the page blinks in IE6. In other browsers it works fine. ...
0
votes
1answer
217 views

jquery blink a few

i want to give blink effect to an element by using addClass and removeClass 3 times each i tried this $("#div").addClass("orange").delay(300).queue(function(next){ $(this).removeClass("orange"); ...
0
votes
1answer
881 views

Blinking and coloring asp.net label control

I have a asp.net label control on my webform: for this label I am setting the text property from code behind: lblOne.Text = "Number of student is: 86 and Number of teacher is: 7"; Now I want to ...
0
votes
4answers
926 views

jquery remove blinking

Block is blinking on .hover() Here is a full example - http://jsfiddle.net/xBEjQ/ How to fix this? UPD: popup should be removed after the mouse leaved the smaller block (.image), not .popup block.
0
votes
1answer
2k views

Blink an div with jquery

How can i blink a div. I have a hover on the div element. How can i make with jQuery. That the div is blink up and blink down. And then on the 10 seconds. Thanks