Encore CS3, why does subtitle bounding box move itself?

I've imported a subtitle text file into Encore CS3, specifying the bounding box at the initial load.  I've saved the project and exited.  The next time I open the project, the bounding box has moved itself downward and to the right and taken the subtitles with it.  I can find no way to relocate the bounding box, therefore I can no longer access the subtitles to edit them.  I do not know (about to find out) if the built image will also have relocated subtitles.
Why is this, and what can I do about it?

They appeared wrong, so I built the image as a test after they appeared wrong.  The image was built correctly.
As it turns out, it's now an academic discussion.  I found I had already made the subtitle changes I had intended to make when the bounding box went bonkers.  But I have seen this phenomenon once before, a few years ago.  I forget what I did then, possibly blew the subtitle track away and reimported the subtitles.

Similar Messages

  • Why does my tool box move up so I can not use it?

    WHY DOES MY TOOL BOX ALL OF A SUDDEN TODAY MOVE UP SO i CAN NOT SEE IT OR USE IT? ALSO i CAN NOT SEE MY BOTTOM TOOL BOX EITHER. WHAT CAN i DO TO CHANGE IT BACK OR DO YOU HAVE TO?

    Hit '''F11''', as you might have enabled the Full Screen mode.

  • Why does my bounding box not align on a centred path anymore?

    Typically I would be able to use the bounding box of a rectangle with a path style set to centred (not in or outside the path) in order to snap several objects paths to one another. Illustrator now sets the bounding box to the outside edge of a path thus not allowing this to happen anymore.
    Is there a quick way to fix this?
    Thanks, Alasdair

    Thanks Mike,
    I got to the bottom of it at the same time...the alignment guides were checked but I must have accidentally hit Use Preview Bounds.
    Once unchecked life is back to normal.
    Cheers, Alasdair

  • Why does the check box untick itself?

    I have a program which has a GUI control that I designed. It consists of several check boxes inside a panel, the user can tick one or more of them. There are various methods to get all the selections, untick boxes in code etc. In one place in my software, I need a dialog box to appear when the user ticks a box. So I got my control to raise a property change event whenever one of the check boxes is ticked or unticked. I then catch this in another part of the code, and cause a dialog to appear which asks the user for further options.
    My problem is this: for some strange reason, when the dialog appears, it is causing the check box to be unticked again immediately after it is ticked. I have prepared a simplified version of the problem code, below. If you comment out the call to ticking(), then it works ok (but the dialog doesn't appear obviously). Has anyone got any ideas, please?
    import java.awt.GridLayout;
    import java.awt.event.*;
    import java.beans.*;
    import java.util.HashSet;
    import javax.swing.*;
    public class Testing {
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                @Override public void run() {                 
                    Testing testing = new Testing();
        public Testing() {
            JFrame fmMain = new JFrame();
            CheckBoxes cb = new CheckBoxes("one", "two", "three");
            cb.addPropertyChangeListener(new PropertyChangeListener() {    
                @Override public void propertyChange(PropertyChangeEvent pce) {
                    String category = (String) pce.getPropertyName();
                    if(category.equals("ticking")) {            
                        ticking();  //commenting this out means the boxes are ticked ok
            fmMain.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            fmMain.add(cb);
            fmMain.pack();
            fmMain.setVisible(true);
        private void ticking() {
            final JDialog dlg = new JDialog();
            JButton okbutton = new JButton("OK");
            okbutton.addActionListener(new ActionListener() {
                @Override public void actionPerformed(ActionEvent ae) {
                    dlg.dispose();
            dlg.add(okbutton);
            dlg.setModal(true);
            dlg.pack();
            dlg.setVisible(true); 
        class CheckBoxes extends JScrollPane {
            public CheckBoxes(Object... arr) {
                super();
                GridLayout gl = new GridLayout();
                gl.setColumns(1);
                JPanel panel = new JPanel();
                setViewportView(panel);
                gl.setRows(arr.length);
                panel.setLayout(gl);
                ItemListener cl = new ItemListener() {
                    @Override public void itemStateChanged(ItemEvent ie) {
                        JCheckBox cbi = (JCheckBox) ie.getSource();
                        String propertyName = cbi.isSelected() ? "ticking" : "unticking";     
                        System.out.println("Item event: "+propertyName);
                        CheckBoxes.this.firePropertyChange(propertyName, null, cbi.getText());
                HashSet data = new HashSet();
                for(Object o: arr) {
                    if(!data.contains(o)) {
                        JCheckBox candidate = new JCheckBox(o.toString());
                        panel.add(candidate);
                        candidate.addItemListener(cl);
                        data.add(o);
    }

    Thanks Malcolm, I used the different thread as you suggested and it works fine :).
    import java.awt.EventQueue;
    import java.awt.GridLayout;
    import java.awt.event.*;
    import java.beans.*;
    import java.util.HashSet;
    import javax.swing.*;
    public class Testing {
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                @Override public void run() {                 
                    Testing testing = new Testing();
        public Testing() {
            JFrame fmMain = new JFrame();
            CheckBoxes cb = new CheckBoxes("one", "two", "three");
            cb.addPropertyChangeListener(new PropertyChangeListener() {    
                @Override public void propertyChange(PropertyChangeEvent pce) {
                    String category = (String) pce.getPropertyName();
                    if(category.equals("ticking")) {   
                        ShowDlg sd = new ShowDlg();
                        EventQueue.invokeLater(sd);
            fmMain.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            fmMain.add(cb);
            fmMain.pack();
            fmMain.setVisible(true);
        class CheckBoxes extends JScrollPane {
            public CheckBoxes(Object... arr) {
                super();
                GridLayout gl = new GridLayout();
                gl.setColumns(1);
                JPanel panel = new JPanel();
                setViewportView(panel);
                gl.setRows(arr.length);
                panel.setLayout(gl);
                ItemListener cl = new ItemListener() {
                    @Override public void itemStateChanged(ItemEvent ie) {
                        JCheckBox cbi = (JCheckBox) ie.getSource();
                        String propertyName = cbi.isSelected() ? "ticking" : "unticking";     
                        System.out.println("Item event: "+propertyName);
                        CheckBoxes.this.firePropertyChange(propertyName, null, cbi.getText());
                HashSet data = new HashSet();
                for(Object o: arr) {
                    if(!data.contains(o)) {
                        JCheckBox candidate = new JCheckBox(o.toString());
                        panel.add(candidate);
                        candidate.addItemListener(cl);
                        data.add(o);
        class ShowDlg implements Runnable {
            @Override public void run() {
                final JDialog dlg = new JDialog();
                JButton okbutton = new JButton("OK");
                okbutton.addActionListener(new ActionListener() {
                    @Override public void actionPerformed(ActionEvent ae) {
                        dlg.dispose();
                dlg.add(okbutton);
                dlg.setModal(true);
                dlg.pack();
                dlg.setVisible(true); 
    }Edited by: 892190 on 19-Oct-2011 08:02

  • Why does it take I movie 6 hours to produce thumbnail for a new project

    why does it take I movie 6 hours to produce thumbnail for a new project

    Hi
    Seems very long time.
    When my Mac starts to get into a slow-motion in action eg encoding DVDs or alike - it's nearly always due to that free space on Start-Up (Mac OS) hard disk is to low.
    • I try to never have less than 25Gb free space
    • 10Gb - might work but slows down
    • 5Gb - slow and instable
    • less - incredibly slow, instable and if DVD is produced - it usually doesn't work
    This space can not be utilized on other hard disks - Neither for Mac OS or iMovie or iDVDs temp. files - Has to be stored here. No-where else.
    Yours Bengt W

  • Why does the page not move smothe when i scroll?

    Why does the page not move smothe when i scroll?
    Sometimes it even move slower then i Scroll?
    I use a Mac and i have tried to reinstall the program.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    See:
    * [[Troubleshooting extensions and themes]]

  • Why does iTunes freeze when movie download is processing and it will not restart the download but yet it billed my acct for payment already?

    Why does iTunes freeze when movie download is processing and it will not restart the download but yet it billed my acct for payment already? It has been a week now and still not done processing. I get an error message when I try to restart the download.

    What Windows version?

  • Type Kit- Why does a dialog box appear when opening a file?

    Type Kit- Why does a dialog box appear every time I open a file- asking to substitute fonts that I've had working for years. Also, what is that pink box around the type- they are not missing fonts.

    Which version?- Latest Creative Cloud Type Kit
    Which system?- Mac OS 10.10.1, iMac 7i
    Where does the file come from? File is an Adobe Illustrator CC
    Which fonts?- Any and all fonts that was used in the .ai file which I have been using for years.
    Do you use font management? Which one? Mac Font Book
    Are you really sure that your fonts are properly installed? Yes and verified.    
    Did it ever work? Yes, Ever since I opened Font Kit on Creative Cloud I get a window stating that the fonts in an existing file are missing and do I want to substitute.
    Did you just upgrade?- Apps always upgraded.
    Did you change systems?- Ever since I opened Font Kit on Creative Cloud
    The PINK box around the type, I believe, indicates a missing font- but they are not missing and I'm sure as hell not going to let Type Kit control MY FONTS.  How do I turn it off as the pink box is intruding with the design composition???
    SEE Sumit Singh’s reply- worked for the pink highlight. I have to see about the dialog box thing- I will let you know.

  • Why does my signature box appear as "none" instead of the signature I have designated?

    Why does my signature box appear as "none" instead of the signature I have designated?

    Rebuild the Spotlight index. If you try to search now from the magnifying-glass icon in the top right corner of the display, there will be an indication that indexing is in progress.

  • Why does siri come on by itself while it sits on the table no one touching it?

    why does siri come on by itself while it sits on the table no one touching it?

    michael jfromtaunton wrote:
    why does siri come on by itself while it sits on the table no one touching it?
    If you're not running iOS 8 as you describe you are not, and Siri keeps coming on, this could be a hardware failure of the Home Button.
    Try these steps:
    Basic Troubleshooting Steps when all else fails
    - Quit the App by opening multi-tasking bar, and swiping the App upward to make it disappear.  (For iOS 6 older, hold down the icon for the App for about 3-5 seconds, and then tap the red circle with the white minus sign.)
    - Relaunch the App and try again.
    - Restart the device. http://support.apple.com/kb/ht1430
    - Reset the device. (Same article as above.)
    - Reset All Settings (Settings > General > Reset > Reset All Settings)
    - Restore from backup. http://support.apple.com/kb/ht1766 (If you don't have a backup, make one now, then skip to the next step.)
    - Restore as new device. http://support.apple.com/kb/HT4137  For this step, do not re-download ANYTHING, and do not sign into your Apple ID.
    - Test the issue after each step.  If the last one does not resolve the issue, it is likely a hardware problem.

  • After the new update, why does my Bluetooth keep turning itself on? I keep turning it off, but it still finds a way to turn itself back on

    After the new update, why does my Bluetooth keep turning itself on? I keep turning it off, but it still finds a way to turn itself back on

    hi Apfelwurm,
    why do you say it's not normal.
    it always switches itself on after i update. it just did again, this time for 7.1.2.. i t also will switch on after a restore.
    i never use bluetooth and make sure it's not on for any other reason.
    it's been noticed by others too.
    http://www.forbes.com/sites/kashmirhill/2014/03/12/apple-keeps-turning-bluetooth -on-when-you-update-your-iphone/

  • Why does my 4s phone mute itself? I've reset the setting like other posts have suggested.

    Why does my 4s phone mute itself? I also have a hard time hanging up after a call. The screen goes blank like it's in a sleep mode. I have to use 2 hands to make it hang up--one to hold the home button and the other to hit the end bar. I've "Reset All Settings" in General Settings like other posts have suggested. This worked for a short period of time but now the phone is back to muting itself. Why does this happen?

    Basic troubleshooting steps clearly outlined in the User Guide are restart, reset, restore from backup, restore as NEW.
    If you've been through ALL these steps and you still have problems, then you'll need to bring your phone into Apple.

  • Why does the iPod starts by itself?

    When I plug the earphones into my iPhone 3G, the iPod automatically starts playing songs. Why does that happen then?

    - By restore itsself do you mean that it erases itself and then either sets ups as a new iPod or restores from a iCloud backup or backup on yur computer?
    - You also say that "how can i just make my ipod a hotspot or something?"
    The iPod does not have celluar connectivity so it has to use wifi to connect to the internet. When you first get a new iPod yu can set it up via wifi or by connecting it to a computer that is connected to the internet. Has the iPod been setup already?

  • Why does an object collide with itself?

    I'm getting an unusual condition where, after using WakeupOnCollisionEnter(Node node) calls back my program with the triggering path, I am getting objects that collide with themselves.
    Why is an object colliding with itself?

    I don't think that's it.
    The docs for WakeupOnCollisionEnter says:
    "Class specifying a wakeup when the specified object collides with any other object in the scene graph."
    They key words being "any other object", which would seem to preclude the node specified.
    The specified object is my player's avatar. I do no checking. I simply let the WakeupOnCollisionEnter class tell me what the avatar collided with, and it tells me

  • Why does my Outputed Rendered Movie not play smoothly?(w/ After Effects CS3)

    I have an Intel Core 2 Duo with 3 gigs of RAM so my exported movie(HD) should playback with no problem, but this is not the case.  Everytime after I render and export my finished project(with After Effects CS3), when I then open it up to play it in Windows Media/Quicktime etc. the movie is not smooth and looks like it's still in the process of rendering. I can't figure this out. If anyone could answer this question I would really appreciate it.  Thanks alot
    Bcurless1000

    See these threads for an answer:
    http://forums.adobe.com/message/2989384
    http://forums.adobe.com/message/2958839#2958839

Maybe you are looking for

  • How do you delete videos and songs in iTunes?????

    My delete option is in shady light gray font meaning you can't use this option. How do I delete songs and video?? Anyone?? Thanks!!!

  • Error with the Shared Variable Engine

    Hi, I have a problem with the Shared Variable Engine, A .doc File is attached to this message, decribing the problem with pictures. I will be glad if anyone can help me.  Sincerely yours Amitai Abramson Attachments: Question.doc ‏819 KB

  • Elements 10 Organizer does not work anymore

    I received the message "Elements Organizer has stopped working" , after I opened for pictures created a new "Tag". Then PSE 10 plunged. This is done regularly now, when I start the Organizer of PSE 10. The editor works fine. My catalog contains aroun

  • JSP in Oracle 8i enterprise edition for linux

    Well, the thing is, i'm trying to configure my server to run with JSP, i've tried ererything, map the directories, see de wrapper_classpath, everything, even servlet zones, but my problem, is that i can't put JSP to work, all the time it gives me thi

  • Using MPEG streamclip to convert VIDEO_TS files (DVDs) with chapters

    I am using MPEG Steamclip to convert DVDs (ie VIDEO_TS files). Where the DVD has no chapters then it converts in one go into a new file. However where the DVD has some chapters, it gives me an option to convert each chapter individually. I actually j