* @param initialColor the initial color
* @param callback the callback function
* @return the Runnable responsible for opening the dialog
*/
public static Runnable getColorPickerRunnable( int initialColor, ScriptableFunction callback ) {
ColorPickerDialog d = new ColorPickerDialog( initialColor );
return new DialogRunnable( d, callback );
}