Automatic legend not required

hello, I m authoring a musical dvd (dual layer) with 2 subtitles options (spanish and portuguese) , by default the disc subtitle settings are set to "not set". When the DVD is done the spanish subtitles (stream 01) apear automaticly without chosing it before. Also the options subtitles menu does not work, the off button is set to "not set" in the subtitles menu.
This problem happen after doing the later versions, mabe its a language problem. Allready tried a script (subtitle stream off) connected to the first play track (didn t work).
I could try to re do it again but I have lots (5 hours) of subtitle work and I cant find ways to export it....

Hey Dub
welcome to the apple DVDSP forums
anyway, this particular question has come up on several occassions.
the work-around for your problem is to set a dummy subtitle stream in S1. to do this, delete your primary stream and the anywhere in the stream, double click the stream and just press the spacebar and hit enter. thats it.
then you would place your spanish and portuguese streams in S2 and S3 respectively.
finally then set your initial stream as "off" (in the menu) unless you want to make one of your 2 languages your default, BUT make sure it's really S1 (your dummy stream).
then in the make the destinations in your subtitle menu page as you regularly would jumping to spanish if it is selected or portuguese if that is selected).
now, the reason you are having this problem is that SOME players automatically display S1 as a default (i have 2 here at work that do that, very annoying). my particular player HAS to have 1 subtitle stream on, so it chooses 1 (but i can choose any of the 32 streams).
hope that helps
Mike M.

Similar Messages

  • Deactivate the automatic determination of Requirement type

    How can i deactivate the automatic determination of Requirement type for a particular transaction (eg.va01).
    I know it is determined automatically based on one of the following
    1.Strategy group assigned to the materiaL master.
    2.MRP group in material master.
    3.Material type
    4.Item category and MRP type.
    5.Item category.
    I want this to be deactivated for a particular transaction. How do i do it?
    Please help.
    Madhu

    Hi,
    As soon as you save an order.VA01..the requriements of each line item are trasnferred to MM/PP depending on the planning strategy chosen for each material at the material master record. Therefore there is no chance of deactive the requriement type.
    I'm not sure but try this exist,
    V45S0003 MRP-relevance for incomplete configuration
    V45S0004 Effectivity type in sales order.
    Regards,
    R.Brahmankar

  • Computers report "not required", but why ?

    I am trying to push out Windows 8.1 Update 1 (KB 2919355) to a collection, containing all my windows 8.1 computers.
    However, if I check the SCCM report, most of the computers (that all contain Windows 8.1 Enterprise or Pro) have a state of "Update is not required".  A couple of machines got the update alright. 
    The update has not been superseeded, by any other update, and the update is for the x64 OS, and the OS of all machines is x64. 
    Does anyone have a clue with it's behaving this way, or what to do from here ? 

    There are three known solutions solution to this that were established in
    this thread:
    Download and deploy 2919355 and 2919442 to Windows 8.1 systems separately from WSUS.
    Download and deploy Windows 8.1 Update slipstream media that includes all the Windows 8.1 Update patches.
    Apply the Windows 8.1 Update patches using DISM to the original (ca 2012) Windows 8.1 media.
    (1) works, although I have not found a way to get SCCM to reliably deploy 2919442 by packaging it as an application or package.  I did determine that once 2919442 is installed on a deployed machine SCCM will eventually succeed in patching
    up to a current machine provided almost automatically -- you still have to reboot each machine a few times manually.
    I have yet to actually get a copy of the Windows 8.1 Update slipstream media required for (2).  It is missing from my VLSC portal.
    I have had the best success by doing (3) by manually applying 2919442, and the patches list in KB2919355
    in the correct order to the Windows 8.1 install media wim using DSM.  That process looks something like this:
    dism /mount-wim /wimfile:win81.wim /index:2 /mountdir:.\mount
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2919442-x64.msu
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2919355-x64.msu
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2932046-x64.msu
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2959977-x64.msu
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2937592-x64.msu
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2938439-x64.msu
    dism /image:.\mount /add-package /packagepath:.\patches\Windows8.1-KB2934018-x64.msu
    dism /Unmount-Image /MountDir:.\mount /Discard
    Where
    win8.1.wim is from the original circa 2012 Windows 8.1 install media
    .\mount is an empty folder
    .\patches is the folder containing each of the required patches
    Hope this helps someone avoid the pain it took me to figure this out.
    Alex

  • Is there a patch for the NTP security issue that does not require Xcode?

    Is there a patch for the NTP security issue that does not require Xcode? I have an older Intel mini that can't be upgraded beyond 10.6.8 and I currently don't have room for Xcode 3.2.5. Has somebody trustworthy posted these binaries?

    NTP fix for Snow Leopard: https://drive.google.com/folderview?id=0BxQCbeIgpA2uVjFiN1h4bGZNQ2c&usp=sharing
    You can also go to System Preferences/Date & Time and deselect Set time Automatically.
    Snow Leopard users: Turn off automatic date and time in System Preferences immediately

  • Code in main does not require catch, but code in constructor does

    this is the original program, its all in main. i took all the code out of main and put it in a constructor to make it more usable, and started making the necessary adjustments. i eventually got it to work but i had to catch exceptions EVERYWHERE. why does this code not require so many exceptions when the code is in main?
    import java.io.BufferedInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    public class MainClass {
      public static void main(String args[]) throws Exception {
        URL u = new URL("");
        URLConnection uc = u.openConnection();
        String contentType = uc.getContentType();
        int contentLength = uc.getContentLength();
         // ||
        if (contentLength == -1) {
          throw new IOException("Error: No File Found.");
        InputStream raw = uc.getInputStream();
        InputStream in = new BufferedInputStream(raw);
        byte[] data = new byte[contentLength];
        int bytesRead = 0;
        int offset = 0;
        while (offset < contentLength) {
          bytesRead = in.read(data, offset, data.length - offset);
          if (bytesRead == -1)
            break;
          offset += bytesRead;
        in.close();
        if (offset != contentLength) {
          throw new IOException("Only read " + offset + " bytes; Expected " + contentLength + " bytes");
         String dirText = "text";
         String dirTarget = "target";
         String filename = u.getFile().substring(u.getFile().lastIndexOf('/') + 1);
         String dirAndFile;
         // determine weather the file is a target or is to be parsed for more files
         if(contentType.startsWith("text/")) {
              dirAndFile = dirText + "\\" + filename;
         else {
              dirAndFile = dirTarget + "\\" + filename;
        FileOutputStream out = new FileOutputStream(dirAndFile);
        out.write(data);
        out.flush();
        out.close();
    }Edited by: chopficaro on May 1, 2010 8:15 AM

    ok but still, why do i not have to catch all these exceptions when the code is in main rather than a constructor? heres the code after i put it in the constructor:
    import java.io.BufferedInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.net.URL;
    import java.net.URLConnection;
    import java.net.MalformedURLException;
    public class MainClass {
         public static void main(String args[]) throws Exception
              MainClass mc = new MainClass("http://www.google.com/intl/en_ALL/images/logo.gif");
         MainClass(String addr)
              URL u = null;
              try
                   u = new URL(addr);
              catch (MalformedURLException e)
                   // Print out the exception that occurred
                   System.out.println("Invalid URL "+addr+": "+e.getMessage());
              URLConnection uc = null;
              try
                   uc = u.openConnection();
              catch (IOException e)
                   // Print out the exception that occurred
                   System.out.println("Unable to create "+addr+": "+e.getMessage());
              String contentType = uc.getContentType();
              int contentLength = uc.getContentLength();
              if (contentLength == -1)
                   System.out.println("no file");//throw new IOException("Error: No File Found.");
              InputStream raw=null;
              InputStream in=null;
              try
                   raw = uc.getInputStream();
                   in = new BufferedInputStream(raw);
              catch (IOException e)
              // Print out the exception that occurred
              System.out.println("bad input stream "+e.getMessage());
              byte[] data = new byte[contentLength];
              int bytesRead = 0;
              int offset = 0;
              while (offset < contentLength)
                   try
                        bytesRead = in.read(data, offset, data.length - offset);
                   catch (IOException e)
                        // Print out the exception that occurred
                        System.out.println(e.getMessage());
                   if (bytesRead == -1)
                   break;
                   offset += bytesRead;
              try
                   in.close();
              catch (IOException e)
                   // Print out the exception that occurred
                   System.out.println(e.getMessage());
              if (offset != contentLength)
                   System.out.println("didnt read enough bytes"); //throw new IOException("Only read " + offset + " bytes; Expected " + contentLength + " bytes");
              String dirText = "text";
              String dirTarget = "target";
              try
                   String filename = u.getFile().substring(u.getFile().lastIndexOf('/') + 1);
                   String dirAndFile;
                   // determine weather the file is a target or is to be parsed for more files
                   if(contentType.startsWith("text/"))
                        dirAndFile = dirText + "\\" + filename;
                   else
                        dirAndFile = dirTarget + "\\" + filename;
                   FileOutputStream out = new FileOutputStream(dirAndFile);
                   out.write(data);
                   out.flush();
                   out.close();
              catch (IOException e)
                   // Print out the exception that occurred
                   System.out.println(e.getMessage());
    }

  • Import invoice with status as Approval not Required

    Hi All,
    Can any one give the way to import an invoice with payables open interface import status as Approval not required.
    Thank you in advance.
    Raj.

    midimidi,
    > So to be clear...if the AS is on the main timeline,
    import statements
    > are not needed, and if the AS is external and imported,
    import
    > statements are needed.
    That's a general rule of thumb, but not 100% applicable.
    > Are there any other exceptions to that, or does that go
    for all AS3
    > classes?
    There are exceptions, and the easiest way to find them is to
    leave out
    your import statements and plug away ... sooner or later,
    you'll get a
    compiler error, and then you'll know. :)
    >> It did strike me *** odd though, an imported .as
    file uses the same
    >> publish settings as code on the timeline. So why
    treat them differently?
    FLA files have publish settings, but AS files don't. They're
    just text
    files. I hear what you're saying ... they end up getting
    compiled along
    with / into the some FLA anyway -- and that FLA does have
    classpaths
    listed -- but those same AS files might be compiled in Flex
    Builder 2 or
    some 3rd party compiler. It would probably make good sense to
    require the
    import statement for inline FLA code, but not everyone is a
    hardcore
    programmer, and Adobe knows it. Nothing is *hurt* by using
    import in FLAs,
    but for folks who just want to do light programming, the
    convenience of not
    having to use it is nice.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • IOS 6 Gamecenter ID did not require email address. iOS 7 does, how do I sync Game Center on new device

    My kid's have 3 iPod Touch's, 4th gen running iOS 6. We all share one Apple ID for purchases, but they each have their own Game Center ID. iOS6 Game Center DID NOT require an email address to use. Now I have bought them all iPad mini's that are running iOS 7. iOS7 REQUIRES an Apple ID to use. How do I import their Game Center info onto the Mini's?

    Hi Sonnyboy89,
    I am a little unclear as to what you are trying to do with Game Center on the iPads, but you can enter each user’s Apple ID in Game Center on their device using the steps in this article -
    Using Game Center on your Mac or iOS device
    http://support.apple.com/kb/HT4314
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • T/F: iPhone users are not required to pay $15/month extra for Good Technology

    I have a personal Droid RAZR M.  You may wonder why I am posting in the iPhone forum but you are about to find out.
    I have access to corporate e-mail via Good Technology.  When I got this service set up at the same time I acquired the phone, I was required to upgrade from a $30/month 2GB plan to a $45/month 2GB plan just to have this access ("needed for access to company servers").  That was a surprise but I got over it.  However, since then, I have come to learn the following:
    1.  It appears that other than VZW, no other carriers are charging users extra for access to Good Technology.
    2.  Based on a colleague's information from a Good Technology support engineer and a office mate who is using a VZW iPhone, VZW iPhone users are *not* *required* to move to an Enterprise plan aren't paying an extra $15/month.  If one searches the Internet, I am not the only one asking about this.
    If you are using a Verizon Wireless iPhone and have Good Technology on your phone, would you let me know if were *required* to upgrade your data plan and pay extra just for using Good Technology?
    Thanks,
    Techvet

    I need to check some information at work about this, since they have some guidance on how their employees can connect to their corporate email with android and iphone devices.

  • My service provider's SMTP does not require a password but the option "non" does not appear on the IPOD Touch 5th gen. Fix?

    I have relay.skynet.be as my outgoing server and it does not require/allow password protection. When configuring mail on the Ipod the option of "non" is not given for the outgoing server. Is this a skynet issue or is there an Ipod solution?

    Google for:
    setup XX email on iphone
    to see if ony of the returned sites help.
    XX is you email provider.

  • Bind Variable : required - no message, not required - error

    hi
    Please consider the example application created using JDeveloper 11.1.1.6.0
    at http://www.consideringred.com/files/oracle/2012/RequiredOrNotBVarApp-v0.01.zip
    It has these View Objects defined
    - EmployeesReqNoValueBVarVO which has a required Bind Variable, and where clause "last_name like '%' || :LastNameBVar || '%'"
    - EmployeesNotReqNoValueBVarVO which has a NOT required Bind Variable, and where clause "(:LastNameBVar is null or last_name like '%' || :LastNameBVar || '%')"
    The Bind Variable in both View Objects does NOT have a value (no default value, not programmatically set, not entered by the user, ...).
    This "no value set" aspect could be the result of a "development error", but the resulting observed behaviour is at least "peculiar".
    - scenario (sc1) : run "try tryEmployeesReqNoValueBVarVO", see a table filled with rows and NO message about the required Bind Variable
    - scenario (sc2) : run "try tryEmployeesNotReqNoValueBVarVO", see "No data to display." in the table and the "Missing IN or OUT parameter at index:: 1" error for the NOT required Bind Variable for a where clause that can deal with null values
    - question (q1) How can be explained that scenario (sc1) does not result in an error message about the required Bind Variable (and scenario (sc2) does result in an error message about the NOT required Bind Variable)?
    - question (q2) What does the "Required" checkbox for a Bind Variable really mean for Bind Variables used in a where clause of a View Object?
    If the described behaviour can be reproduced (using RequiredOrNotBVarApp-v0.01.zip), confirmations are welcome.
    (Aspects of these scenario's could be related to forum thread "Bind variable required/not required: strange behaviour".)
    many thanks
    Jan Vervecken

    Thanks for your reply Frank.
    Frank Nimphius wrote:
    ... your query actually is dependent on the existence of the bind variable because the bind variable is used in the where clause part. ...Sure, and the Bind Variable does exist (in both (sc1) and (sc2)).
    ... This has nothing to do with whether the bind variable value is checked for NULL and if the value it contains is NULL performs an "all you can eat" type of query. Because the existing, NOT required Bind Variable has not been given a value in scenario (sc2), the check for NULL only makes more explicit that NULL is a valid value for the SQL statement.
    ... Non required bind variables are used in the context of view criteria to avoid missing IN or OUT parameters. ...The "Required" checkbox for a Bind Variable is also available/enabled when the Bind Variable is not used in a View Criteria (in both (sc1) and (sc2)).
    ... In the case of a view criteria, the VO query may be executed without the view criteria applied and for this reason should not fail only because the defined bind variable is not provided. ...No View Criteria in the scenario's (sc1) and (sc2) I descirbe.
    ... If you run the query in the tester, you get
    (java.sql.SQLException) Missing IN or OUT parameter at index:: 1
    and no query is executed at all for EmployeesNotReqNoValueBVarVOSure, that matches scenario (sc2), but the Bind Variable can be configured as NOT required, how can it be missing?
    The JDeveloper help page "Create or Edit Bind Variables Dialog - Variable Page" says:
    "... Alternatively, you can use the SQL Statement page of the Edit View Objects dialog to enter a parameterized WHERE clause. Note that the bind variables you enter in a parameterized SQL WHERE clause will require a valid value at runtime or a runtime exception error will be thrown. ..."
    So, null as a valid value, seems to explain the behaviour in scenario (sc1).
    "... In contrast, when you create a view criteria filter condition that references a named bind variable, you can specify whether the value is required or optional. ..."
    But, the "Required" checkbox is also available (to uncheck) for Bind Variables that are not used in a View Criteria.
    Specifically for the "Required" checkbox the help page says : "... Select if you want to make the value of a name bind variable required for any usage the references the named bind variable. For example, when the value is required (default), all view criteria items that reference the named bind variable will fail to execute unless a valid value is supplied at runtime. Alternatively, you can leave the value not required and use the Create View Criteria dialog to specify whether or not individual view criteria items require the value. ..."
    Again, the focus is on View Criteria, although it can also be unchecked (configuring as NOT Required) for Bind Variables that are not used in a View Criteria (which does not seem to be something you should do).
    But, still, there is a perspective here that makes this possibly very confusing:
    - a View Object where clause with a required Bind Variable, no value set --> results in rows, and NO message about a missing value
    - a View Object where clause with a NOT required Bind Variable, no value set --> results in no rows, and a message about a missing value
    regards
    Jan

  • An accounting document is not required for this billing document

    Hi,
    While releasing the billing document to accounting the error is coming like "An accounting document is not required for this billing document"
    Diagnosis:
    The billing document has the net value '0' and does not create an accounting document. Despite this, the posting status 'C' (Posting document has been created) is set internally for this billing document.
    But the net value is coming in the sales order and alsi into the Billing document.
    gurus plz help me.
    regards,
    ragesh.

    Goto VOFA screen and check for ur billing type , what is assigned in the document type field?.
    Also please check, the posting block is activated. if it is, please remove.
    Also goto the accounting document type settings at OBA7, check whether the customer field is ticked under the account type allowed tab.
    Please let me know, whether ur problem solved..
    Reward points if useful..

  • TS1398 After updating to ios 6 my iphone 4 would no longer connect to my home wifi. At work we have a free wifi connection that does not require a password. However my wifi at home is password protected. I have the right password. It works on my ipod touc

    After updating my iphone 4 with the ios 6 update. My iphone would no longer connect to my home wifi that is password protected. I know that I have the right password entered in. At work we have a free wifi connection that does not require a password and I can connect no problem to it. My ipod touch has no problem connecting to my home wifi. It is a 3rd gen ipod and does not have the ios 6 update on it. Please help!

    I'm having the same issues. Started when I upgraded iphone 4S and ipad1 to 5.1.1. Wife's iphone 4g on 4.4.2 has been ok. I've forgot the network on both devices and restored the iphone, none of which changed the issue. I've upgraded to ios 6 on the iphone 4s, problem still persists.
         One thing that will help for a time: go to your router and change the wireless control channel. When I first did this I got full connectivity for about 48 hours... and now the problem is back. I'm now changing the wireless control channel every 12 hours, which is a pain but at least keeps me connected. I've tried a few other solutions that are out there and that has been the best one so far.
         to do this on a motorola router: type 192.168.0.1 in your address bar.
    username: admin and password:motorola if you have not changed the factory defaults.
    Click on the word "wireless" and look for the "control channel" field. This may be set to auto or to 1, try changing it to 6 or 11 (preferred) or any other channel.
    The control channel can cause static in the wireless system IF there are several networks nearby that are on the default setup.
    There is a fair bit of buzz about this issue out there, some other things I've seen:
    This is a hardware issue. Go to the store and have your wifi antenna checked, some users reporting that they get free replacement devices.
    Check against other wifi networks that require a password (this is next for me). Logon to those networks and surf until your wifi stops. If your wifi connects to the internet but stops responding, then this is a software (or hardware) issue and apple needs to step up. Some are claiming this to be the case.
    IF you connect and stay connected/on the internet on another password protected wifi, then the issue is with your router. this is where things get cute.
    Comcast may tell you to update your firmware. Motorola may tell you that your cable provider is the only one who can push through firmware updates. Comcast may tell you that you are not in an area that is being updated. It's unclear if they say that to all customers, or just those who have purchased cable modems and aren't renting them from comcast.
    Good luck, more to come if I figure out anything else, and please post any solutions you may find.

  • Is there a mobile phone that can sync with ical, but does not require a data plan?

    Is there a mobile phone that can sync with ical, but does not require a data plan?

    Thanks for the reply.  I already have this info, but have spent several hours trying to cross reference with the product descriptions and the different carriers websites.  I was hoping there was an easier way.
    John Maisey wrote:
    Hi,
    You cakn sync many phones using iSync. See here: http://support.apple.com/kb/ht2824
    Best wishes
    John M

  • Automatic creation of requirement for extra consumption in COGI

    Dear.
    For a production order with a component totally consumed during the backflushing of CO11N I run a new confirmation. The component isnu2019t available , the confirmation is done and the system create for the component an error movement in COGI.
    If I see MD04 for this component I donu2019t see any production order requirement for the extra consumption quantity in COGI.
    But the planner need to know the quantity that remain to withdrawn.
    Which is the reason for the missing automatic creation of requirement for extra consumption in COGI ?
    Thanks.

    Dear Cris,
    Have you manually edited and input extra qty in CO11N
    When backflush is activated and Full qty is confirmed
    Then if you perform confirmation second time then form where system will again pick the component
    Once again check in production order BOM over view and also in BOM what is the qty given
    Can you eloborate more in detail what you have performed ( steps required )
    Dear Siva,
    Just correct me if i am wrong
    Regards
    Madhu
    Edited by: K.Madhu Kumar on Sep 30, 2010 1:10 PM

  • Automatic Credit Note generation during billing

    Hi,
    How automatic credit note is generated during billing where document type is RV ? During Billing i.e, sales invoice accounting document type become RV and accounting entries are :-
    01 Customer A/c
    50 Revenue A/c
    50 Service tax payble A/c
    50 Educatio Cess A/c
    50 HEeducess A/c
    If there is VAT/CST it become credit.
    But two invoice documents are generated as doc type RV and accounting entries are :-
    11 Customer A/c
    40 Revenue A/c
    40 Service tax payble A/c
    40 Educatio Cess A/c
    40 HEeducess A/c
    In case of Credit note we can pass this entry through doc type DG. But during billing how automatic credit note is being generated ?
    Regards,
    Anindita
    Edited by: ARoy1000 on Aug 24, 2009 3:26 PM
    Edited by: ARoy1000 on Aug 24, 2009 9:52 PM

    Hi Yadav,
    In case of Credit note we can pass entry two ways are i) From Accounts by passing manual accounting entries if there is different of amounts and ii) direct generating credit note automatically after sales order istead of billing if there is shortage of quantitiy. Here Revenue accounts will be positive and Customer negative. In my case credit note has generated automatically after sales order instead of creating billing document which has posted directly as standard RV document type. I have one doubt there is no dfference in quantity. Whatever sales order quantity is raised same quantity has raised as Sales invoice. The user who generates normal sales invoice(billing) even he is very much doubt, instead of generating billing document how credit note is generated automatically where Revenue A/c, Service Tax A/c, Education and Higher Edu cess become Dr. How it is possible ?
    Regards,
    Samrat

Maybe you are looking for