OnFlashPaint

Syntax

public delegate void OnFlashPaintEventHandler(object sender, System.IntPtr pPixelPointer);
public event OnFlashPaintEventHandler OnFlashPaint;

Description

The OnFlashPaint event is raised by f_in_box__control when TransparentMode is set to true, or by f_in_box__form while painting.

The parameter pPixelPointer contains pixel color data. Each pixel consists of four bytes: Alpha, Red, Green, and Blue.

  • For f_in_box__form, the Alpha channel is real.
  • For f_in_box__control, the Alpha channel is not real; it is the result of painting the movie over the background.

See also Grab frames from flash movie.