JAXB cannot unmarshall and previous posts do not seem to be related

Hello,
Recently, we had to change some of our XSDs, so I went and downloaded the latest Java web services pack (v1.6) and made the changes to the schema (only one new element). First, I realized we were using a 0.75 EA1 release of JAXB and that I would have to re-generate all the classes for all our current XSDs because of 0.75 is so outdated.
I regenerated all the classes and everything seemed to be in good order. When I started my application I received the following error (this is in jdk 1.5)
Now, the XSD and the XML have not changed in 3 years... why is it that using this new version of JAXB seems to have messed things up? This errors is received when trying to unmarshall. I have been looking at this for three days and reading all the posts, i don;t think this is a namespaces issue because it used to work.... i just don't get it. any help is GREATLY appreciated.
Thanks
JAVA CODE HERE ********************************************
JAXBContext jc = com.sun.xml.bind.ContextFactory.createContext("com.testbed.common.config", new JAXBClassLoader());
Unmarshaller u = jc.createUnmarshaller();
EXCEPTION HERE *********************************
./shorg.xml.sax.SAXParseException: unexpected root element ConfigInfo
at com.sun.xml.bind.unmarshaller.SAXUnmarshallerHandlerImpl.startElement(SAXUnmarshallerHandlerImpl.java:94)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl$NSContentDispatcher.scanRootElementHook(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(Unknown Source)
at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(Unknown Source)
at com.sun.xml.bind.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:127)
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:131)
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:136)
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:145)
at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnmarshallerImpl.java:163)
Here is the XML for the config file -
XML HERE *************************************************
<ConfigInfo>
<LogFileConfig>logging.cfg</LogFileConfig>
<HeartbeatTimeout>0</HeartbeatTimeout>
<HeartbeatTopic>testTopic</HeartbeatTopic>
<DatabaseConfig>
<Name>TEST</Name>
<Info>timmy/[email protected]:1521:DB1</Info>
</DatabaseConfig>
<JMSConfig>
<MyName>TESTjms</MyName>
<Connections>
<connection id="1">
<Address>192.168.1.2</Address>
<Port>3035</Port>
<Type>tcp</Type>
<Factory>org.exolab.jms.jndi.mipc.IpcJndiInitialContextFactory</Factory>
</connection>
</Connections>
</JMSConfig>
<AgentProcessor>
<MappingFile>test.map</MappingFile>
<CommandFile>test.com</CommandFile>
<EventQueueTime>15000</EventQueueTime>
<SuppressionFile>supress.sup</SuppressionFile>
</AgentProcessor>
<StatusAlertTime>15000</StatusAlertTime>
</ConfigInfo>
And here is the XSD
XSD HERE ***************************************************
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
     <xsd:annotation>
          <xsd:documentation xml:lang="en">Configuration file formats</xsd:documentation>
     </xsd:annotation>
     <xsd:element name="ConfigInfo" type="configInfoType">
          <xsd:annotation>
               <xsd:documentation>The root element of the configuration file</xsd:documentation>
          </xsd:annotation>
     </xsd:element>
     <xsd:complexType name="configInfoType">
          <xsd:annotation>
               <xsd:documentation>Contains the elements of a configuration file</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="LogFileConfig" type="xsd:string"/>
               <xsd:element name="HeartbeatTimeout" type="xsd:int"/>
               <xsd:element name="HeartbeatTopic" type="xsd:string"/>
               <xsd:element name="DatabaseConfig" type="dbConfigType" minOccurs="0" maxOccurs="unbounded"/>
               <xsd:element name="JMSConfig" type="jmsConfigType" minOccurs="0"/>
               <xsd:element name="NetsaintConfig" type="netsaintConfigType" minOccurs="0"/>
               <xsd:element name="EventProcessor" type="epConfigType" minOccurs="0"/>
               <xsd:element name="AgentProcessor" type="agConfigType" minOccurs="0"/>
               <xsd:element name="DatabaseAgent" type="dbAgentType" minOccurs="0"/>
               <xsd:element name="Heartbeater" type="hbConfigType" minOccurs="0"/>
               <xsd:element name="StatusAlertTime" type="xsd:long"/>
               <xsd:element name="RemoteConnection" type="remoteConnConfig" minOccurs="0"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="dbConfigType">
          <xsd:annotation>
               <xsd:documentation>The Database configuration element, with a database name and connection info</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="Name" type="dbInstanceType"/>
               <xsd:element name="Info" type="xsd:string"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:simpleType name="dbInstanceType">
          <xsd:annotation>
               <xsd:documentation>Limits the database connections</xsd:documentation>
          </xsd:annotation>
          <xsd:restriction base="xsd:string">
               <xsd:pattern value="TEST|TEST2"/>
          </xsd:restriction>
     </xsd:simpleType>
     <xsd:complexType name="jmsConfigType">
          <xsd:annotation>
               <xsd:documentation>The base of the JMS configurations</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="MyName" type="xsd:string"/>
               <xsd:element name="Connections" type="connType"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="connType">
          <xsd:annotation>
               <xsd:documentation>An individual JMS configuration with a priority ranked id and associated connection information</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="connection" maxOccurs="unbounded">
                    <xsd:annotation>
                         <xsd:documentation>id attribute</xsd:documentation>
                    </xsd:annotation>
                    <xsd:complexType>
                         <xsd:sequence>
                              <xsd:element name="Address" type="xsd:string"/>
                              <xsd:element name="Port" type="xsd:int"/>
                              <xsd:element name="Type" type="xsd:string"/>
                              <xsd:element name="Factory" type="xsd:string"/>
                         </xsd:sequence>
                         <xsd:attribute name="id" type="xsd:int" use="required"/>
                    </xsd:complexType>
               </xsd:element>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="netsaintConfigType">
          <xsd:annotation>
               <xsd:documentation>Connection info for NetSaint alerting</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="Address" type="xsd:string"/>
               <xsd:element name="Port" type="xsd:int"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="epConfigType">
          <xsd:annotation>
               <xsd:documentation>Event Processor base configuration</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="TimeoutWarning" type="xsd:int"/>
               <xsd:element name="TimeoutError" type="xsd:int"/>
               <xsd:element name="Adaptors" type="adapType"/>
               <xsd:element name="SuppressionTimeout" type="xsd:int" default="3600000"/>
               <xsd:element name="EmailTimeoutWarning" type="xsd:int" minOccurs="0"/>
               <xsd:element name="EmailTimeoutError" type="xsd:int" minOccurs="0"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="adapType">
          <xsd:annotation>
               <xsd:documentation>The definition of the available adaptors</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="EmailAdaptor" type="emailType" minOccurs="0"/>
               <xsd:element name="DBAdaptor" type="dbType" minOccurs="0"/>
               <xsd:element name="FrontEndAdaptor" type="feType" minOccurs="0"/>
               <xsd:element name="MetricsAdaptor" type="metricsType" minOccurs="0"/>
               <xsd:element name="NetsaintAdaptor" type="netsaintType" minOccurs="0"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="netsaintType">
          <xsd:sequence>
               <xsd:element name="Enabled" type="YesNo"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="emailType">
          <xsd:annotation>
               <xsd:documentation>Email adaptor definition</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="SMTPHost" type="xsd:string"/>
               <xsd:element name="Sender" type="xsd:string"/>
               <xsd:element name="Recipient" type="xsd:string" minOccurs="0"/>
               <xsd:element name="GPGCommand" type="xsd:string" minOccurs="0"/>
               <xsd:element name="LookupEmails" type="YesNo" minOccurs="0"/>
               <xsd:element name="XSL" type="xsd:string"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:simpleType name="YesNo">
          <xsd:annotation>
               <xsd:documentation>A "Y" or "N" type for use within the configuration file</xsd:documentation>
          </xsd:annotation>
          <xsd:restriction base="xsd:string">
               <xsd:pattern value="Y|N"/>
          </xsd:restriction>
     </xsd:simpleType>
     <xsd:complexType name="dbType">
          <xsd:annotation>
               <xsd:documentation>Database adaptor configuration</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="Threads" type="xsd:int"/>
               <xsd:element name="XSL" type="xsd:string" minOccurs="0"/>
               <xsd:element name="Mode" type="dbProcessingMode"/>
               <xsd:element name="DeviceServerAddr" type="xsd:string"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:simpleType name="dbProcessingMode">
          <xsd:annotation>
               <xsd:documentation>Defines the available Database Adaptor modes</xsd:documentation>
          </xsd:annotation>
          <xsd:restriction base="xsd:string">
               <xsd:pattern value="NORMAL|XML"/>
          </xsd:restriction>
     </xsd:simpleType>
     <xsd:complexType name="feType">
          <xsd:annotation>
               <xsd:documentation>FrontEnd adaptor definition</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="Publish" type="xsd:string"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="metricsType">
          <xsd:annotation>
               <xsd:documentation>Metrics adaptor definition</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="Path" type="xsd:string"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="agConfigType">
          <xsd:annotation>
               <xsd:documentation>AgentPeer configuration</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="MappingFile" type="xsd:string"/>
               <xsd:element name="CommandFile" type="xsd:string"/>
               <xsd:element name="EventQueueTime" type="xsd:int"/>
               <xsd:element name="SuppressionFile" type="xsd:string" minOccurs="0"/>
               <xsd:element name="FWHourlyCommand" type="xsd:string" minOccurs="0"/>
               <xsd:element name="FWDailyCommand" type="xsd:string" minOccurs="0"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="dbAgentType">
          <xsd:annotation>
               <xsd:documentation>Database Agent configuration</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="LowLevelAckTime" type="xsd:int"/>
               <xsd:element name="LowLevelQueryWindow" type="xsd:int"/>
               <xsd:element name="MessageQueryTime" type="xsd:int"/>
               <xsd:element name="MaxMessagingRate" type="xsd:double"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="hbConfigType">
          <xsd:annotation>
               <xsd:documentation>Heartbeater configuration</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="HeartbeatTopic" type="xsd:string"/>
               <xsd:element name="HeartbeatPeriod" type="xsd:int"/>
          </xsd:sequence>
     </xsd:complexType>
     <xsd:complexType name="remoteConnConfig">
          <xsd:annotation>
               <xsd:documentation>Remote Connection configuration info</xsd:documentation>
          </xsd:annotation>
          <xsd:sequence>
               <xsd:element name="RemoteHost" type="xsd:string"/>
               <xsd:element name="RemotePort" type="xsd:int"/>
               <xsd:element name="MyName" type="xsd:string"/>
          </xsd:sequence>
     </xsd:complexType>
</xsd:schema>

have you tried it with only 1 complexType in the xsd with the element?
I have an xsd with many complexTypes and found that the root element was not what i thought it was (ie in your case ConfigInfo) and was having to append an xml tag at the start and end.
Don't know if it's something to do with the new version of JAXB as the one with 1.6 is the only one i have used...
m

Similar Messages

  • The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    The "Roman" font is not being recognized in Firefox 4.0. As such, I cannot read any previously posted topics or post any new topics on websites using this font.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Adobe reader has buttons next page and previous page, why not also top of current page and bottom of

    Adobe reader has buttons "next page" and "previous page",
    why not alson "bottom of current page" and "top of current page" ,
    these would be very useful if the page is increase to the maximum left and right

    This is a user forum; if you have any product enhancement requests, do it here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Does acrobat pro 9 work with microsoft office 2013? Just upgraded and now Acrobat does not seem to "see" my documents

    does acrobat pro 9 work with microsoft office 2013? Just upgraded and now Acrobat does not seem to "see" my documents

    uninstall.
    run the cleaner, http://labs.adobe.com/downloads/acrobatcleaner.html
    restart your computer.
    right click the setup file and click "run as administrator".

  • I have purchased second hand 5c and previous owner has not removed it from their icloud list

    i have purchased a second hand iphone 5c.The previous owner has not deleted this device from their icloud and I have lost his contact details.Is there anyway that i can find these details out from apple so that i can contact him and have him delete this device from his list so that I can activate and use it.

    Sorry, this isn't a reply.  Just wondering.
    What have you done since?  I have the same problem with iPad I bought second hand from an individual.  The seller won't give me refund or provide me previous owner's contact info.  Apple Support told me to contact local police to locate the original owner so I did.  Since police didn't have report for this iPad's serial number they won't handle this as theft.   I live in Utah and the seller I met with told me he is from Northern India so who knows which country this iPad came from.  I wish to let the original owner know i have his/ her missing iPad since Apple doesn't care about consumers once they sold their products.

  • My 4s will not open in settings and previously it would not accept my password even when I was resetting it on my computer with the iPhone in front of me. How do I fix This?

    My Icloud locked up a week ago and first it kept telling me my password was incorrect so I reset it on my phone and then my laptop top but the phone 4s would never accept the password.  Now in settings, I click on icloud and the settings will not even open up.

    You might try the obvious, although I have seen memory sticks fail.  Good luck.
    1)Remove the memory stick
    2) Shut the computer down
    3) Restart the computer
    4) Login
    5) Re-insert the memory stick

  • What is the best way to make a 30 minute video lecture taken with my iPad available to my university class? Email and USB transfer do not seem to have the capacity. Thanks!

    What is the best way to make a 30 minute video lecture taken with my iPad available to my university class? Email and USB transfer to the PC in the classroom do not seem to work because of the file size. Thanks! Quincy

    How to Transfer Photos from an iPad to a Computer
    http://www.wikihow.com/Transfer-Photos-from-an-iPad-to-a-Computer
    Importing Personal Photos and videos from your iOS device to your computer.
    http://support.apple.com/kb/HT4083
     Cheers, Tom

  • Firefox opens to a black screen / Previous post is not helping

    Product Detected
    Intel® HD Graphics 3000
    I have thoroughly (I think) read the other posts / questions regarding this issue. Like others, I'm experience a completely black screen when opening the new version of Firefox. I can't do (or click on) anything...and it won't open in safe mode.
    I'm not very tech-savvy...but I did manage to get to the point where I had Intel do an auto-check to see about updating the graphics card (which was the other recommended fix).
    I have a four-year-old Lenovo ThinkPad, BTW. I got the following message:
    Current Driver Installed
    8.15.10.2321
    A customized computer manufacturer driver is installed on your computer. The Intel Driver Update Utility is not able to update the driver. Installing a generic Intel driver instead of the customized computer manufacturer driver may cause technical issues. Contact your computer manufacturer for the latest driver for your computer.
    Is there anything else I can do before I contact Lenovo (never fun). I guess not using Firefox is the obvious answer here...but it is my favorite browser. Urgh. Thanks in advance for any advice.

    hello, what is the exact product name/number of your thinkpad?

  • Within the Sendible, I cannot copy and paste links (when not hyperlinked). The help info indicated it was connected to a Mozilla profile issue. But I cannot make these changes on my own. Please help! PKennedy

    Mozilla will not allow me to copy and paste a URL from Sendible. The info indicated I had to update my profile information, but I'm not able to do this on my own. Please help!

    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Troubleshooting extensions and themes
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    Check and tell if its working.

  • Generated Forms does not compile - NEXT ITEM and PREVIOUS ITEM procedure not found

    I tried to generate forms using Designer 6i.
    FMB was created, but there are compilation errors.
    The Compiler can not found procedures called CGNEXTITEM and CGPREVIOUSITEM.
    Judging by the names, those procedures are supposed to be generated by designer as well,
    but there are no codes with the names.
    Any idea?
    Yusan

    Is your temporary table created with the clause "on commit preserve rows" or "on commit delete rows"?
    If it's the latter then try changing to the former as you have a commit in the middle of your code, doing this will keep the data in the table for the duration of the session.
    If you need to clear the table of data within your session, you'll have to do an explicit delete.
    Ady

  • Given a computer and previous administrator does not remember password

    I was given an HP Pavilion p7-1414 desktop PC running on Windows 8 by an elderly friend of mine. She was set up as the administrator on this PC, however, she has since passed away and no one knows what her admin password was. I have not been able to figure out how to change the administration from her to myself. I am set up as a user on the PC and have a Windows Account. Any assistance would be greatly appreciated.

    Hi my2007ponyhorse,
    Oh my, I'd have to say it's not an easy problem you're stuck in.
    Windows is known to be one tough cookie to crack the admin password.
    It's really complicated to get through it. The quickest solution would be to backup all your needed files and
    re-install win7 or win8 according to your preference. There's pretty much no easy way to get past the admin lockup.
    If you need anything else, please let me know. Hope you get it resolved asap.
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

  • Where can I find a tutorial for Xcode 6.1.1. The only one I can find is for V5 and the tutorial does not seem to match? I am a complete newbie to Xcode.

    I am looking to start learning Xcode from the ground up and happy to help myself using published tutorial.
    At present the current Xcode in the App Store is V6.1.1
    The current published I can find is for V5 at https://developer.apple.com/library/ios/referencelibrary/GettingStarted/RoadMapi OS/FirstTutorial.html#//apple_ref/doc/uid/TP40011343-CH3-SW1
    I am seeking the tutorial for V6.1.1

    Hokanst
    many thanks for your effort. The challenge I have is that the text and images in the online (PDF) tutorial to which I refer, does not reflect the screen images of the Xcode application.
    cheers
    Bill

  • Just upgraded my iMac to OS x snow leopard. trouble now with my printer. I've disconnected and reconnected. Does not seem to recognize printer. It is listed as the default printer

    just upgraded my iMac to OS x snow leopard. Now I have another problem. Printer not working. I've unplugged and replugged, nothing happens
    HELP
    thanks in advance

    Go to the website for your printer manufacturer and check if there are SL compatible drivers available for your model. This is not an unusual issue, and if the printer's not too old, the updated drivers should be there.
    If you can't find one on the manufacturer's site, try Apple Support Downloads and look back through the updates in there; Apple has issued generic updates for a number of printers since SL's release, so you may find one that way.
    After installing the new drivers you'll need to setup the printer again.

  • I have an old iBook (circa 2002) ver 1.12, with 640KB ram, running OS X 10.2.8.  It seems to be running well but we have moved to WPA authentication on our network and the iBook does not seem to be able to handle this.

    Is there a patch, or updated version of OS X, that recognizes wpa authentication?

    thank you for your response!
    I am about to look into the efelix site for the PC, thank you. i'm excited.
    for the mac, me thinks that i am out of luck with updating the driver. on the epson site the most recent drivers for my printer (epson sytlus photo 820) are for OS X 10.1.3 - 10.2.6, and I am running OS X 10.2.8.
    Hmmmm, I downloaded the driver anyway, and it gives me an APPLICATION LAUNCH FAILURE because of a "shared library error" when I try to launch the new drivers. The other thing on the site is a PIM II Plug In - which doesn't look like a driver to me.
    a link to the lack of drivers for my poor mac...
    http://www.epson.com/cgi-bin/Store/support/supDetail.jsp?BV_UseBVCookie=yes&oid= 14409&prodoid=22966687&infoType=Downloads&platform=Macintosh

  • How to connect "Next" and "Previous" ?

    Hi everyone,
    I am new in this with videoediting etc but I just managed to finish my first real videoproject and burned a DVD last night.
    My first Encore project crashed after 3 days but I could start a new project and finish that one within 4 hours. Great program.
    The DVD works fine except for1 thing:
    I could not figure out how to connect "Next" and "Previous" in my Submenu for choosing clips.
    So I just deleted these functions (!)
    Looking forward to next project but I would like to use these 2 functions!
    Thanks in advance!
    Great forums in Adobe with Great People!

    Thank you !
    I thought it was to go to Next clip and previous clip. Not very good thinking.....
    Now I understand!
    Thanks again!

Maybe you are looking for

  • Code to derive the Work Week (ISO IW doesn't fit the requirement)

    I could use some assistance with my pl/sql code to derive the work week from the current date. If January 1st lands on Thursday, Friday, or Saturday, the work week for January 1st is '53'. If January 1st lands on Sunday, Monday, Tuesday, or Wednesday

  • Ramp Up - BPS - IP

    Hi Guru's, I have to do a presentation, and I want to show the ramp up of BPS and IP because I want to sell a project in business objects. There are a document where I find the SAP suppor time for SEM-BPS and BI-IP thanks for your help. Jose

  • I can't import from Itunes into FCP HD

    got the capture done with bears hand NOW i can't get audio tune from Itunes to import it says can't recognize file or something like that. I have a powerbook G4 10.4.9 FCP HD 4.5 is this another case of the 10.4.9 and 4.5 being incompatable (the reas

  • Performance: Database Update vs. Application variable

    I am new to ColdFusion, so sorry if this has been covered before. I searched and couldn't find anything similar. I am building an online Texas Hold'em poker application using ColdFusion and Flex. There are quite a few things that need to be stored on

  • Save For Web Just Stopped Working

    PSE3 on Mac This'll teach me to stop for lunch ! I was quite happily using the feature this morning,but after lunch it too had decided to take a break. I reset preferences and repaired permissions but it still refuses to cooperate. The error message