"File path not found" when opening an Encore DVD project made 2 years ago

Configuration:
XP SP3, Encore DVD CS3 coming from Creative Suite.
2Gb RAM, fast-enough-CPU, large-enough-harddisk (~70Gb space).
The project, as I remember, should has been made with Encore DVD 2.0 2 years ago.
The project file is placed on the C:\ with no invalid characters on the path or filename.
The message prompts when I try to open the project file and after some loading(1 sec).
I have been searching on the Internet for these problems on other people but there are no satisfactory solutions yet. Does anyone have the same issue?
Thanks!

ummm - I think this must be something like:
http://www.cs.yorku.ca/java/api/type/api/type/lang/package-summary.html
right?

Similar Messages

  • File path not found

    hi
    i am using
    parameters:p_file like rlgrap-filename,
    to read the path for the file,
    if the file is not found.
    it should mention enter correct file path.
    how do i handle this scenario.

    You can check the SY-SUBRC returned form the UPLOAD FM.
    Like:
      DATA: L_FILE TYPE STRING.
      L_FILE = P_LFILE.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD
        EXPORTING
          FILENAME            = L_FILE
          HAS_FIELD_SEPARATOR = 'X'
        CHANGING
          DATA_TAB            = IT_FILE
        EXCEPTIONS
          FILE_OPEN_ERROR     = 1
          FILE_READ_ERROR     = 2
          OTHERS              = 18.
      if sy-subrc <> 0.       "<<
        message e398(00) with 'Error while opening a file'.
      endif.
    You can add the File Selection Pop up for the file on the presentation server.
    Like:
    PARAMETERS:       P_LFILE TYPE CHAR70 OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_LFILE.
      PERFORM F4_LOCAL_FILE.
    FORM F4_LOCAL_FILE .
      DATA: LT_FILES TYPE FILETABLE,
            LW_FILES TYPE FILE_TABLE,
            RC       TYPE SY-SUBRC,
            L_TYPE   TYPE STRING.
      L_TYPE = '*.txt'.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_OPEN_DIALOG
        EXPORTING
          WINDOW_TITLE            = 'Raw data for RFBIBL00'
          DEFAULT_FILENAME        = L_TYPE
        CHANGING
          FILE_TABLE              = LT_FILES
          RC                      = RC
        EXCEPTIONS
          FILE_OPEN_DIALOG_FAILED = 1
          CNTL_ERROR              = 2
          ERROR_NO_GUI            = 3
          OTHERS                  = 4.
      IF SY-SUBRC <> 0.
        MESSAGE E398(00) WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Get file selected
      READ TABLE LT_FILES INDEX 1 INTO LW_FILES.
      MOVE LW_FILES-FILENAME TO P_LFILE.
    ENDFORM.                    " F4_local_file
    Regards,
    Naimesh Patel

  • "file is not compatible when import assets in dvd studio pro, my file are .mov and .mp4, what is the problem?

    i have a MacBook Pro v. 10.7.5, also have dvd studio pro 4.2.2
    I have a file exported from final cut v. 7, using quick time movie option, it created a file with .mov. When I import to dvd studio pro, I have an error
    message " file is not compatible". shall I export again using different parm? settings? thanks for the help in advance.

    Thanks, Russ. I had my problem resolved by re-creating file from Final Cut using the "Video Format" as "MPEG-4 improved" instead of "H.264" before. 
    My orginial source is a dvd came from Taiwan, I used software 'Handbrake' to convert it to MPEG-4. Input to Final Cut to edit it. Exported out with H.264 as Video Format, wishing to improve the image quality but run into 'file impaitable' when import to DVD SP.
    Now. I exported out Final Cut using the following parms, pictures quality is not bad.
    1. File format = MP4
    2. Image size= 1280x720 HD
    3. frame rate = 30
    4. video format = MPEG-4 Improved
    hope this help people who might run into same problem. I never use the Compressor, will try it next time. thanks Russ.

  • "File Not Found" When opening a file in illustrator CS3

        I having issues where when I click on a file it launches illustrator but then I get prompted with file not found. I then open illustrator and browse to the file and am to open it....any ideas? This one has me stumped.

    I think I found the problem. I am using Illustrator CS5 (15.0.02) running on MacOS (10.7.5).
    In my script, Folder.selectDialog function was returning "file:///Users/alex/Apps/temp", when I selected the temp folder from the dialog box. I want the function to return "/Users/alex/Apps/temp". If I hardcode the path (as shown below), the javascript runs fine.
    // Select the source folder.
    //sourceFolder = Folder.selectDialog( 'Select the folder with Illustrator files', '~' );
    sourceFolder = Folder("/Users/alex/Apps/temp");

  • How can I stop Firefox from opening (to "File Not Found") when opening my Opera browser?

    Ever since I installed Opera 10.61 on my new computer (Windows 7 Ultimate operating system), whenever I open Opera, Firefox opens one second later with the following error message:
    '''File not found '''
    Firefox can't find the file at /C:/Users/Nasheed/AppData/Local/Opera/Opera/temporary_downloads/client-en.xml.
    * Check the file name for capitalization or other typing errors.
    * Check to see if the file was moved, renamed or deleted.
    TRY AGAIN.
    <nowiki>****************************************************</nowiki><br />
    This happens EVERY TIME I OPEN THE OPERA BROWSER. How can I stop this from happening? I'm stumped.
    [EXTRA INFO - I was unable to enable Firefox to access my previous profile on the new computer (despite putting the old profile in the appropriate Mozilla Firefox folder. So, there are now two profiles in that location.
    After reading the answer to another forum member's question, I attempted to resolve the problem using Profile Manager, but I was unable to locate the Profile Manager. The Windows "Search" feature is not enabled on my new computer (nor can it be enabled from the Customize Start Menu options).]

    Thank you for your response, Cor-el.
    I had Opera set as my default browser since this began happening. I changed my default browser back to Firefox mainly because having Firefox open one or two seconds every time I open Opera was/is such a nuisance.
    I believe this problem began because I attempted to manually transfer the files from my old computer to the new one (via the backed up files in my external drive). I was unfamiliar with Windows 7 when I did this. Microsoft changed the file set up from what I had been used to in Windows XP. I used XP for six years before being exposed to Windows 7 (I never had Vista).
    I'm almost sure this problem has something to do with where I placed the application data when I was trying to reestablish the program set up on the new computer.

  • Getting a runtime exception saying file/path not found

    Hey, I'm pretty new to Java, or programming, and I'm trying to make this program work which asks the user for a file that stores transactions made using their creditcard and then posts a statement, but when i run the program, I get an error saying that the file/path was not found even though, the file is saved in the same directory as the public class, and my second problem is that i have to get the program to read the code, which is the first token in the loop as upper or lower case, i.e. that it is case-insensitive...any help would be greatly appreciated...
    import type.lang.*;
    import type.lib.*;
    import java.util.StringTokenizer;
    public class Check07A
    {     public static void main (String [] args)
         {     IO.println ("Enter name, limit, and trx filename (comma-delimited): ");
              String entry = IO.readLine();
              StringTokenizer st = new StringTokenizer(entry, ",");
              String name = st.nextToken();
              IO.println (name);
              double limit = Double.parseDouble(st.nextToken());
              IO.println (limit);
              int num = 3456;
              CreditCard visa = new CreditCard(num, name, limit);
              String file = st.nextToken();
              IO.println (file);
              UniReader ur = new UniReader(file);
              for (String code = ur.readLine(); !ur.eof(); code = ur.readLine())
              int amount1 = ur.readInt();
              IO.print(code);
              IO.print(amount1);
              StringTokenizer test = new StringTokenizer(file,"");
                   while (test.hasMoreTokens())
    {IO.println(test.nextToken());
                   code = test.nextToken();
                   IO.println(code, "5Z");
                   String amount = test.nextToken();
                   if (amount1 > limit)
                   {IO.println(amount1, "10.2");
                   IO.println("rejected.");
                   else
                   {IO.println(amount1, "10.2");
                   IO.println("done.");
                        ur.close();
    }     

    ummm - I think this must be something like:
    http://www.cs.yorku.ca/java/api/type/api/type/lang/package-summary.html
    right?

  • Blu-ray Ojbect: slideshow raams, Error:"internal error 11" (file path not found), Code:11, Note ""

    I have no idea what is going on.  I have 8 slideshows in my Encore cs4 project.  I delete the one it says is bad and redue.  Then it goes to the next one and says this error.  The file that is being imported that is said could not find file path is right were all the other files are.  Any ideas?

    Encore Roxio component problem http://forums.adobe.com/thread/400484?tstart=0
    More on Encore and Roxio http://forums.adobe.com/thread/528582?tstart=0 or direct to
    http://kb.roxio.com/search.aspx?URL=/content/kb/General%20Information/000070GN&PARAMS
    Long File Names Cause Crashing http://forums.adobe.com/thread/588273
    Encore Tutorial http://www.precomposed.com/blog/2009/05/encore-tutorial/
    Also... the more DETAILS, the better... This is aimed at Premiere Pro, but may help
    A link with many ideas about computer setup http://forums.adobe.com/thread/436215?tstart=0
    Work through all of the steps (ideas) listed at http://ppro.wikia.com/wiki/Troubleshooting
    If your problem isn't fixed after you follow all of the steps, report back with the DETAILS asked for in the FINALLY section, the questions at the end of the troubleshooting link... most especially the codec used... see Question 1

  • I am getting an error that the file is not found when I sync my photos on my 3gs phone

    I am trying to update my phone with my new pics and when I tried to sync it I am getting an error message that states the Iphone cannot be synced because the file cannot be found. How do I correct this I have an Ipad and I dont want to try syncing it till I get this error fixed with my phone

    Try deleting what is called the iPod photo cache from your computer's hard drive.
    http://support.apple.com/kb/ts1314

  • New mail when opened shows different mail for over one year ago!!

    When a new message arrives, opening it shows a message from over one year ago! I even forwarded a corrupted message to another account and it was the same old message. However, on MobileMe and my IPhone, the new message is correct.
    What's going on?

    Hi kristaleigh04
    -- What is the OS that you're using?
    -- Did you try to Serialize the product when it pops up 30 days trial message?
    you are also welcome to contact our support team at http://adobe.ly/yxj0t6

  • Font not found when opening file and not able to resolve, but is listed in the fonts drop down list?

    Hi, i just downloaded some files from a friend and he sent me a link to download the fonts. I did so and 98% of the fonts work, but there are two fonts i am struggling with.
    When i open the file i get the font missing warning and it asks me to resolve the fonts. I cannot find the appropriate font in the drop down list so i click 'don't resolve' and start to edit the file. i then come across some text that has missing fonts and i am able to highlight the text and change the text to the appropriate font using the type tool and the font I am looking for is in the drop down list.
    The fonts that aren't working are:
    Franchise Bold and BebasNeue
    The problem is there are multiple separate incidents where these fonts occur, and going through changing each one manually would take a lot of time.
    Is there something i can do to fix them all at once?
    Thanks,
    Harry

    I do not see either font  in the list you show.  I see Bebas Neue xxx but no Bebas Neue without any extra style. Try Bebas Neue at Download Bebas Neue Font - Thousands of fonts to download for free

  • Linked PSD files not found when opening .ai files via shared folder

    My main user folder on the iMac is set to be shared (read/write, including all enclosed files) with my MacBook Pro so that I can get someone to help me on a big job. The job is a series of one-page InDesign files (they are newspaper advertisements). The IDD files contain a series of Illustrator files with linked PSD files.
    The idea is that we can both work on the .idd and .ai files in the same folder at the same time.
    It's all working fine EXCEPT that whenever an .ai file is opened on the MacBook, Illustrator doesn't know where the linked PSD files are. We can update the link, but when the .ai file is then opened on the iMac and saved, the same thing happens the next time it is opened on the Macbook.
    I don't want to embed the PSD files into the .ai files as sometimes I have to modify them and they can be linked to up to 20 .ai files. Any ideas?
    G5 iMac OSX 10.7.5 / Macbook Pro OSX 10.8.2 / networked via FireWire cable / file sharing on, laptop user has Administrator status, all files are read/write, permissions include all enclosed files / CS6

    If you are rebooting the computer holding down T to share via firewire, that is your problem. that mounts the other computer as a hardrive and probably messes up the filepath.
    Turn on sharing via Ethernet or wireless
    Connecting two computers using Ethernet
    You can use an Ethernet cable to connect two Mac computers and share files or play network games.
    To connect two computers using Ethernet:
    Connect a standard Ethernet cable from the Ethernet port on one computer to the Ethernet port on the other. You don’t need to use an Ethernet crossover cable.
    If your computer doesn’t have an Ethernet port, try using a USB-to-Ethernet adapter.
    On each computer, choose Apple menu > System Preferences and click Sharing. Note the computer name for each computer.
    In the Finder on one of the computers, choose Go > “Connect to Server,” and then click Browse.
    Double-click the other computer in the window and enter your password, if necessary.
    If you manually configured the TCP/IP settings for the Ethernet service on the computer you are connecting to, you may need to enter that computer’s TCP/IP address in the “Connect to Server” dialog.
    To see or set the TCP/IP address, choose Apple menu > System Preferences, click Network, and select Ethernet in the list.

  • "Alias not found" when opening a non-alias folder with Spotlight

    Good morning everyone,
    I'm noticing a strange behaviour when browsing through the finder. When I go to a folder (for example, /Users/AeroCross/Dropbox) I have various subfolders. I press CmdShiftF (find by filename) to search for a folder (for example Dropbox/Work/Informs). When the folder "Today" appears in the serach results, I double-click it to enter, then this message appears: http://cl.ly/4wXm - notice that the folder "Informs" is NOT an alias (and there are no aliases around, neither, I don't use them).
    It happens with any subfolder folder I search with Spotlight. Can anyone reproduce this problem? Anyone has a solition or something?
    P.S: Fix alias does nothing. It just closes the dialog window and that's it. Either way, the error won't reproduce until a later time.

    Yeah, there were some problems with this earlier, pre-Snow, but now it is a constant problem, and a very strange one. As I recall, the earlier problem happened with all sorts of things, not just folders. AFAIK the easiest work-around is to select the folder, then at the bottom of the search window you'll see the path to the selected item. Double click the folder there and it should open just fine. Also, very weirdly indeed, if you double click the folder it actually DOES open, but the error box appears on top of it, and when you dismiss it the Finder window returns to its previous state, however if you go to the Finder Go menu item, and select "Recent Folders" the folder you just opened but couldn't access is listed! You can access it just fine from there.
    It happens with any subfolder folder I search with Spotlight.
    I have not been able to determine what "rule" determines which folders won't open. Some folders returned in a search window will open just fine, others in the same search results window don't. Also, once you have opened the folder thru other means (using the path at the bottom of the window, or the Recent Folders menu), it will then open directly from the search window with a double click.
    Francine
    Francine
    Schwieder

  • Dreamweaver reports file "not found" when attempting to open files from SMB server...

    User's work-files are hosted on a Windows Server 2003 SP2 volume accessed via SMB. She's been opening and saving the files from the server successfully in Dreamweaver for years from other Macs running Dreamweaver CS4.
    Now she has an iMac running 10.7.4 and Dreamweaver CS6... and it's not the SMB problem you'd expect.
    She mounts the server volume. She opens and saves files normally with full r/w permissions from any app... except Dreamweaver. For any file that she attempts to open in Dreamweaver -- whether from the Finder or from within Dreamweaver -- Dreamweaver pops up an alert reporting that the file at the file-path was not found. The same file is easily accessible from other apps and from the Finder. She continues to have full read/write access to the shared volume.
    Local copies of the files do not have the problem. It only affects files hosted on the server and it only happens in Dreamweaver.
    So, I create a new user account and everything works fine... The user mounts the sharepoint, opens a file with Dreamweaver... perfectly normal. Then she quits Dreamweaver and relaunches it... everything's fine. Repeatedly. It all works normally. She quits Dreamweaver and unmounts the share, then she mounts the share again and tries to open a file in Dreamweaver again... and it reports that the file was not found.
    This is reproducible: If the server volume has been mounted and unmounted repeatedly under any user account, that triggers the error which continues occurring under that user account from that point on. A restart will not fix it. A safe-boot will not fix it. (In fact, restarting seems to trigger the problem by unmounting the volume.)
    I tried trashing the entire contents of the ~/Library folder in one of the test-user accounts. It doesn't fix the problem. Once it strikes a user account, the only temporary fix seems to be using a new user account. And that's like a ticking time bomb just waiting for the problem to pop up again.
    Any ideas?
    TIA!!

    I've seen on two computers so far. Looking at the mount point under unix, the share is being mounted at two different locations. This is normal behaviour for Macs when you mount two different shares with the same name.
    From terminal I run:
    df
    Which returns something like
    /dev/disk0s2                           1951845952 224463456 1726870496    12%    /
    devfs                                         360       360          0   100%    /dev
    map -hosts                                      0         0          0   100%    /net
    map auto_home                                   0         0          0   100%    /home
    //[email protected]/website  204360384  38067872  166292512    19%    /Volumes/website
    //[email protected]/website  204360384  38067872  166292512    19%    /Volumes/website-1
    map -fstab                                      0         0          0   100%    /Network/Servers
    Notice that the share "website" has been mounted once as website, and again as website-1. This is the underlying unix name for the share, which is how most programs (99% sure including Adobe suite products) will reference files. So, if it thinks that the file is at /Volumes/website/site/index.html but can only see /Volumes/website-1/ then it doesn't know what to do.
    The confusion arises because both will show in Finder as "website". Even more annoying is that Finder does not always unmount shares correctly, so that /Volumes/website might not be accessible but /Volumes/website-1 will be. As far as the user is concerned, the share "website" is still mounted, but as far as Dreamweaver is concerned, it isn't, although website-1 is.
    It's the same share, same data, but is being referenced by different names, so does not seem accessible.
    BUT
    I don't have a solution yet, apart from force unmounting both (or rebooting), remounting, and checking that Dreamweaver is using the right share (perhaps by removing and readding from within Dreamweaver).
    Tedious.

  • Why does FCP error "File Not Found" when I try to open my sequences????

    I recently updated all of my software and the following day I started getting errors "file not found" when I would try to open a sequence. Now all of my sequences are being lost and I am losing time and money because I can't meet deadlines! This *****!!! With one sequence I had to reedit the entire thing from scratch and when I did for some reason the old one would then open. But the next time I opened FCP both sequences would error out. Following the "file not found" the computer responds with another error "error: out of memory" What the devil is going on with this crap?

    I seem to have figured out what my problem was. After trying to build the same project (that failed on the Mac Pro) on my laptop and encountering the same errors, I realized that the problem had to be with one or more of my assets and not my new version of FCP, since my PowerBook is running FCP 5.0.4 and my Mac Pro is running FCP 5.1.2.
    In my case the "corrupt" file was a Photoshop PSD file. In the past (FCP 4.5) I was able to use PSD files with hidden layers. I would merge the visible layers into one layer, keep the hidden layers and save the file. Once in FCP, I imported the PSD file and kept right on truckin'. I've done this for years. For some reason now with FCP 5.1.2 (and 5.0.4), that's not flying anymore. Once I "Flattened" the PSD file in Photoshop (deleting all of the hidden layers) I was able to build the project without any errors.
    Interestingly, the technique I used to figure out which file was "corrupt" also allowed me to salvage parts of some of my "lost" sequences. I saw this posted in a forum at Creative Cow (creativecow.net). Basically, I opened up the project, clicked the OK button after the File Not Found error, went into the Browser, right clicked on the offending sequence, selected "Make Offline". When I double clicked the sequence it opened in the timeline with all of my assets offline. Then in the timeline, one by one, I right clicked on each clip and selected "Reconnect Media". Once I linked up the media, if I didn't get an error message, I would save as a new project (to salvage what WAS working), and go to the next clip. I did this until I found the offending PSD files.
    I hope this helps. Now it's time to play "catch-up"
    Mac Pro 3Ghz, 1GB RAM, ATI Radeon X1900 XT   Mac OS X (10.4.8)  

  • " Path not found() "error when implementing single sign on

    Hi,
    We are implementing single sign on so that when users click on the "Reports Login" he is navigated to the obiee presentation services screen. For the reports login we have a .asp page which directs to the presentation services.
    I have done the necessary changes in the instanceconfig and credentialstore xml files.
    I have been receiving a strange error when I click on the reports login. I get the error
    Path not found ()
    Error Details
    Error Codes: U9KP7Q94
    I have checked the presentation server log file and I see the below error
    Type: Error
    Severity: 45
    Time: Tue Mar 09 09:18:44 2010
    File: project/websubsystems/ssportal.cpp Line: 1907
    Properties: ThreadID-2672;HttpCommand-Dashboard;Proxy-;RemoteIP-127.0.0.1;User-;Impersonator-
    Location:
         saw.subsystem.portal
         saw.httpserver.request
         saw.rpc.server.responder
         saw.rpc.server
         saw.rpc.server.handleConnection
         saw.rpc.server.dispatch
         saw.threadPool
         saw.threads
    Path not found ()
    Can anyone provide me an input how to resolve this issue?
    This is bit urgent for me.
    Thanks

    Hi,
    Please ensure that the navigational attribute is checked at the attribute level and also at the Infocube level and also check that correct mapping of this navigational attribute is done at the Multiprovider level.
    Thanks,
    Venkat

Maybe you are looking for