• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

applet flickering

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i hava cyrix233Mhz with 32mb RAM
whenever I try to execute applets through appletviewer
this always filckers which looks very irrating.and it flickers very fast when I move my mouse inside applet area while execution or when I place my mouse pointer on the closing button of applet. It happens with all applets executed programmed on my computer but dowloaed applets work very well.please help me to rectify this problem.
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Do your appletlets have any animation??
When repaint() is called, it clears the screen, then redraws it.
If you are calling re-paint alot (such as during animation) then the screen will flicker, unless you don't clear the screen, or user double-buffering.
 
reply
    Bookmark Topic Watch Topic
  • New Topic