Changes by last author:

Added:
<code>

%ffp

OnFilterStart:{

int color = 0;

//Displays the color dialog with white as the default color

color = chooseColor(RGB (255,255,255), "Please choose a color:");

//Display the RGB values of the chosen color

Info ("The following color was chosen: RGB (%d, %d, %d)",Rval(color),Gval(color),Bval(color) );

return false;

}

</code>