Duplicate class, modifier private not allowed

I can't get javadoc to create doc for any class I make, I keep on getting these errors
here is the class:/**
* Like Integer, but isn't.
* @author Phillip Bradbury
public class Int
  /** the internal value */
  private int i;
   * Creates an Int.
  public Int(int val)
    i = val;
   * Gets the value passed in the constructor.
   * @returns the value
  public int get()
    return i;
}and the error:cspc49-c3018900: javadoc temppack -d doc
Loading source files for package temppack...
Constructing Javadoc information...
/nfs/student1/csse/c3018900/./temppack/Int.java:5: duplicate class: Int
public class Int
       ^
/nfs/student1/csse/c3018900/./temppack/Int.java:8: modifier private not allowed here
  private int i;
              ^
javadoc: warning - No source files for package temppack
Standard Doclet version 1.4.1
Generating doc/constant-values.html...
javadoc: No public or protected classes found to document.
1 errors
3 warningswhat am I missing?
I've tried using -classpath and -sourcepath with a lot of different weird and wonderful paths (including ., temppack/ and somewhere completely unrelated to Java), i've tried it with a compiled .class file there and not there, i've tried remaning the class and package to random gibberish in case there was a conflict, and now I'm out of ideas.
Thanks in advance,
=====
Phlip

This is curious.
classes
+-doc
+-temppack
doc is empty, and temppack contains only Int.java
...but if I run
javadoc temppack -d doc
in the classes folder I get the duplicate class / private
not allowed errorsIf you're using 1.4.1, it has a bug that you might be seeing
that is present in 1.4.0 and 1.4.1 but in no other versions.
I recommend you upgrade to 1.4.2, which fixes this bug:
Execution: Fixed so duplicate classes are documented (4673477, tool, REGRESSION)
http://developer.java.sun.com/developer/bugParade/bugs/4673477.html
Here is the list of other enhancements in 1.4.2:
http://java.sun.com/j2se/1.4.2/docs/tooldocs/javadoc/whatsnew-1.4.2.html
execute the following on the commandline
javadoc -package temppack
Yep, it works perfectly with -package there!The -package option should make a difference only if
your class or members are package-private (which they are not).
The default is to allow public and protected program elements
to be documented. When you add -package, all it does is
also package-private program elements to be documented:
http://java.sun.com/j2se/1.4.2/docs/tooldocs/solaris/javadoc.html#package
-Doug

Similar Messages

  • "modifier interface not allowed here" compiler error

    Consider the following code fragment:
    public void someMethod(int val){
    interface ISomeInterface {int anyval=10;}
    This does not compile ("modifier interface not allowed here"). What am I missing? Thanks in advance.
    Ref: http://www.norvig.com/java-iaq.html#fold

    Nothing to apologise. The posting is almost like ...
    public void someMethod(int val){
    static int x;
    but its is different. Thanks.
    It's completely different than that. It's just like this:
    public class SomeClass {
      public void someMethod(int val) {
        public class SomeClassWithinAMethodWhichIsNotAllowed {
          // members of illegal class go here
        // local variables and code for someMethod go here
      // other members of SomeClass go here

  • Modifier final not allowed here

    This code does not comile under 1.5 beta2 (it did under beta1 and I think it should)
    public interface Table<R extends Row>
    public static final enum OpenMode { READONLY,  NORMAL }; // <-- modifier final not allowed here

    The compiler said about the following code :
    A is not abstract and does not override abstract method m() in Test.I // static enum A implements I {
    enum A implements I {
    toto {
    public void m() {
    //public abstract void m();
    two remarks :
    1) In my opinion, this could should compile. A must be tagged abstract by the compiler
    and because all subtype of A implements I there is no problem.
    2) Note that there is some inconstancies in the compiler message, with the new rule,
    Testa.A acnnot be declared abstract.

  • Content generation error. [Error: Duplicate overlay IDs are not allowed]

    Has anyone else experienced this? I'm creating a hidden navigation menu that has buttons for showing and hiding it. When the menu is on, there are a number of buttons grouped together in one of the states. It works when I preview with the preview tool, but when I try to preview through Folio Builder I get the error message: Content generation error. [Error: Duplicate overlay IDs are not allowed]
    All of my multi-state objects have unique names, as do buttons and layers and I still get this error. Any ideas?
    Thanks,
    Christopher

    Attached are screenshots of my layers palette, object states and buttons. I noticed in the layers palette, after I've made the menu into a multi-state object there's a sub-group called "normal" that's showing up in my layers palette. Could this be it?

  • Duplicate property names are not allowed 'max'

    I'm puzzled by the above error.  It seems I can only add in one aggregate in a single query.  The error shows up in the simple example below, if I remove one of the AVG the error goes away.  I could create multiple queries and join them but
    I've seen samples that suggest this should work.  Any thoughts as to what I'm doing wrong?
    SELECT MAX(Driver), AVG(Time), AVG (SpeedInKmPerHour)
    FROM input
    TIMESTAMP BY DataTimestamp
    GROUP BY Driver, TumblingWindow(second, 1);

    Hi Michael,
    I'm using Stream Analytics to issue speading tickets in a driving game (they are actually achievements). It looks very similar to what you are doing, are you tracking real cars?
    I started with this query:
    -- Select the average speed over a 10 second tumbling window
    select Driver, avg(Speed) as AverageSpeed
    from telemetry
    group by TumblingWindow(second, 10), Driver
    Then tried this:
    -- Select average speed where it exceeds
    -- 100 MPH in a 10 second sliding wondow.
    select Driver, avg(Speed) as AverageSpeed
    from telemetry
    group by SlidingWindow(second, 10), Driver
    having avg(Speed) > 100
    And am now using this:
    -- Limit the output events to one per minute
    with Speeds as
    select
    Driver,
    avg(Speed) as AverageSpeed
    from telemetry TIMESTAMP By CreatedTime
    group by SlidingWindow(second, 10), Driver
    having avg(Speed) > 100
    select Driver, max(AverageSpeed) as Speed
    from Speeds
    group by TumblingWindow(minute, 1), Driver
    Hope this helps.
    Regards,
    Alan
    Free e-book: Windows Azure Service Bus Developer Guide.

  • Content generation [Error: Duplicate overlay IDs are not allowed]

    This means what then? And why?

    I'm getting this error message as well when trying to make a tooltip, basically having two object states with buttons pointing to each object state.  Any idea on how to fix?

  • Private modifier not allowed within Interface

    hello,
    Can someone explain to me the logic behind not being able to declare a method's modifier as "private" when defining my Interface? When I do so the compiler generates the following error:
    "modifer private not allowed here at line 23, column 16"
    I change it back to public and its fine. One would think that the compiler would allow one to declare a method private within an Interface so long as the Implementation matches? Thanks in advanced.

    The idea behind interfaces is to provide information to the outside world about a class that implements the interface. Specifically, it lets the outside world know about certain methods that can be called on instances of that class. That way, a class can use instances of any class that implements a given interface rather than commiting itself to one specific implementation only.
    Since the outside world cannot see private methods, it doesn't make sense for interfaces to prescribe private methods in the first place. In fact, how a class deals with implementing a method is none of the interface's business...

  • Garageband 10.0.1 New track with duplicate settings is not allowing effects in

    When I use the "New track with duplicate setting"
    It will not allow effects on that new track that was created.
    If I just create a new track with the + button it is fine.
    The problem is I have already recorded all the tracks and the artists have all gone home.
    Anyone know of a work around till this gets fixed?

    jonboy5 wrote:
    This is the correct way to do that right?
    yes, you're trying to do exactly what you should be doing, so now it's time to get to your original problem.
    perhaps you can explain in detail what you do, and exactly what happens/what you see/what doesn't work.
    i finally had a chance to get on a 10.9 machine and tried duplicating a track in GBv10, it worked exactly as expected here; recreating the effect settings i had, and allowing me to change them as desired

  • SSL exception: Duplicate extensions not allowed

    Hi,
    I have problem with connecting to exchange mail server with java(java mail)
    I get this exception.
    javax.net.ssl.SSLProtocolException: java.io.IOException: Duplicate extensions not allowed.
    Caused by: java.io.IOException: Duplicate extensions not allowed
    at sun.security.x509.CertificateExtensions.parseExtension(Unknown Source)
    at sun.security.x509.CertificateExtensions.init(Unknown Source)
    at sun.security.x509.CertificateExtensions.<init>(Unknown Source)
    at sun.security.x509.X509CertInfo.parse(Unknown Source)

    So, google has very little about that.
    I found that x509 have something like extensions and if i run java with debug -Djavax.net.debug=ssl
    I see
    adding as trusted cert:
    Subject: CN=T-TeleSec GlobalRoot Class 2, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE
    Issuer: CN=T-TeleSec GlobalRoot Class 2, OU=T-Systems Trust Center, O=T-Systems Enterprise Services GmbH, C=DE
    Algorithm: RSA; Serial number: 0x1
    Valid from Wed Oct 01 12:40:14 CEST 2008 until Sun Oct 02 01:59:59 CEST 2033
    adding as trusted cert:
    Subject: EMAILADDRESS=[email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Issuer: EMAILADDRESS=[email protected], CN=http://www.valicert.com/, OU=ValiCert Class 2 Policy Validation Authority, O="ValiCert, Inc.", L=ValiCert Validation Network
    Algorithm: RSA; Serial number: 0x1
    Valid from Sat Jun 26 02:19:54 CEST 1999 until Wed Jun 26 02:19:54 CEST 2019
    I dont know if this is that extensions. But i see that some subject are duplicated. Maybe this is all about.

  • How to raise an error message when duplicate value is entered in a tabular field column? Basically not allow duplicate value at the form level.

    Hi all,
    I have created a form with one data block MATURED_FD_DTL which looks like below:
    ACCT_FD_NO
    CUST_CODE
    FD_AMT
    FD_INT_BAL
    TDS
    CHQ_NO
    ADD_FD_AMT
    P_SAP_CODE
    P_TYPE
    CREATE TABLE MATURED_FD_DTL
      ACCT_FD_NO    VARCHAR2(17 BYTE)               NOT NULL,
      CUST_CODE     NUMBER(9),
      FD_AMT        NUMBER(15),
      FD_INT_BAL    NUMBER(15),
      TDS           NUMBER(15),
      CHQ_NO        NUMBER(10),
      ADD_FD_AMT    NUMBER(15),
      P_SAP_CODE    NUMBER(10),
      P_TYPE        VARCHAR2(1 BYTE)
    For MATURED_FD_DT.ACCT_FD_NO, Trigger: KEY_NEXT_ITEM, I have written the following code:
    DECLARE
    V1 NUMBER;
    V2 NUMBER;
    BEGIN
    V1:=:MATURED_FD_DTL.ACCT_FD_NO;
    MESSAGE('V1:'||V1);
    MESSAGE(' ');
    END;
         GO_ITEM('MATURED_FD_DTL.CUST_CODE');
    This is just a dummy code.
    When ever i enter the value in the field of ACCT_FD_NO, it pops up a message saying "V1:Value of ACCT_FD_NO",
    So i want to store that value .
    Compare them & if it is egual, it should pop up a message saying duplicate value is entered and must not allow to enter, at form_level.
    So how can I compare the ACCT_FD_NO value between FIRST_RECORD and NEXT_RECORD ??
    Help Me .
    Thank You.
    Oracle Forms 6i.
    Oracle 9i.

    Thank You HamidHelal.
    Actually before posting the code, I went through the first link you have mentioned. I tried also, it is quite tedious procedure, however i dint get the proper result, may be i have done some mistake. Anyways , can you tell me how do i check in database table, if a value exists OR IF VALUE FOUND & then message and raise form trigger failure; something like below.
    IF :MATURED_FD_DTL.ACCT_FD_NO EXISTS
    THEN MESSAGE('YOU HAVE ENTERED AN EXISTING OR DUPLICATE VALUE');
              MESSAGE(' ');
    RAISE FORM_TRIGGER_FAILURE;
    END;
    OR
    IF :MATURED_FD_DTL.ACCT_FD_NO FOUND
    THEN MESSAGE('YOU HAVE ENTERED AN EXISTING OR DUPLICATE VALUE');
              MESSAGE(' ');
    RAISE FORM_TRIGGER_FAILURE;
    END;
    Is there any equivalent in the form in oracle forms 6i?? Please let me know how do i do this??

  • When I am NOT private browsing Firefox will not allow me to delete or change the website address in the location bar. My only remedy is to open a new window and search in google then click the link to that site through google. How can I resolve this?

    Question
    When I am NOT private browsing Firefox will not allow me to delete or change the website address in the location bar. My only remedy is to open a new window and search in google then click the link to that site through google. When I swap to private browsing firefox allows me to anter the website address directly into the location bar - but this is a slow [prcess to swap back and forth - also by dint of using private browsing I loose my website information.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • ERROR ITMS-9000: "index_split_000.html(257): attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:la

    I have all these errors, can anyone help with this all means? trying to get my book published in iBooks. Nedd your help. Thanks, Jo
    ERROR ITMS-9000: "index_split_000.html(257): attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"" at Book (MZItmspBookPackage)
    Use of the block quote element can cause ePubecheck to give the error "text not allowed here".  Text must not be alone inside of a body tag and if it is not enclosed in some other block level tag, this may lead to the error you are receiving.  

    I have all these errors, can anyone help with this all means? trying to get my book published in iBooks. Nedd your help. Thanks, Jo
    ERROR ITMS-9000: "index_split_000.html(257): attribute "name" not allowed here; expected attribute "accesskey", "charset", "class", "coords", "dir", "href", "hreflang", "id", "rel", "rev", "shape", "style", "tabindex", "target", "title", "type" or "xml:lang"" at Book (MZItmspBookPackage)
    Use of the block quote element can cause ePubecheck to give the error "text not allowed here".  Text must not be alone inside of a body tag and if it is not enclosed in some other block level tag, this may lead to the error you are receiving.  

  • R1: tcAPIException: Duplicate schedule item for a task that does not allow multiples.

    Hi,
    I'm struggling with the following task:
    I have to assure an account exists for a given resource. I do provision it with the .tcUserOperationsIntf.provisionObject().
    I've created a createUser task to create the account.
    The task code checks if there is already matching account.
    If no account exists, is is created in the disabled state, and the object state of OIM account is set to 'Disabled' by means of task return code mapping.
    If it exists, it is 'linked' to OIM account.
    The problem is if the existing account is enabled, I have to change the OIM account state to 'Enabled' either.
    To implement this (thanks, Kevin Pinski https://forums.oracle.com/thread/2564011 )) I've created an additional task 'Switch Enable' which is triggered by a special task return code. This task always succeeds, and its only side effect is switching the object status to 'Enabled'.
    By I've getting the 'Duplicate schedule item for a task that does not allow multiples' exception constantly:
    This is the stack trace:
    Thor.API.Exceptions.tcAPIException: Duplicate schedule item for a task that does not allow multiples.\
      at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.provisionObject(tcUserOperationsBean.java:2925)\
      at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.provisionObject(tcUserOperationsBean.java:2666)\
      at Thor.API.Operations.tcUserOperationsIntfEJB.provisionObjectx(Unknown Source)\
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)\
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\
      at java.lang.reflect.Method.invoke(Method.java:601)\
      at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)\
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)\
      at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)\
      ...skipped
      at Thor.API.Operations.tcUserOperationsIntfDelegate.provisionObject(Unknown Source)\
      ... skipped
    What did I wrong?
    Regards,
    Vladimir

    Hi Vladimir,
    Please select 'Allow Multiple Instance' checkbox for the process task.
    Thanks,
    Pallavi

  • 'My Application Page' is not allowed here because it does not extend class 'System.Web.UI.Page'

    I have a custom SharePoint 2010 solution that includes an aspx page. The aspx page in is in the /layouts folder within the solution and I created it by just adding an application page to the solution. I am trying to create a parent-child relationship between
    two different lists in SharePoint. From the parent I have a custom button on the ribbon that creates a child item with the ID of the parent stamped on it.
    The page is just a processing page that forwards on parameters from the parent to the new child item. (i.e. the ID value)
    The code generated when I add the aspx page is below:
    <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
    <%@ Import Namespace="Microsoft.SharePoint.ApplicationPages" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
    <%@ Import Namespace="Microsoft.SharePoint" %>
    <%@ Assembly Name="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    <asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
    </asp:Content>
    <asp:Content ID="Main" ContentPlaceHolderID="PlaceHolderMain" runat="server">
    </asp:Content>
    <asp:Content ID="PageTitle" ContentPlaceHolderID="PlaceHolderPageTitle" runat="server"> Processing Page </asp:Content>
    <asp:Content ID="PageTitleInTitleArea" ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server" > Processing Page </asp:Content>
    The code behind is as follows:
    using System;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.WebControls;
    using Microsoft.SharePoint.Utilities;
    using System.Reflection;
    namespace MY.Solution.Layouts.MY.Solution
    public partial class processingpage : LayoutsPageBase
    protected void Page_Load(object sender, EventArgs e)
    try
    //Get a reference to the SPWeb object
    SPWeb oWeb = SPContext.Current.Web;
    //Use the Parameters That Are Passed In
    SPList thisList = oWeb.Lists[new Guid(Request.QueryString["List"])];
    SPListItem thisItem = thisList.GetItemById(int.Parse(Request.QueryString["ID"]));
    sContentType = thisItem["ContentType"].ToString();
    sContentTypeID = thisItem.ContentTypeId.ToString();
    if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["ID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/Blist" + "/NewForm.aspx?AIID=" + sAIAuditID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAIID = thisItem["AIID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/AList" + "/NewForm.aspx?AIID=" + sAIID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else if (sContentType == "Some Content Type")
    sContentTypeID = "";
    sAICID = thisItem["AICID"].ToString();
    //Redirect to newform.aspx with the Appropriate parameters.
    Context.Response.Redirect(oWeb.Url + "/Lists/CList" + "/NewForm.aspx?AICID=" + sAICID.ToString() + "&ContentTypeId=" + sContentTypeID + "&ParentItemID" + Context.Request["ID"]);
    else
    LoggingService.LogError("MY.Solution - Processing Page", "No Applicable Content Type Found.");
    catch (Exception ex)
    LoggingService.LogError("My.Solution - Processing Page", ex.Message);
    finally
    //DO SOME FINAL THINGS HERE WHEN REQUIRED.
    In the page I need to use Request.QueryString to get the values from the URL. But when I deploy the solution and load the page I get the error:
    'MY.Solution.Layouts.MY.Solution.processingpage' is not allowed here because it does not extend class 'System.Web.UI.Page'.
    When I change the line:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="MY.Solution.Layouts.MY.Solution.processingpage" MasterPageFile="~/_layouts/application.master" %>
    to inherit as follows:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="Microsoft.SharePoint.WebControls.LayoutsPageBase" MasterPageFile="~/_layouts/application.master" %>
    it does not work either.
    If I change it to inherit like below:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="processingpage.aspx.cs" Inherits="System.Web.UI.Page" MasterPageFile="~/_layouts/application.master" %>
    it also does not work.
    What does this error actually mean?  And why doesn't the default code generated by Visual Studio work?

    @NadeemYousuf I have tried this too and it didn't work.  
    What does the error even mean?  And why does the error appear with default Visual Studio code?  In my example I have just added a basic application page with no other code in it and it still does not work.

  • Storage class not allowed in storage type

    Hi All,
    I am getting this error while confirming  the TO.
    It stays Storage class is not allowed in Storage type but how can  this be configured in OMM2.
    or do we need to define any sequence in OMLY.

    Hi
    Have u defined your material as Hazardous material? is so, yes, u have to do settings in OMLY.
    "Storage class: Classifies hazardous materials with regard to their storage conditions. A check can be carried out to find out whether hazardous materials that belong to a specific storage class may be placed into a particular storage type".
    Rgds
    Ramesh

Maybe you are looking for

  • Macbook dual VGA display output

    Hi, I was wondering if there is a way to use 2 VGA displays in extended desktop mode with my Macbook. I currently use my MacBook (with lid open) with a 21" external display, but just found an old 18" monitor which I would also like to use. I am willi

  • I just upgraded to Lion and can't find my EXS24 sampler instruments

    The instruments that came with Logic are still in their place, but can't find user sampler instruments.  It used to be (user / library / application support / logic / sampler instruments, but there is no "library" folder in the user folder anymore. 

  • CSS Woes

    I am all wacked out....ok, I have a DW CS3 template laid out with CSS. I have a banner background, a repeating outer wrapper background and a footer background. I have a space in the banner area where I want to put a random banner either via javascri

  • TA22652 Hi, I have authorized 4/5 computers, now what once I'll be done with all 5/5 computers? Can I authorize more than 5 computers?

    Hi, I have authorized 4/5 computers, now what once I'll be done with all 5/5 computers? Can I authorize more than 5 computers? Also I do not have any of the back up of other 3 computers I've authorized. Please help me!! Thanks

  • Exporting OMF with Volume Levels

    My movie's done, I'm trying to export the audio as OMF files for my post guy to use on his machines at work. Problem is that I can't figure out a way to export and leave my volume levels intact. We've done a lot of the mixing already, but according t