Tagged Questions
The blinking tag has no wiki summary.
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 ...
3
votes
6answers
1k views
jQuery Mobile blinking at page transitions on iPad
I have a web app built with jQuery Mobile that works fine when using it in Safari on an iPad. However, when you add it to the home screen to use it as a standalone app (with the browser navigation ...
3
votes
3answers
4k views
jQuery “blinking highlight” effect on div?
I'm looking a way to to this.
I add a div to the page, when the ajax backcall returns some value. Div is filled with the values from ajax call. And the div is prepended to another div, which acts as ...
3
votes
3answers
765 views
Best method to get text to blink in iPhone OS?
I want my text box to blink (like the old LCD clocks) and right now I'm calling a myriad of NSTimers and selectors that wait, change the alpha, wait, then change it back. Even with this it looks ...
2
votes
1answer
297 views
Disable blinking cursor in UITextField?
I've followed the instructions here and succesfully set up a UITextField that gets updated with a UIDatePicker. However the cursor in the UITextField is blinking, which seems quite a bit awkward to ...
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
1answer
216 views
Can I change the blinking caret in a form/text area in a browser?
I want to have a custom text caret in my text field for my web page. I would like to have an old school block type blinking caret. Is this possible?
2
votes
2answers
979 views
jQuery: blink effect when receiving new data
I'm writing a "search for games"-application where I use jQuery to automatically fetch new game requests via php which prints out rows from a MySQL table.
What I wanna do is make new requests blink ...
2
votes
1answer
289 views
Smooth annotation movement on OS 4
To move custom annotations in my MKMapView class, I remove all annotations first and add them (which are placed in new locations) again every second. It was perfectly working on iOS 3 but when I ...
2
votes
2answers
2k views
jQuery animated hover blinking out of control
Hey good people of this forum..
I'm using the following code as a hover-function on thumbnails:
$(function (){
$('.button').hover(function(){
...
1
vote
1answer
238 views
How to make shapes “blink” or change colors in Java?
I'm trying to learn how to draw a shape, and be able to a) draw it, "freeze" or something the prosess, draw it in the color of the background, and then re-draw it in the original color and b) draw a ...
1
vote
2answers
96 views
Put code inside a loop to exit the loop after any mouse click
On a Userform, I'm blinking a frame Off/On by toggling its visiblity. It blinks a variable number of times and then stops, but in between blinks it checks for user activity. If there has been a ...
1
vote
2answers
93 views
Blinking control object in jQuery
I'm trying to make an object to start/stop blinking (with fadeIn() and fadeOut() for an object in jquery.
I already have a method blink() that makes the element blink once, and it works, but I'm ...
1
vote
2answers
106 views
how to edit blinking cursor on website input forms?
How can one edit the standard blinking cursor on website input forms without using flash? Or is flash the only way?
1
vote
3answers
515 views
jQuery - fadeIn(), fadeOut(), animate(), stop() and blinking
When "hover" triggers this code:
jQuery('#test').animate({opacity: 1},300);
And user hovers and unhovers very quickly the "#test" item blinks for a long time (of course opacity is being animated to ...
1
vote
2answers
116 views
Calling a function from $(document).ready(function())
I want to call this function (makes an element to blink), declared as a separate file:
(function($) {
$.fn.cyclicFade = function(options)
{
if (typeof(options) == 'string') {
if ...
1
vote
0answers
530 views
create a blinking cursor
I would like to create a caret for a textarea like the one here:
http://www.dynamicdrive.com/forums/showthread.php?p=74576#post74576
it works great if I want a white background but when I changed it ...
1
vote
1answer
543 views
JQUERY Focus, sometimes ends up making the blinking text cursor Disappear
Anyone know why .focus() makes the cursor go away but it comes back when you click in the text input box?
1
vote
1answer
436 views
Title-changing effect/window event listener does not work
I tried to search but could not find out anything useful. This is a piece of code for my Greasemonkey script. Basically, I want to have the same effect as Gmail. When the page loads and you have new ...
1
vote
2answers
1k views
Blink/Flash effect or animation in gwt
I'm building an web intra-net application which has the need for a flashing/blinking button (this has been discussed in depth and is our design decision so please do not lecture me about it). Our UI ...
0
votes
2answers
69 views
IE doesn't display blinking cursor on pre-filled input fields
In all versions of IE, I've noticed that if I have an input field with a preset value, the blinking cursor will not display when I hit tab to focus the field (though the field does focus and I can ...
0
votes
2answers
89 views
How to make button blinking infinite, but with possibility to stop at anytime
I need to make button to start blinking after some other elemment trigered it, for example checking the checkbox - see the code below:
<label>I agree with the terms</label>
<input ...
0
votes
0answers
132 views
Drawing-application with SurfaceView (android)
i have a problem with simple drawing application on android,
here's my class which is extending SurfaceView:
public class SomeView extends SurfaceView implements SurfaceHolder.Callback {
private ...
0
votes
0answers
41 views
Overriden RichtTextBox control (C#) raises blinking of the non-aplication background
I use extended RichTextBox control, which must highlight some words or characters inside control(for highlighting used BackColor and Select function). If cursor is placed inside reserved word - this ...
0
votes
0answers
201 views
How to remove/hide blinking cursor randomly appearing in label/td fields?
This seems to only happen in IE8...its really a no biggie but our client is asking to remove/hide it since its getting annoying. Everytime I check/uncheck a checkbox in a section of a form, one of the ...
0
votes
3answers
105 views
Xcode 4 How can I make the screen flash on & off quickly
I have search to find and try NSTimer using a black window and a white window, one on then the other but NSTimer flashes too slowly only offering 1 second intervals. I need the screen to flash (blink) ...
0
votes
0answers
31 views
How to catch blinking in a HTML file?
I have a iframe insade a page and there is blinking sometimes. I've found the blinking DOM (blinkstat) but it is under a div. And I want to know whether the blinking is changing (true, false) at the ...
0
votes
0answers
230 views
Blink jframe in swing without transferring focus
I want to blink my jframe's entry in taskbar but do not want it to get focused. I read about in on net and tried different solutions but none of them worked for me.
In my case I have a main jframe ...
0
votes
1answer
295 views
Blinking icons in a system tray and GnomeShell
So, I have few programs (Pidgin and Evolution Alarms) which are in a tray and blinks after notification. The problem is, that they are hidden (becouse panel is autohiding). So when I come to the ...
0
votes
1answer
101 views
Blink a label inside a repeater control
I have a label in a ItemTemplate in a Repeater control. I want the text of the label to blink on certain conditions. How do I do that? I am using asp.net 3.5.
0
votes
2answers
314 views
jQuery - fadeIn called in callback of fadeOut blinking or occurring twice on certain items?
I am using a select form element to show different days for a schedule. For some reason, the third and fourth days are blinking when chosen and I'm not sure why. And if the third or fourth days are ...
0
votes
0answers
53 views
Firefox shows a flashy/blinking BMP image
I generate a BMP image of the mandelbrot set and serve it to the browser (in C using sockets).
Previously I wrote the image to the browser pixel by pixel i.e 3 bytes at a time
That was slow so I first ...
0
votes
2answers
365 views
flex- blinking of primitive(lines/rect), images and text
We are building a visual learning program and need to display the "question content" with highlights- we were considering using blinking text, primitives and images.
We don't want to use timer, ...
0
votes
0answers
126 views
Jquery menu flashing/blinking rapidly. Please help
I have recently started with wordpress. Knowing next to nothing about javascript and jquery, I have downloaded a theme that makes excellent use of these. However, recently my menu started flashing ...
0
votes
0answers
142 views
Chrome blinking square in top left hand corner
I have a problem with Chrome.
I have a dynamic stylesheet which used to run when the page loaded. The problem with this was that Chrome would flash white when the page loaded, apparently waiting for ...
0
votes
0answers
126 views
CodeMirror editor blinking in IE
I have a problem with CodeMirror editor (http://codemirror.net/). When I open a modal dialog in IE it blinks. Whenever I click into the "textarea", whenever I type ... the whole window blinks and ...
0
votes
1answer
241 views
JTextPane avoid blinking
I have a JTextArea and I want to disable blinking from it. I have tryied to set focusable to false, but it doesn't seem to work. I also set editable to false and it doesn't work either. Any idea?
...
0
votes
2answers
569 views
Making an image change continuously without reloading
how would I be able to make it so one of my images changes with another one back and forth. Something pretty simple. The idea here is to have an avatar "blink", so I was thinking about alternating ...
0
votes
1answer
674 views
Drop-down js menu blinking in IE7
Hover over the menu on my site, and the drop-down appears correctly in Firefox, but in IE7 (and probably 6, I haven't been able to check yet) it blinks, repeatedly, even after you take away the mouse. ...
0
votes
3answers
994 views
http GET parameter SOMETIMES missing when using jsf
i have a servlet filter that handles errors for both vanilla servlets and jsf pages.
if an error is detected the user is redirected to an error page where he can give feedback.
then i try to read ...
-1
votes
1answer
72 views
Blinking or flashing [closed]
How to prompt serial data activity, received data? In the simple, how to change a label appearance, i.e blinking, on data received?