Hi there,

I am using FOP do print the content of my Java application. Everything works
fine EXCEPT showing the AWT-dialog. Actually it is displayed properly but
althouth it is threaded it freezes up and I can't perform any actions on its
GUI. It is like my own application is a modal dialog and the FOP AWT Dialog
is lying below it with no chance to access it.

I am grateful for any hint and I apologize if this question has been asked
before.


public class FOPStarter
extends Thread
{
    private String[] args;

    public FOPStarter(String[] args)
    {
        this.args = args;
        this.start();
    }

    public void run()
    {
        org.apache.fop.apps.Fop.main(args);
    }

}

Reply via email to