Audio Mixing between track and menu items

The gain on my menu audio is too high. How can I reduce/mix the menu audio so that it better matches the track audio ?
Thanks,
Andrwe

Use an external sound editor to reduce the level of the audio-file [of the menu]; and then use the quieter version in DVD-SP. Try installing Bias Peak LE, which should have come with DVD-SP.

Similar Messages

  • Accessibility : correspondance between buttons and menu items

    Hello,
    I have been dealing with accessibility API to retrieve information from menu items and buttons in tool bar. In addition, I would like to be able to create a correspondance between a button (let's say, the "new message" button in mail) and a menu item ("new message" one in the menu bar), since they perform the same action. Is there any way to process to this correspondance "automatically" ?I first wanted to check name matchings, but some item do not really share the same name (e.g. refresh button in Chrome).
    How could I do that ? Is there any chance the button and the menu item might call the same "action handler" or something ?
    thanks in advance

    Use an external sound editor to reduce the level of the audio-file [of the menu]; and then use the quieter version in DVD-SP. Try installing Bias Peak LE, which should have come with DVD-SP.

  • 3 iphones in household.All use same apple ID.But all contacts get mixed between phones and facetime calls come in from other contacts.Ho can we change this so our phone information isn't visible to each other?

    3 iphones in household.All use same apple ID.But all contacts get mixed between phones and facetime calls come in from other contacts.How can we change this so our phone information isn't visible to each other?

    Use separate Apple IDs for each family member and use Family Sharing features of those things (if any) that you do want to share. https://www.apple.com/ios/whats-new/family-sharing/

  • Diff between TAN and TAS item category

    hi
    wht is the diffrence between TAN and TAS item category and how to configure during implementation stage.
    Thnaks

    Hello,
    Main difference between TAN and TAS is, TAN is relevent for delivey and TAS is not relevent for delivery.
    TAN is used in normal business process and TAS is used in third party process.
    In the item category determination it will be like
    OR -- NORM--> TAN --> TAS
    OR --> BANS --> TAS.
    Prase

  • I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.

    Hi All,
    I want to implement three level Horizental navigation on the top navigation and menu items are created based on the data available in a SharePoint List.
    Implement this requirement through customization, how can i start any help
    Thanks

    Hello,
    You can follow these links to get the result that you want. You can get the desired result either using the custom list or a site map. Please make sure when you edit the master page, dont work on the original v4.master. Always make a a copy and then work
    on it.
    This link will show you how get that navigation using a list.
    http://www.bitsofsharepoint.com/BlogPoint/Lists/Posts/Post.aspx?ID=60
    This link will show you how get that navigation using a sitemap.
    http://www.sharepointdiary.com/2012/01/custom-top-navigation-using-sitemap.html
    Please mark as "Answered" if this helped you.
    Thanks,
    norasampang

  • Trouble with Arrays of Menus and Menu Items

    Okay the short story is I am designing a GUI for an application, it has a lot of menus, and a lot of menu items per menu.
    I thought like in normal Java I could simply make an array of Menus and several arrays of menu items. My problem is that it compiles fine, but spews tons of exceptions. I am using Netbeans as my IDE.
    Here is a sample of my code. Its not the whole thing, but its the part that I suspect has problems since it worked before I switched to doing them as arrays.
    Menu [] menus = new Menu [11];
    menus[0].setText("File");
    MenuItem [] file = new MenuItem [8]; //FILE MENU DEFINITIONS
    file[2].setText("Open"); //open
    file[2].setOnAction(new EventHandler<ActionEvent>() {
    @Override
    public void handle(ActionEvent arg0) {
    FileChooser fc = new FileChooser();
    File file =fc.showOpenDialog(primaryStage);
    // file[2].setAccelerator(null);
    menus[0].getItems().addAll(file);
    MenuBar menubar = MenuBarBuilder.create()
    .build();
    menubar.getMenus().addAll(menus);
    VBox vbox1 = VBoxBuilder.create()
    .children(menubar,scrollPane1,btn)
    .build();
    ap.getChildren().addAll(vbox1);
    Anyways the stuff compiles just fine no errors. But Netbeans spews exceptions like a guy who chugged a bottle of ipecac and the programs bombs.
    Here is some of them.
    Exception in Application start method
    java.lang.reflect.InvocationTargetException
         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.javafx.main.Main.launchApp(Main.java:642)
         at com.javafx.main.Main.main(Main.java:805)
    Caused by: java.lang.RuntimeException: Exception in Application start method
         at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:403)
         at com.sun.javafx.application.LauncherImpl.access$000(LauncherImpl.java:47)
         at com.sun.javafx.application.LauncherImpl$1.run(LauncherImpl.java:115)
         at java.lang.Thread.run(Thread.java:722)
    Caused by: java.lang.NullPointerException
         at javafxapplication2.JavaFXApplication2.start(JavaFXApplication2.java:37)
         at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
         at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:206)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
         at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
         at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:29)
         at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:73)
         ... 1 more
    Java Result: 1
    I am not really sure what to do. I would like some recommendations.
    If possible I would still like to use arrays of Menus and Menu Items, but if its not possible, I would like to know and understand why not.

    I apologize if I don't fully understand. I am still kind new to this. But It was my understanding that .jar file was made after compiling not before. I am not really sure what you mean by class path. Could you give an example. Again this code worked wonderfully before I used arrays. If I comment it out and replace it with dummy code like this it compiles and runs just fine.
    MenuItem open = new MenuItem("TEST");
    Menu debug =new Menu("DEBUG");
    debug.getItems().add(open);
    MenuBar menubar = MenuBarBuilder.create()
    .build();
    menubar.getMenus().addAll(debug);
    StackPane rootz = new StackPane();
    final TextArea textArea =TextAreaBuilder.create()
    .prefWidth(600)
    .prefHeight(400)
    .wrapText(true)
    .build();
    ScrollPane scrollPane1 = new ScrollPane();
    scrollPane1.getStyleClass().add("no-border-scroll-pane");
    scrollPane1.setMinSize(400, 400);
    scrollPane1.setContent(textArea);
    VBox vbox1 = VBoxBuilder.create()
    .children(menubar,scrollPane1,btn)
    .build();
    ap.getChildren().addAll(vbox1);
    btn.setOnAction(new EventHandler<ActionEvent>() {
    @Override
    public void handle(ActionEvent arg0) {
    System.out.println("Hello World!");
    FileChooser fc = new FileChooser();
    File file =fc.showOpenDialog(primaryStage);
    Scene scene = new Scene(ap, 760, 500);
    primaryStage.setTitle("Hello World!");
    primaryStage.setScene(scene);
    primaryStage.show();
    * The main() method is ignored in correctly deployed JavaFX application.
    * main() serves only as fallback in case the application can not be
    * launched through deployment artifacts, e.g., in IDEs with limited FX
    * support. NetBeans ignores main().
    * @param args the command line arguments
    public static void main(String[] args) {
    launch(args);
    }

  • Merging two or more audio files, by a contextual menu item within the finder

    Hello, everyone,
    I want to merge or concatenate two or more simple audio files (wavs at the same sample rate and bit depth) into a new wav file - which don't need any conversion. I want to do this using a contextual menu service within the finder. Is there any possibility to do this? I can't find any software in the market that will allow me to do this.
    so that,
    'start.end_1.wav' + 'start.end_2.wav' + 'start.end_3.wav' = 'start.end_1&start.end_2&start.end_3.wav'
    Can anyone help? would sox help me with this, and if so, how to add it onto a finder contextual menu?

    Both of those directories are empty and I have deleted them and re-created them. I have been able to add and remove plugins for other applications so this is very strange.
    Using "Easy Find" I did locate a preference file, which I have deleted but that has not resolved it. I have tried safe mode and single user mode but no luck. I couldn't find any automator actions either.
    When I click on the menu item it says "ClamXav is not installed. Please install ClamXav and try again" so it knows it needs to use this program somehow.
    It's very odd and must be a result of a crash I had, though I would love to get to the bottom of it, it isn't serious and will hopefully go when I upgrade to Snow Leopard
    Thanks for your help though as it has taught me a few things!

  • Different figure display between Balance and Line items

    How can I find out the difference between line item and Balance in FS10n?
    Actually when I Executing the FS10N the balance of DR. balance is greater then that account Dr. Balance line item.
    Can any one tell me why?
    Thanks & Regards,
    Anandakumar

    Its a sundry debtors gl account. All the line item and open item transaction balance are displaying.
    but the amount is not displaying (difference amount).
    Any one has solution pls tell me.
    Thanks in Advance,
    Anandkumar

  • Anyone have a missing wave form in editor Problem? Can't move audio files between tracks also

    I want to edit my track but i can't , i also can't move recordings to different tracks up or down, i have to copy and paste them but then i lsoe audio, also the trim tool doesn't appear when i hover over the edge of the audio .

    Hi,
    Your audio is part of a track stack. If you click the disclosure triangle to show the subtracks, you'll be able to see and edit your regions in the Audio Track editor, as well as move them to other tracks and use the resize tool.
    J.

  • Iweb sidebar lost and menu items greyed out

    I need help getting iweb running again. After I published to a folder, I lost the sidebar and cannot access anything within the program. Have shut down, repaired permissions but don't have any idea what to do next. I had three websites developed but not published and I hope they are not gone for good.
    The tool bar, inspector, fonts and colors all can be accessed from the menu and this leads me to believe that the program is functional. Yet why can't I get a new page or new site?

    Hi, I just reinstalled the iweb program. Nothing changed. It is still non-functional. My procedure was to
    take the app out of the applications folder and put it in the trash. Perhaps this wasn't the best way to do it. I did a custom install selecting only iweb. The sidebar is still not available and the menu items are all grey.
    Its a 4 hour round trip to the apple store, and am hoping that someone might be able to help me at least get the iweb up and running again.
    I once had a problem with another application and it took my window off the desktop, I was wondering if somehow the operating window is around but not visible? Any ideas would be greatly appreciated since I can't sleep and need to get this situation solved.

  • Audio chat between G3 and macbook

    Hi,
    trying to get my sisters Imac G3 500 panther to audio chat with the current whitebook. My sister can audio chat between the two using the same router, but cannot connect when the whitebook is being used away from the house. The whitebook can successfully video and audio chat to other computers. is this a setting issue with the imac? The whitebook is a mac.com account while the imac is AIM.
    Thanks,
    Phil.

    Hi,
    Ok.
    Can you confirm that they are at the same location ?
    I am sure I understand that they are using the same device to get on to the Internet (the BT Home Hub)
    Umm.
    Remote IP Invalid (error 4 to those users above 10.4.7 who can view the Logs) is an issue normally only seen at the end that is away from a Leopard user.
    It normally points to an Issue at the Leopard end where their iChat (Yours in this case) has a LAN set up where iChat can "see" the internet twice.
    Caused by two DHCP servers on the same LAN. Connecting by Ethernet and WiFi to the same router, Same with a neighbour's wifi whilst Ethernet to your own, having Parallels installed and running Sharing the Macs IP and allied to that having Internet Sharing On in System Preferences > Sharing in Leopard.
    The BT HOME HUB has been an issue for iChat 2 and iChat 3 users in the past.
    Things improved when BT updated the firmware to 6.2.2.6 (AS seen in these Pics for the BT HOME HUB original)
    The issue was that they offer a VoIP service (Phones over the Internet) and this uses the same port that ichat uses to send the SIP invite after you send the Visible one.
    BT HOME HUB Instructions for Access and Pics
    This site is base on doing Port Forwarding.
    She does not need or in fact Want to do this but the site does tell her how to access the set up pages.
    Two things.
    One from the pics you can see this device can do UPnP
    She/they should check this is active. Most likely it is if the MacBook can answer or contact you. (Port Forwarding (or Triggering) or DMZ should not be Enabled.
    In the first real BT Pic you will see it list BT Broadband Talk and BT FON
    One, if not both, are likely to be something to do with using a phone over the internet. (The FON thing might be a hotspot Wifi thing)
    The Setting is most likely controlled in the Advanced > Telephony options (tabs and subtabs)
    She will need to check what if any port this says the BT HOME HUB uses.
    The Previous version was in fact made by Thomson-Alcatel and these also had a specific issue that other Thomson-Alcatels have/had until it got to the BT own firmware I mentioned.
    I am not sure who makes this one and the pics give no clues
    Basically the device forces any SIP data to port 5060
    This is the port she should look for in the telephony settings and see if anything implies this is what is restricting things.
    Hopefully Defcom will also post as he tends to know a bit more about the latest on these.
    I hope this helps so far.
    10:32 PM Friday; May 15, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • GetUserPrincipalName() and mixing between stateful and stateless

    I am using VPD, BC4J and the Struts version included in JDEV 9.0.3 final version.
    When I am calling
    String userName = getUserPrincipalName();
    from ApplicationModuleImpl it works fine as long as I am using stateful for all BC4J viewobjects, but when I am mixing between a stateful and stateless application module, getUserPrincipalName() will return the previous users principal.
    An Example that will cause this problem:
    User 1: Goes to a web page using a stateful AM
    User 1: Goes to a web page using a stateless AM
    User 2: Goes to a web page using a stateful AM
    when user 2 goes to a stateful page he will retrieve
    user 1's principal.
    My questions are:
    1) Does getUserPrincipalName() only work under stateful?
    2) Does a struts application using stateful application module lose stateful state after calling a stateless application module?

    Ahhh forgot to add something...
    if you want to keep your existing exception hirarchy (ABCException extends RemoteException).
    then make sure that in your statefull session bean the order of the catch block is first the catch(ABCException) and then the remote exception.
    If the catch block for remote exception comes first, then the ABCException will be sent to that block itself because ABCException is a sub class of remote exception.
    However, IMHO, business exceptions should not extend the remote exception... as the RemoteException is used to report technical errors and not business errors.
    hope this helps ....
    regards,
    Abhishek.

  • What is the difference between Alternate and Substitute item?

    Hi guys
    Can any one help me in understanding the difference between a Alternate Item and Substitute Item.
    Please refer any link / document for further study, if available.
    Thanks in advance
    Sreee

    Does Oracle have the concept of a substitute component, irrespective of the BOM in which it could exists?
    For example, Component A can always be replaced by Component B. This would be applicable to Product X or Product Y, both of them use Component A.
    Oracle seems to have the concept of a substitute component on a specific BOM (BOM_SUBSTITUTE_COMPONENTS).
    http://download-west.oracle.com/docs/cd/A60725_05/html/comnls/us/bom/bomtas05.htm
    Using this functionality, I would have to specify B as a substitute in two different BOMs - one for Product X, one for Product Y.
    I am wondering if there is a global "Subsititute Item/Component".

  • Inconsistencies between Balance and Line items

    Hello masters!
    I found some inconsistencies betwen balance and line items. I tried to solve the problem using  FAGLF03 and RFINDEX (when executing SAP retrieved: "New GL is active. GLT0 can not be adjusted") but both did not work.
    We have never gone trough an archiving process.
    Thanx
    Edited by: Naej on Jun 15, 2010 11:00 PM
    Edited by: Naej on Jun 15, 2010 11:01 PM

    Hi,
    This will happen only if you activate line item management after started posting that GL account
    Please execute program RFSEPA01 to set right this.
    Best Regards,
    Madhu

  • Synchronization between datagrid and chart Item

    Hi
    In my application, I have a datagrid and corresponding bar
    chart. there is a toggle button through which I can switch between
    chart and data grid.
    Now I want to synchronize both.
    for example If I select any 3 rows in data grid then it
    should selects 3 bars on the chart also.
    can any body help me in that?
    Thanks
    smonika15

    Hi,
    U need to have a combo box renderer something like:
    In the object that u are populating the data provider of the
    data grid, add 2 fields:
    listOfFields & selectedField.
    <mx:HBox horizontalScrollPolicy="off"
    verticalScrollPolicy="off"
    xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    public var itemSelected: Object;
    ]]>
    </mx:Script>
    <mx:ComboBox id="combo"
    dataProvider="{data.listOfFields}"
    selectedItem="{data.selectedField}"
    change="itemSelected=combo.selectedItem;"
    updateComplete="itemSelected=combo.selectedItem;">
    </mx:ComboBox>
    </mx:HBox>
    Now, loop through the list of objects that u get from
    back-end and keep setting the 2 new properties (listOfFields &
    selectedField). For setting the value of selectedField, u need to
    loop through listOfFields to match the fieldId.
    Hope that helps,
    Cheree

Maybe you are looking for

  • Unable to uninstall HP laserjet 500 colour MFP M570

    Hi, I installed the HP laserjet 500 colour MFP M570 software. I now need to uninstall it but it does not seem to work.  I have tried to uninstall the software by going through the control panel "uninstall programs" - when I click uninstall, nothing h

  • Import Scenario ( 100% EOU)

    Hi, Please suggest me how to map the below  import scenario, 1) PO to Import vendor ( Vendor Confirmation is there as inbound delivery) 2) Shipping notification will be informed by Vendor. 3) Creation of Inbound delivery based on delivery schedule li

  • Issue with Broadcasting and Publish query to Portal from query Designer

    Dear all, I have created a standard template ZWT_STANDARD_TEMPLATE in WAD and I have added this for Adhoc Analysis in 'Set Standard Web templated' RSCUSTV27. For Broadcasting I have added 0BROADCASTING_TEMPLATE70. I have problems with my broadcasting

  • I have the new macbook pro with retina and I am trying to back up with wd passport for mac and is telling me it is going to take 7days

    I have the new macbook pro with retina and I am trying to back it up, with wd passport for mac and is telling me it is going to take 7days. Any Ideas? Im afraid that means there is something wrong with my hard drive. I have verified the disk and it s

  • GPIB control...​.

    As always I am not sure if I am asking this correctly, but let try. I have a number of GPIB instruments to control. We have the following to be controlled: Stanford Research DS360 Ultra-low Distortion Function Generator Signal Generator TTi TSX3510P,