Is a flashing effect displeasing to the eye. Flicker in software is caused by a computer program's failure to consistently maintain its graphical state.
0
votes
1answer
15 views
HTML element flicker using jQuery .remove() function
forgive me if this is a repeat, but I couldn't find this specific answer. We have a Joomla 2.5 and ClickCartPro 8 (CCP) installation that works together to create one e-commerce website. I have a ...
1
vote
2answers
58 views
Learning java…why on earth is this image flickering/flashing?
There seem to be a lot of similar problems, but they implement different code...this is just the base code, so I have a feeling I'm doing something very strange/wrong. This is what my code looks like. ...
0
votes
0answers
13 views
WPF alternative to SetStyle(ControlStyles.Opaque)
I am rendering images from a web cam to the screen.
In windows forms I call SetStyle(ControlStyles.Opaque) to avoid from flickering.
What it does is (from MSDN): If true, the control is drawn opaque ...
0
votes
0answers
10 views
Java Application flickers a lot in Java 7
For the past month or so, I've been designing a game on Java 6. But recently, I upgraded to Java 7, and when I compiled and ran my program, it ending up flickering a lot. Whenever there is some sort ...
0
votes
0answers
25 views
Some flickering while using PyQt
I am using PyQt for GUI. I am using the QMainWIndow. I have a graphics window which is set as central widget of QMainWindow and there are two dock widgets. Left widget has QTreeWidget which has names ...
1
vote
0answers
38 views
Flickering and “CreateParams”
I want to avoid flickering in a panel of my application, after googling from 4 monthgs ago, after trying subclassed panels, after asking here two or three times, after asking in other forums... nobody ...
0
votes
0answers
53 views
ToolStripMenu Flicker
I have a user control that consists in a simple ToolStripMenu in which I append items dynamicaly.
In the constructor, I change the Anchor property:
this.Anchor = AnchorStyles.Left | AnchorStyles.Top ...
4
votes
1answer
152 views
How to avoid screen flickering?
I am making a windows form application and mainly my screen is divided between 3 parts like
===========================================================================
Top panel ...
0
votes
1answer
55 views
Non-Flickering Polling in Angular with REST Backend
I managed getting a constant polling of the backend functional using
this answer.
But on every timeout the UI is flickering (empty model for a short time).
How can I update the model (and the view ...
0
votes
0answers
44 views
Stopping Flicker with jQuery UI Draggable
Problem
I have a flickering problem when I mouseenter with a .draggable image
Situation
So, I'm using Redactor.js as a WYSIWYG Editor, which works with jQuery.
Currently, I'm changing the way that ...
0
votes
0answers
29 views
Flickering JPanel with JScrollPane when JDialog exist
I have a gallery application is made of Java Swing.
I display each image using a JLabel.
I use a JDialog to display a preview of the selected image.
But, when there are a lot of pictures, and I try ...
0
votes
0answers
36 views
StateBasedGame using Slick2D flickers 3-4 times during startup
I am having issues with my StateBasedGame using Slick2D. My GameContainer is an AppGameContainer. Whenever I begin the program the window flickers and moves 3-4 times before loading my first state. ...
0
votes
0answers
44 views
How do i stop the flicker in my scale animation?
I have a PopupWindow where i use PopupWindow.setAnimationStyle(); to swop between two popupwindows. The swoping and the animation works. But when i scale the x value from 0 to 1 or 1 to 0 then it ...
0
votes
0answers
33 views
ToolTip Flickering on Mouseover
I have one span element with css pointing to background small paper-clip image,& on the mouse over event of this a small tool tip is displayed, however if the mouse the mouse over image area only ...
0
votes
0answers
40 views
On Android, how can I avoid flicker when calling removeView?
I have two ImageViews that overlap, and I'm calling removeView() to remove the one in the back. When I do, I'm seeing flicker - the view being removed is briefly drawn on top of the other view, and ...
1
vote
1answer
90 views
how to stop flickering in C# windowsforms form Application?
I have main Panel and Auto Scroll=true, and all controls are placed on main panel. Functionality works fine but when I click on any control or scroll down or up so it start flickering for a second ...
1
vote
0answers
31 views
IOS flicker in SDK6.1 but not in 5.X or earlier
I updated my app which was created one year later for SDK 5.X, but now, I get a terrible problem.In the app, using MBProgressHUD to download files from the server, and show an UIAlerView when it ...
0
votes
2answers
104 views
How to fix bad Double-Buffering [closed]
I tried following a double buffering tutorial, and I really don't know what I did wrong. It works before then before I did the tutorial, but there is still and occasional flicker here and there. I ...
0
votes
0answers
80 views
Flexslider flickering issue on iPhone
I've been toying around with and pouring over lots of code, and can't seem to trace the issue on this. I have a responsive website that seems to function just fine in desktop version, but there seems ...
0
votes
0answers
46 views
iOS device flicker
After running for a few minutes my app starts to flicker in certain areas. Problem occurs on iPhones and iPads, and confirmed on multiple devices.
Video of problem:
...
4
votes
1answer
203 views
Delphi TSplitter flickering issue
I am using Delphi with VCL styles enabled and I would like to change the color of the TSplitter for my form. I override TSplitter.Paint in an interposer class to paint a darker color than the default ...
0
votes
1answer
64 views
jQuery Background Image flicker and Margin Woes
I'm trying to try rebuilding my personal portfolio site from scratch, mostly for jQuery practice, and I've only just started but am having 2 problems.
First of all, here's a link to a preview of ...
1
vote
2answers
67 views
Stop flickering on hovering between divs of same class
I have 3 groups of divs which have a class dynamically assigned to them. When a user hovers over any of the divs, jQuery checks the class and fades the others with the same class. This works well but ...
0
votes
2answers
84 views
Flickering during resizing of HTML5 canvas
I'm observing some flickering during the resizing of an animated canvas control.
You can see it in action at this page. Drag the 'width' slider left and right to try it for yourself. I see this ...
0
votes
0answers
31 views
Why is my mobile app flickering when loaded?
I have problems with loading the following content in my mobile application:
<meta name="viewport" width="device-width" initial-scale="1" user-scalable="no">
<script type="text/javascript" ...
0
votes
0answers
54 views
How to avoid Java window flicker with border while resizing?
import javax.swing.*;
public class Main {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
...
0
votes
0answers
118 views
Zoom with OpenCV win32 C++
I have some OpenCV project that view image on static control and has zoom in / out functionality. Here what I got :
void UpdateImage(HWND hwnd, int zoom) {
if(img) {
RECT rc;
HWND hStatic = ...
0
votes
1answer
49 views
HTML audio playback causing flickering in iPhone
I'm trying to create a simple tuner built using Paper.js on top of a node.js stack.
The tuner works well in a desktop browser, but when in an iPhone or iPad, clicking on one of the six rectangles (or ...
0
votes
0answers
14 views
Flicker photo share based on username/password authentication [closed]
Is there any way to upload photos on flicker using their api. The authentication must be username/password based?
any kind of help is appreciated
0
votes
0answers
43 views
Shadow Volumes Toolkit flickers screen in mobile device
I am using Shadow Volumes Toolkit plugin, bought from asset store in my game. As soon as I've included the Shadow Renderer prefab, and installs on Android device, the screen starts ...
0
votes
0answers
152 views
Flicker while switching between panels in c# even after DoubleBuffer
i have a application with multiple panels which are stacked. i have enable double buffer for the form, panel and also the controls in the panel(group boxes). the panels are selected based on user ...
1
vote
1answer
178 views
Why does eclipse flicker and is slow to load XML in Editors?
My android ADT Eclipse has gotten into a state where every time I switch between XML editors it is slow. Additionally there is a flicker of the Reload Dependencies and Turn Grammar Constraints Off ...
0
votes
0answers
16 views
image view flickers on drag android [duplicate]
The problem is imageView flickers when dragged very fast,mayb because seMargins is called so many times,how do i avoid it?
0
votes
1answer
177 views
jQuery FadeIn and FadeOut causes flickering?
I originally wrote this question about a jQuery plugin. I since attempted another code using just jQuery:
$('#action-alerts .rotate:gt(0)').hide();
setInterval(function(){
$('#action-alerts ...
0
votes
0answers
142 views
CSS Dropdown menu IE submenu flickers
I am no CSS master, just one who understands a little bit. I would greatly appreciate any help possible since I have been working on this issue for the past 3 days and still at the same point.
Here ...
1
vote
0answers
153 views
status bar flicker when exiting fullscreen activity
I noticed a pretty irritating flicker that happens in the following scenario: display a fullscreen activity and then launch another activity that is not fullscreen.
In my app I use an action bar at ...
0
votes
0answers
44 views
Linked background image causing mouse to flicker on page
Link:
http://tinyurl.com/avzzuyr
The background image is linked to an external website, but I think it's causing a problem. In Firefox, the mouse constantly flickers on the webpage. It seems to cause ...
0
votes
0answers
104 views
ImageView flickers when setmargins is called while dragging a image
hi I am dragging a image by calling setMargins on a view in the on scroll method,however the image view flickers while drag is going on ,need help
When the drag is going on the imageview flickers ...
0
votes
2answers
308 views
How to prevent controls from flickering when loading in VB.net?
I am currently facing a problem with my current windows application. This is the video of my problem.
Flickering Problem
As you can see, every time I click some buttons and when it loads the ...
0
votes
1answer
60 views
The virtual keyboard and my UIView are fighting (drawing over each other constantly)
I have a UIViewController in which I have added a UIView to it with some UIButtons, and a UITextField to input the user's name. When I select the UITextField and start typing on the virtual keyboard ...
4
votes
1answer
643 views
jQuery Vertical mega menu sub menus flashing on load. How to stop it from flashing in wordpress
I have a wordpress web site with Twenty Eleven Child Theme.
In my sidebar I've embedded a jQuery Vertical Mega Menu widget from:
http://wordpress.org/extend/plugins/jquery-vertical-mega-menu/
The ...
0
votes
1answer
110 views
Android ScrollView ScrollTo and flicker
I note that the screen will flickers whenever scrollTo is called. What I wanted to achieve is to make sure the ScrollView content remain at the same position on the screen while data being added into ...
0
votes
1answer
138 views
Hover causes jquery submenus to rapidly flicker/flash
I'm a novice at css, jquery and the like. I purchased a template from ThemeForest and it was working alright until a week ago. Now when I hover over the submenus, they flash or flicker rapidly. I ...
0
votes
1answer
87 views
Label Background Flicker in VB.NET
So I'm using about 50 different labels on my form, and it flickers any time I do anything(minimize, maximize, run any command on the form) and I need a more efficient way to do this.
I've searched ...
0
votes
0answers
113 views
ToolTip - showing even when leaving control & flickering issues
I am quite surprised that no one came up with the following 2 problems regarding the ToolTip component of the .NET framework:
Flickering issues.
ToolTip not vanishing during "high-frequency" updates ...
0
votes
1answer
55 views
how to get sets list from flickr by user id?
I am using flicker jquery plugin and i need to get users their sets list by their user Id.
I have search in flicker API but didnt fount any service for this task, but i know its is possible.
in the ...
1
vote
1answer
194 views
mouseover() and mouseout() makes the overlay and control panel flick
I'm using the following code but when I have my pointer over the image, the overlay and the controls flickers. I have tested mouseenter() and hover() but it just flickers with these too.
...
1
vote
0answers
36 views
Android MapViewCompassDemo is flickering with no title window
I'm trying to make a rotated map view activity.
I've copied the sample provided with the SDK in :
...
0
votes
0answers
50 views
Flickering static label
I tried to make a listview but I have setted WS_EX_COMPOSITED style on my parent window and the listview blinked.
So I erase WS_EX_COMPOSITED and I put WS_CLIPCHILDREN and doublebuffer on listview ...
0
votes
0answers
49 views
sdl osx eclipse c++ display error
I've got a problem in running SDL app in eclipse under osx.
#include <SDL/SDL_opengl.h>
#include <SDL/SDL.h>
#include <SDL_ttf/SDL_ttf.h>
#include <SDL_image/SDL_image.h>
...


