Chapter Marker Buttons Not Working & .dvdproj Files Too Large

Chapter marker buttons do not work after saving as VIDEO_TS folder. Only first chapter marker button works in DVD player after VIDEO_TS files are created. The other buttons do nothing. My chapters were created automatically in iDVD. Also, original .dvdproj file mushrooms from 132KB to 3.2Gig upon each "save as VIDEO_TS folder" process. Then reopening original .dvdproj file takes 5 minutes, and I must "save as" to create a new copy to bring the file size back to 132KB. This is horrendous. "Save As" file works fine, but makes a new huge .dvdproj file after creating another VIDEO_TS folder. Unable to complete any project in '08 iDVD.

+saving as VIDEO_TS folder.+
Don't do that. From Help:
+Saving as VIDEO_TS folder: Saving a project as a VIDEO_TS folder allows you to play it back, on your computer, using software such as VLC media player. Saving as a VIDEO_TS folder is similar to saving as a disc image: the output quality is the same, and both methods take about the same amount of time to complete. *You can’t burn a disc from a VIDEO_TS folder*.+
Suggest you create a disc image and then burn the DVD. File/Save as Disc Image...
http://docs.info.apple.com/article.html?path=iDVD/6.0/en/18.html
http://www.kenstone.net/fcphomepage/image_to_diskstone.html
This will isolate any encoding/burning issues you may encounter. Once the disc image is created, double-click the .img and burn the virtual disc that should appear on your desktop, using Toast to burn the DVD. Disk Utility to burn the .img file. Usually, you can select a burning speed in Disk Utility.
There are variations to this process based on which OS X you are using...
Open Disk Utility (in Utilities folder in Applications folder), click on the virtual disc (maybe the .img) in the left-hand window. Click the Burn icon. A new window should drop down and your SuperDrive tray will open after clicking the Burn icon. Insert a recordable DVD. (Verbatim DVD-R preferred by me.) Click the Close button. Wait. Select a burn speed. If you hold your mouse cursor over the pop-up it says: "Select a slower speed to work around burn failures," so select 4x or slower for best results. Then click the Burn button.
-->If the virtual disk selection won't allow you to click the Burn icon, use the .img file instead. This may have changed in 10.3.9 and did change in Tiger.
Also, you can use DVD Player to play the virtual disk to check your iDVD project before burning to DVD. Launch DVD Player. File/Open VIDEO_TS (Open DVD Media... in Player 4.6). Find the VIDEO_TS folder and open that. (The audio folder is for DVD-Audio disks.)
http://docs.info.apple.com/article.html?artnum=93006

Similar Messages

  • Maybe solved pacman : could not open package: File too large

    please help! i just made a PKGBUILD for Unreal Tournament 2004 (spent a lot of time on it!) now it says it can't install it.  the finished file is 2.6gb.  what to do?  thanks much.. i want to upload it to AUR.
    thanks
    karsten

    Sigi wrote:I think he wrote a PKGBUILD to install the DVD content in an "Arch friendly" way. (With the background that the linux installer apparently isn't available on every edition of the UT2k4 DVD)
    exactly.. its reads the files and installs it according to Arch.  how do i get pacman to not die?? thanks..

  • File too large - attachment settings not working

    Hi there
    We are having problems with attaching files in IMS 5.2 & wondered if anybody can help.
    Our outgoing mail message max size is set to 50MB (I know about the extra 33% space required for encoding) and yet we still cannot attach files to emails that are greater than 5MB.
    Does anyone have any idea why this is not working?
    Anytime we try to send a 7 or 8 MB file an error "File too large "comes up right away
    The settings in the messaging server console is set to 50MB. This is under the HTTP service
    There was a previous post but the solution did not solve my problem.
    Can anyone help?
    Thanks

    There are separate settings for webmail attaqchments. Please check documentation at:
    http://docs.sun.com/source/816-6020-10/cfgutil.htm
    and look at:
    service.http.maxmessagesize
    and
    service.http.maxpostsize
    these both default to 5 megs.
    You have to restart the webmail daemon to make a change take effect.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Back Button not working in FireFox 4

    Is anyone else having trouble with the back and forward buttons not working in FireFox 4? I installed 4 on an XP desktop and a Vista 64 laptop, and the forward and back buttons don't work on either installation. Does anyone know a fix for this? I tried deleting the "places" files in the profile and that does not help.

    I am having a problem with the back button also in Firefox 4. Firefox forgets the 1st page in any new session or tab. If I open a tab to say bbc.com and navigate to guardian.com I can't click the back button to get back to bbc.com.

  • Title & Menu Buttons not working correctly on remote control/ set top player but work in preview.

    Title & Menu Buttons not working correctly on remote control/ set top player but work in encore preview. This only happens for a Blu ray project. When a user presses the menu button it should go to the previous menu they were on but it goes to the main menu. When they press the title button they should go to the main menu but it doesn't do anything. My DVD projects work as expected.I've tried creating a new "test" project with different footage and still get the same undesirable results.
    Overrides grayed out and set to "not set" for timelines and menus.Project settings and build are set to blu ray. Also I've noticed when I preview a Bluray project the preview window shows a red colored disc next to the Title button when viewing the timelines and green when playing the menus but not so for a DVD project it displays red if motion menus and or timelines are not rendered/encoded. I'm not using motion menus and all the media is encoded according to the project specs.
    I've searched this forum but couldn't find the answer. Any help or redirects to a solution would be appreciated. Working with CS5. Thanks.

    I found out on my Samsung Blu ray player the remote has a tools button on it that brings up audio, angle, chapter selection etc.and also title selection which is actually the menus and the timelines unfortunately. It's not as easy or direct as last menu selected but it's a workaround at least. I also plan on using a pop up menu. I'll let you know.

  • Buttons not working, all of a sudden?

    Nothing has changed, no editing was done, and all of a sudden, buttons not working.  I trued exporting from Flash again, with the same pblish settings.  Bit Action Script seems to give me a message now saying it wont export as a button.  Tried AS 2.0 and 3.0, but i made original files in 3.0
    thoughts???
    thank you!

    Either convert that symbol to a button symbol so that you can use the code you showed, or assign it an instance name and place the following code in the timeline...
    yourMCName.onRelease = function(){
         getURL("page2.html","_self","GET");
    Where yourMCName is whatever instance name you assign

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • In formcentral, why does the "proceed to checkout" button not work? on IE I get error " This content cannot be displayed in a frame...

    In formcentral, why does the "proceed to checkout" button not work? on IE I get error " This content cannot be displayed in a frame. To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame ". On Chrome I get nothing but loading.

    Hi,
     This error is generally specific to Internet Explorer and has two possible causes. The most likely explanation is that your browser has unusual browser security settings. I would recommend you try
    resetting your security settings to defaults (varies by version but all essentially the same). You may also have to turn off
    Protected Mode which is enabled by default on some systems. If you’re seeing this error (or a version of it) outside Internet Explorer, you may have a server-level setting that is preventing your content from being framed.
    Reference:https://social.technet.microsoft.com/Forums/exchange/en-US/1460c5a5-6242-4402-9f6b-bc581bf56478/content-cannot-be-displayed-in-a-frame-when-trying-to-add-item?forum=sharepointgeneral
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Eric Tao
    TechNet Community Support

  • Backup and restore buttons not working

    Hi,
    Any button in my backup and restore centre with a shield next to it (for UAC) is not working. Identical to this thread:
    https://social.technet.microsoft.com/Forums/windows/en-US/6a138e65-2834-41ac-bd40-c2344e20b824/backup-and-restore-panel-buttons-not-working
    A fair way down that page, Lokesh replies but I don't have any of the software that he mentions in his post. Is anyone able to help?

    Hi,
    According to the Lokesh's reply, this problem is probably caused by 3rd plugin in Windows Explorer Shell. UAC dialog couldn't be prompt correctly.
    To resolve this problem, you can try to use ShellExViewer instead to make troubleshoot, please follow the content of the link below for more details:
    https://social.technet.microsoft.com/Forums/windows/en-US/5353106e-5b19-4a26-8446-72bedf40b169/rightclick-context-menu-in-desktop-appearing-slow-win-81?forum=w8itprogeneral
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Adobe Fourms does not work with Opera too well

    Adobe Fourms does not work with Opera too well.  I have to use in Opera "Identify as Firefox just to post this message!
    I also have run into the same junk with Hotmail.
    Web Design Tip:  Always code for Opera and all other browsers will fall in line most of the time.

    dave milbut wrote:
    of course you're right east texas. hadn't noticed that. bad bad adobe. someone smack them with a rolled up news paper on the snout!
    I've installed a button in my Firefox tool bar to toggle iFrames on and off through a Firefox add-on called "Toolbar Buttons".
    The forum Reply Editor does not work when iFrames are blocked, so I need to toggle them back on when posting, then back off.  I imagine that's better than having them on all the time.
    Message was edited by: Ramón G Castañeda

  • IPod touch 4th generation, home button not working at all, Help?

    IPod touch 4th Generation , home button not working at all, Help?

    - Try restoring your iPod to rule out a software problem.
    - The try:
    fix for Home button
    Fix a broken, unresponsive or sticky iPhone Home Button
    iPad 2 home button fail: Apple Support Communities
    You can turn one Assistive Touch in Settings>General Accessibility to use the screen instead. See chapter 30 of the users guide
    iPod touch User Guide (For iOS 5.0 Software)
    If under warranty make an appointment at the Genius Bar of an Apple store.

  • Mouse right button not working

    Hai i am shebeer.. i updated my mac os x 10.4.7 to 10.4.11 after updation my right button not working . please help me to solve this problem...

    So far we're just trying to narrow the problem down, so it looks like it's not likely an OS problem, not impossible but not too awful likely.
    Do you have another Mouse to try?
    Can you try this Mouse on another Computer?
    In System Preferences>Mouse & Keyboard, you might try changing the Primary Button to the Right one to see if the Right Button works as a
    Left button, +but the problem+ with that is that I really don't know what you'd do *if you have no Button at all* then!

  • Print button not working with Xerox pluggins installed

    Thanks to the wonderful people here I found that if you have any Xerox plugins in /Library/Printers/PPD Plugins you can experience the print button not working.
    Removing them fixes it which is nice but I need the plugins, anyone know a work arround?

    I've seen this happen with some of our Xerox PPD's on PC's. The cause in this case, is their reference to virtual memory with older OS systems.
    I instead used an older PPD or a PPD I had edited to support 200"x200" custom pages sizes, supporting full color.
    All I needed was a clean postscript file.
    The Adobe 7 PPD writes clean PS.
    If you need some kind of VIPP instructions in your PPD for the Xerox, I'd look at getting a newer PPD form Xerox made for OSX.

  • Central button Not working ..... now ? 5 buttons not working !!! What can i do?

    Hello all,
    I bought my blackberry torch in September 2011  and two months ago the center button was problem (bellow the screen)  and not working at all. so I gave it to a company to fix it and told me to round 45 euros to fix it. also told me that it will be ready in the new year because they would have holiday. The man there made a report saying the problem with the center button (only had this problem, I note) and now they brought me back and told me  they can not fix it and they send it to blackberry but  even they could not fix it.  Enable my phone  front of them and did not operate any button of 5 bellow the screen (two to the right of the center button that had problems and two to the left). I told them to send it back to the technician because when I gave to you to fix it only one button was not working and now none of the 5.
    After nearly two months they brought me back and told me ''we can not do anything ....'' So,five buttons not working.
    What can I do in this case????
    Not got it from there yet to see what I can do or what can I say?
    I think I'm right. It is reasonable to I want my phone back with only one button broken as I gave it to them and not with extra 4 buttons not work.
    Sorry for my english, I hope you understand  

    A battery pull does nothing to improve the performance of the battery, it clears your phone's cache of unwanted fragments that have accumulated and this improves the performance of your phone.  I doubt it's as simple as this but it wouldn't be the first time I've heard of a service centre charging money for repairs when a simple battery pull would have done the trick.
    When you get your phone back (working properly or not), I suggest trying a battery pull. 
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

Maybe you are looking for

  • AOL Contact in Jabber Client

    Has anyone been able to successfully set up an AOL Contact on their Jabber client? I'm using Jabber 8.6.4 for Mac and whenever I specify my wife's AIM account name and select the checkbox for "This is an AOL account", then click the "Add" button, I g

  • Asset purchasing through Material Management

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. Do not post in multiple forums.> Dear All, While I am posting the MIGO for Asset

  • Passing parameters to run() method of a thread?

    hello ppl is it possible to pass any parameters to the run() method of a thread moreover if i create a thread foo the only method that can run is run() ? i know that i can have more methods and just call them via run(). i mean that if i create the co

  • Accounts behaviour

    I messed around with accounts: originally there were two showing up on log in: mine (not the root account) plus a general one for my office. I deleted the general one using 'delete immediately' so my first question is: 'is all the info in this accoun

  • PLEASE HELP! importing from illustrator

    i made a drawing in adobe illustrator and have imported it as a .pict file to fcp. it looks great in the viewer when i double click it from the bin. but when i put it on the timeline, and double click it, it looks horrible - blurred, jagged and broke