Setting Parameters in the Command Line Scripts
If you start Oxygen XML Author with the 
            
               oxygenAuthor.bat
               
            
            command line script, you have to add or modify the -Xmx parameter to the java
            command at the end of the script.
         
For example, to set the maximum amount of Java memory to 600 MB in Windows, modify the -Xmx parameter like this:
java -Xmx600m -Dsun.java2d.noddraw=true ...
On Mac OS X, the java command should look like this:
java "-Xdock:name=Author"\ -Dcom.oxygenxml.editor.plugins.dir="$AUTHOR_HOME/plugins"\ -Xmx600m\ ...
On Linux, the Java command should look like this:
java -Xmx600m\
 "-Dcom.oxygenxml.editor.plugins.dir=$AUTHOR_HOME/plugins"\
