Error loading an X-4 std joboption into Distiller

I have a customer running CS4 / OS 10.5.8.
We recently changed our CS4 presets to encompass the X-4 2008 Standard. When installing he gets this error:
Error in /Library/Application Support/Adobe/Adobe PDF/Settings/PDFX4 2008.joboptions:
/CheckCompliance out of range
Error in /Users/jasonhatcher/CS4_1.5_WCSC_X-4.joboptions:
/CheckCompliance out of range
This is the first time I have heard of this...
I sent him the exact preset changing the X-4 standard to none and it loads just fine...
Thanks in advance...
rog

Another thread discussed this. The short answer is that Distiller can't distill an X4 file. BUT, InDesign/Illustrator can export one directly. So, you don't load it into Distiller, load it into InDesign and do a direct export from ID using the X4 preset. That's my understanding.

Similar Messages

  • Errors loading .m4v into iBook author?

    Anyone getting errors loading .m4v into iBook author? I have been supplied .m4v files to insert into my document and an error pops up ...

    Anyone getting errors loading .m4v into iBook author? I have been supplied .m4v files to insert into my document and an error pops up ...
    What "settings" were used to create the file? (E.g., does it have extraneous data tracks like a secondary AC3 DD5.1 audio track?)

  • Error Loading data into ODS from ODS

    I have a loading problem wen trying to load data fro an ODS to another which has a start routine in the Update rules.
    the errors are as follows.
    ERROE 7 when sending IDOC
    &INCLUDE INCL_INSTALLATION ERROR
    &INCLUDE INCL_INSTALLATION ERROR 7
    &INCLUDE INCL_INSTALLATION ERROR 2
    &INCLUDE INCL_INSTALLATION ERROR 5
    Connection Closed (no data) 4
    Connection Closed (no data)
    Connection Closed (no data) 6
    Error in Source System.
    But there are lot of data in the loading ODS
    Please help me

    Hi,
    Please check the following OSS notes.
    Note 610938 - Error 7 during transfer of an IDoc into BW
    Note 610246 - Error 7 when sending an IDoc
    Regards.

  • Error loading/saving PDF presets

    Error loading/saving pdf presets
    I am using CS4 and Windows 7. I have a .joboptions file I want to load in InDesign, but when I try, I get the error message: Cannot create the file. The folder may be write protected.
    I am a local administrator on the computer.
    I have tried manually copying the .joboptions file into the folder C:\Users\<my profile>\AppData\Roaming\Adobe\Adobe PDF\Settings, but it doesn’t show up in the list of available presets.
    I used the same version of InDesign with Windows XP and was able to load and save presets this way just fine.

    Thank for the tip. But unfortunately it is only a partial solution.
    When I 'run as administrator' in Windows 7 I have no problems, that is a bit of a solution, but for me it is a mere workaround.
    I want to find out how I can load and save PDF export settings without running as Adminstrator, since we have 7 people using the presets and they don't want to run InDesign everytime as an Administrator.
    I have all the rights (local admin) to all folders, therefore I was hoping somebody already fixed this in his/her system...
    Hope Adobe comes up with some sort of solution for this apperently Windows 7 problem.

  • Error message when starting Adobe Illustrator CC [Error loading plugins   AppBarControls.aip]

    Hello,
    I get the following error message when I start Adobe Illustrator CC.
    Error loading plugins
    AppBarControls.aip
    Then it gives me the option to continue by clicking okay. When it opens, the Application Bar is just blank.
    I've tried uninstalling, then ran Adobe CC Cleaner, then downloaded and reinstalled.
    Computer details : OS X 10.9.5, 1.3 GHz Intel Core i5, 8 GB 1600 MHz DDR3
    Help is kindly appreciated!

    I also have had a difficult time with Adobe Illustrator CC 2014 crashing upon launch.  The support staff was great even though we had to work through several sessions.  Below is the email explaining our final session.
    This email is in regards with the issue you had been facing with Illustrator CC 2014.
    While going through the installer logs, we found that there was an issue with the installation & the program installer had been denied access to several critical files & folders during installation.
    This was the main reason for Illustrator crash as several critical components had not been installed properly.
    We tried installing the program in a new user account & that worked.
    Though the program has been installed properly now & is working in your old account, I will still strongly recommend you to get your computer user account repaired with a Windows 7 operating system diskette.
    This is required so that you do not run into more trouble later while working with the Adobe Applications or even while installing other programs.
    Avanish Divya was the final support person that successfully resolved my problems.

  • How to load a large amount of HTML into HTML region?

    I am trying to display a clickable image map (HTML <map>) in a region. The HTML source for the image map is fairly large and will not fit in the Apex editor (HTTP 400 error when I Apply Changes). I would also rather not manage that much HTML in the Apex web editor. So I stored the code in a file and added it to my applications file storage.
    I have tried various methods of getting the HTML to load when the page is rendered. I tried a URL region, but that leads to all kinds of ACL/security issues that we do not want the customner to have to deal with. i also tried some PL/SQL:
    DECLARE
    l_file_id NUMBER;
    BEGIN
    SELECT id
    INTO l_file_id
    FROM APEX_APPLICATION_FILES
    WHERE filename = 'myhtml';
    APEX_UTIL.GET_FILE(
    p_file_id => l_file_id,
    p_inline => 'YES');
    END;
    But that just replaces the entire page, not just the region it's defined in (even when the HTML is without <head> etc).
    Various attampes wih #APP_IMAGES#myhtml and &APP_IMAGES.myhtml just give me the translation of the APP_IMAGES variable.
    So, how do I load a large chunk of HTML into a region dynamically at run time? I also need this to interact with APEX in the sense that JavaScript will set APEX variables and cause a SUBMIT when the use clicks on the image map.

    Hi Andy,
    ATD wrote:
    Does your HTML define the regions/points on the map using AREA tags?Yes. it is actually generated using MapSefrver from huge tables of SDO_GEOMETRY (Oracle Spatial).
    If so, you could define a report template that does this and use this for a report based on a table that has the settings for shape, coords, href etcHmm, the code (HTML map) is auto-generated so if I understand you correctly, this might be difficult. One of the HTML is approximately 180KB of text.
    I found a way to do this using dynamic PL/SQL. I created a new table that has a varchar filename and a CLOB for the file data. I then imported the HTML into the table using SQL Developer (copy&paste, nice!). I then created an HTML region and used the following:
    declare
    html clob;
    len number;
    st number;
    c number;
    begin
    select length(data)
    into len
    from FILES
    where name = 'state_query.html';
    st := 1;
    while len > 0
    loop
    if len > 32000 then
    c := 32000;
    else
    c := len;
    end if;
    select substr( data,st,c )
    into html
    from FILES
    where name = 'state_query.html';
    htp.p( html );
    st := st + c;
    len := len - c;
    end loop;
    end;
    Edited by: CoyoteTech on May 13, 2009 7:27 AM

  • 11.5.10.2 to R12.1.1 upgrade: Error loading seed data for GL_DEFAS_ACCESS_SETS:  DEFINITION_ACCESS_SET = SUPER_USER_DEFAS,  ORA-06508: PL/SQL: could not find program unit being called

    Hello,
    EBS version : 11.5.10.2
    DB version : 11.2.0.3
    OS version : AIX 6.1
    As a part of 11.5.10.2 to R12.1.1 upgrade, while applying merged 12.1.1 upgrade driver(u6678700.drv), we got below error :
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ATTENTION: All workers either have failed or are waiting:
               FAILED: file glsupdas.ldt on worker  3.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    drix10:/fmstop/r12apps/apps/apps_st/appl/admin/FMSTEST/log>tail -20 adwork003.log
    Restarting job that failed and was fixed.
    Time when worker restarted job: Wed Aug 07 2013 10:36:14
    Loading data using  FNDLOAD function.
    FNDLOAD APPS/***** 0 Y UPLOAD @SQLGL:patch/115/import/glnlsdas.lct @SQLGL:patch/115/import/US/glsupdas.ldt -
    Connecting to APPS......Connected successfully.
    Calling FNDLOAD function.
    Returned from FNDLOAD function.
    Log file: /fmstop/r12apps/apps/apps_st/appl/admin/FMSTEST/log/US_glsupdas_ldt.log
    Error calling FNDLOAD function.
    Time when worker failed: Wed Aug 07 2013 10:36:14
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    drix10:/fmstop/r12apps/apps/apps_st/appl/admin/FMSTEST/log>tail -20 US_glsupdas_ldt.log
    Current system time is Wed Aug  7 10:36:14 2013
    Uploading from the data file /fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/US/glsupdas.ldt
    Altering database NLS_LANGUAGE environment to AMERICAN
    Dumping from LCT/LDT files (/fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/glnlsdas.lct(120.0), /fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/US/glsupdas.ldt) to staging tables
    Dumping LCT file /fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/glnlsdas.lct(120.0) into FND_SEED_STAGE_CONFIG
    Dumping LDT file /fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/import/US/glsupdas.ldt into FND_SEED_STAGE_ENTITY
    Dumped the batch (GL_DEFAS_ACCESS_SETS SUPER_USER_DEFAS , GL_DEFAS_ACCESS_SETS SUPER_USER_DEFAS ) into FND_SEED_STAGE_ENTITY
    Uploading from staging tables
      Error loading seed data for GL_DEFAS_ACCESS_SETS:  DEFINITION_ACCESS_SET = SUPER_USER_DEFAS,  ORA-06508: PL/SQL: could not find program unit being called
    Concurrent request completed
    Current system time is Wed Aug  7 10:36:14 2013
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    Below is info about file versions and INVALID packages related to GL.
    PACKAGE BODY GL_DEFAS_ACCESS_SETS_PKG is invalid with error component 'GL_DEFAS_DBNAME_S' must be declared.
    I can see GL_DEFAS_DBNAME_S is a VALID sequence accessible by apps user with or without specifying GL as owner.
    SQL> select text from dba_source where name in ('GL_DEFAS_ACCESS_DETAILS_PKG','GL_DEFAS_ACCESS_SETS_PKG') and line=2;
     TEXT
    /* $Header: glistdds.pls 120.4 2005/05/05 01:23:16 kvora ship $ */
    /* $Header: glistddb.pls 120.16 2006/04/10 21:28:48 cma ship $ */
    /* $Header: glistdas.pls 120.4 2005/05/05 01:23:02 kvora ship $ */
    /* $Header: glistdab.pls 120.5 2006/03/13 19:56:21 cma ship $ */ 
    SQL> select * from all_objects where object_name in ('GL_DEFAS_ACCESS_DETAILS_PKG','GL_DEFAS_ACCESS_SETS_PKG')
      2 ; OWNER OBJECT_NAME SUBOBJECT_NAM OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE CREATED LAST_DDL_TIME TIMESTAMP STATUS T G S NAMESPACE
    EDITION_NAME
    APPS GL_DEFAS_ACCESS_DETAILS_PKG 1118545 PACKAGE 05-AUG-13 05-AUG-13 2013-08-05:18:54:51 VALID N N N 1 
    APPS GL_DEFAS_ACCESS_SETS_PKG 1118548 PACKAGE 05-AUG-13 06-AUG-13 2013-08-05:18:54:51 VALID N N N 1 
    APPS GL_DEFAS_ACCESS_SETS_PKG 1128507 PACKAGE BODY 05-AUG-13 06-AUG-13 2013-08-06:12:56:50 INVALID N N N 2 
    APPS GL_DEFAS_ACCESS_DETAILS_PKG 1128508 PACKAGE BODY 05-AUG-13 05-AUG-13 2013-08-05:19:43:51 VALID N N N 2 
    SQL> select * from all_objects where object_name='GL_DEFAS_DBNAME_S'; OWNER OBJECT_NAME SUBOBJECT_NAM OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE CREATED LAST_DDL_TIME TIMESTAMP STATUS T G S NAMESPACE
    EDITION_NAME
    GL GL_DEFAS_DBNAME_S 1087285 SEQUENCE 05-AUG-13 05-AUG-13 2013-08-05:17:34:43 VALIDN N N 1 
    APPS GL_DEFAS_DBNAME_S 1087299 SYNONYM 05-AUG-13 05-AUG-13 2013-08-05:17:34:43 VALIDN N N 1 
    SQL> conn apps/apps
    Connected.
    SQL> SELECT OWNER, OBJECT_NAME, OBJECT_TYPE, STATUS
    FROM DBA_OBJECTS
    WHERE OBJECT_NAME = 'GL_DEFAS_ACCESS_SETS_PKG'; 2 3 OWNER OBJECT_NAME OBJECT_TYPE STATUS
    APPS GL_DEFAS_ACCESS_SETS_PKG PACKAGE VALID
    APPS GL_DEFAS_ACCESS_SETS_PKG PACKAGE BODY INVALID SQL> ALTER PACKAGE GL_DEFAS_ACCESS_SETS_PKG COMPILE; Warning: Package altered with compilation errors. SQL> show error
    No errors.
    SQL> ALTER PACKAGE GL_DEFAS_ACCESS_SETS_PKG COMPILE BODY; Warning: Package Body altered with compilation errors. SQL> show error
    Errors for PACKAGE BODY GL_DEFAS_ACCESS_SETS_PKG: LINE/COL ERROR
    39/17 PLS-00302: component 'GL_DEFAS_DBNAME_S' must be declared 
    drix10:/fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/odf>cat $GL_TOP/patch/115/sql/glistdab.pls|grep -n GL_DEFAS_DBNAME_S
    68: SELECT GL.GL_DEFAS_DBNAME_S.NEXTVAL
    81: fnd_message.set_token('SEQUENCE', 'GL_DEFAS_DBNAME_S');
    SQL> show user
    USER is "APPS"
    SQL> SELECT GL.GL_DEFAS_DBNAME_S.NEXTVAL
      FROM dual; 2                         -- with GL.
      NEXTVAL
      1002
    SQL> SELECT GL_DEFAS_DBNAME_S.NEXTVAL from dual;               --without GL. or using synonym.
      NEXTVAL
      1003
    drix10:/fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/odf>strings -a $GL_TOP/patch/115/sql/glistdab.pls|grep '$Header'
    REM | $Header: glistdab.pls 120.5 2006/03/13 19:56:21 cma ship $ |
    /* $Header: glistdab.pls 120.5 2006/03/13 19:56:21 cma ship $ */
    drix10:/fmstop/r12apps/apps/apps_st/appl/gl/12.0.0/patch/115/odf>strings -a $GL_TOP/patch/115/sql/glistdas.pls |grep '$Header'
    REM | $Header: glistdas.pls 120.4 2005/05/05 01:23:02 kvora ship $ |
    /* $Header: glistdas.pls 120.4 2005/05/05 01:23:02 kvora ship $ */

  • In AOL email, checking individual messages in the regular system results in this error message: There was an error loading the message. Please try again later.

    In accessing AOL email through the full version, I can navigate within my account (old mail, new mail, spam, etc.) fine, but when I try to open an individual email, I get this error message: "There was an error loading the message. Please try again later."
    This is identical to a problem someone else was describing in another thread....unfortunately, nothing you suggested to him seemed to be working. I WAS tricked into opening a file attached to an email immediately before this started, so I think its a virus or something. ANYWAY....I AM able to open the messages when I use AOL's basic version. Initially, the problem seemed only to be in Firefox, but I've tried with Internet Explorer now also, and its the same thing, and the basic version is accessible while the full version is still blocked.
    On both browsers, following the error message, I can't even click on the individual messages to TRY to open a different one, and there are some not-quite-right boxes and x's and things that appear on the screen that don't belong.
    PLEASE tell me you can't make this go away....I've already tried uninstalling and reinstalling Firefox....that didn't work. I've also fun McAffee, and that didn't change anything.

    You can do a malware check with several malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Error Loading Hierarchy Error when updating Idocs in Source System

    Hello  Friends,
         I am loading  hierarchy data  using Info pac into  0FUNDS_CTR . I have selected  a hierarchy under hierarchy selections tab  in the Info pac .
    All Partner profiles in WE20 seems OK .   But When I loaded data , throwing errrr message  as below
    Error when updating Idocs in Source System
    Diagnosis
    Errors have been reported in Source System during IDoc update:
    System Response
    Some IDocs have error status.
    Procedure
    Check the IDocs in Source System . You do this using the extraction monitor.
    Error handling:
    How you resolve the errors depends on the error message you get.
    When I checked in TC WE05 says that  IDoc: 0000000000355113 Status: Error during syntax check of IDoc (outbound) with status 26 .
    Please advice .
    Many thanks

    Hi  Krishna4bi,
    Actually we will monitor idoc status in BD87 in SAP BI As well ECC , while extracting the data from source sytem  if any idoc struck we will manually process in BD87 , But you are telling that while loading the datasource the error occurred , so please check once in ECC side . Otherwise see how many packets are still process, make it red that infopackage and do manually update.
    Hope it helps,
    By,
    Praveen Yagnamurthy,
    SAP BI Consultant,
    Blue Marlin Systems-INDIA.
    http://bluemarlinsys.com/bi.

  • "Error loading BASIC for document" while saving (solved)

    In case someone else has this problem here's my solution.
    I have a network (Netware 6.5) installation of SO7 (WinXP and 98).
    My PC's have harddrives that are protected by Deep Freeze.
    I start the Quickstart from a Run entry in the registry.
    Starting with PU5, the first time I save a document I get 10-15 "Error loading BASIC for document...". After clicking OK on all those the document is saved and everything works fine. If I close SO and and reopen it everything works.
    Rebooting the PC and trying to save a document gives me the error again (since Deep Freeze reset whatever change was made when I clicked through the error messages).
    After some hours of debugging I noticed that when the quickstart icon pops up in the systray a new directory named __basic_60 is created in the user directory of the client installation. Removing that prior to starting Write or Calc made the saving error dissappear.
    My workaround solution is to remove the gid_Procedure_Rename_Basicdir procedure and it's reference in gid_Module_Root in instdb.inf that's located in the program directory of my network install.
    However it must be a bug that the __basic_60 directory isn't removed as default, right?
    - Peder

    Dusty wrote:I deleted ~/.openoffice2 and it fixed the issue on reconfiguring it.
    If deleting the .openoffice.org2 directory is a bit drastic for you, you can fix the problem by going into ~/.openoffice.org2/user/basic and editing the dialog.xlc and script.xlc files.  You need to remove the line at the end that says WebWizard in both these files. 
    That will get rid of the two error messages you are likely getting.
    Btw, anyone else miss the Projects functionality in Kate?   Darn stupid sessions.  Oh well...

  • SQL LOADER - How to combine 3 rows into 1

    Hi,
    I have an input file composed of 4 different data types in 4 rows.
    line1 has fld1 text(100)
    line2 has fld2 number(4)
    line3 has fld3 date(10) "mm/dd/yyyy"
    line4 has fld4 date(10) "mm/dd/yyyy"
    all line has data in it.
    This is my control file:
    LOAD DATA
    INFILE "fileA.txt"
    truncate
    CONCATENATE 4
    INTO TABLE ps_vz_ppc_blng_aud
    TRAILING NULLCOLS
    ( text_fld CHAR(100) TERMINATED BY WHITESPACE
    ,num_fld INTEGER EXTERNAL(4)
    TERMINATED BY WHITESPACE
    ,begin_date DATE(10) "mm/dd/yyyy"
    TERMINATED BY WHITESPACE
    ,end_date DATE(10) "mm/dd/yyyy"
    TERMINATED BY WHITESPACE
    ,row_added_dttm     sysdate
    ,row_added_oprid "USER"
    My error: cannot insert null into num_fld.
    What did I do wrong? Terminated by whitespace did not end when the line end? Or the first field needs to be 100 characters and ends with end of line?

    That means the structure of your data is now something like:
    line1|1|01/01/2001|02/01/2001
    line2|2|01/01/2002|02/01/2002If so, you can use the following control file
    LOAD DATA
    INFILE "fileA.txt"
    truncate
    INTO TABLE ps_vz_ppc_blng_aud
    FIELDS TERMINATED BY "|" OPTIONALLY ENCLOSED BY '"'
    ( text_fld        char
    , num_fld         integer external
    , begin_date      DATE "mm/dd/yyyy"
    , end_date        DATE "mm/dd/yyyy"
    , row_added_dttm  sysdate
    , row_added_oprid EXPRESSION "USER"
    )P.S. There is no automatic notification, just come back from time to time and check for new postings.

  • Error loading xml file with sqlldr

    Hi there,
    I am having trouble loading an xml file via sqlldr into oracle.
    The version i am running is Oracle Database 10g Release 10.2.0.1.0 - 64bit Production and the file size is 464 MB.
    It ran for about 10 hours trying to load the file and then threw up the error:
    ORA-22813: operand value exceeds system limits.
    I have loaded a file of 170MB using the same process succesfully.
    Any Ideas?
    Cheers,
    Dan.

    Looked a bit into the issue (ORA-22813) and although it can be caused by a lot of issues varrying database versions, you could have a go at sizing up your PGA database parameter. See Oracle support Doc ID 837220.1 for more info.
    The following might help
    CREATE OR REPLACE PROCEDURE show_pga_memory (context_in IN VARCHAR2 DEFAULT NULL)
    SELECT privileges required on:
      SYS.v_$session
      SYS.v_$sesstat
      SYS.v_$statname
    Here are the statements you should run:
    GRANT SELECT ON SYS.v_$session  TO <schema>;
    GRANT SELECT ON SYS.v_$sesstat  TO <schema>;
    GRANT SELECT ON SYS.v_$statname TO <schema>;
    IS
      l_memory NUMBER;
    BEGIN
      SELECT st.VALUE
        INTO l_memory
        FROM SYS.v_$session se, SYS.v_$sesstat st, SYS.v_$statname nm
      WHERE se.audsid = USERENV ('SESSIONID')
        AND st.statistic# = nm.statistic#
        AND se.SID = st.SID
        AND nm.NAME = 'session pga memory';
      DBMS_OUTPUT.put_line (CASE WHEN context_in IS NULL
                              THEN NULL
                              ELSE context_in || ' - '
                            END
                            || 'PGA memory used in session = ' || TO_CHAR (l_memory));
    END show_pga_memory;
    /

  • Error loading transcode preset  (yes I know, again, but please read)

    I am new to most of the Adobe products and recently purchased Adobe creative suite cs4 master.  I make slide shows, haven't tried any video yet.  I am making a several-disc large set of slideshows of a European vacation for a friend of mine.  There were roughly 2000 pictures, most of which I edited in Photoshop.
    I built the slideshows in Encore and burned the first three DVD's no problem.  They play well on a dvd player attached to a TV.  The current DVD I'm trying to burn gives me the message  "Error Loading transncode preset.  I have spent many hours researching this online, and I do some some references and fixes for it here on this forum.  However they are not working for me.  I went back and looked at my DVD's that burned properly and tried to make everything the same, but I still get the same message.
    The first couple of tries, the burn process always stopped when loading the same song, so I removed it and put a different one in.  This project has 4 slideshows in it, about 10 songs and nothing else.
    I have a Dell Precision T3400 and am using      XP Pro service pack 3.  It has Intel(R) Core (TM) Quad CPU,  Q6600 @ 2.4 GHz with 2.39 GHz  3.00 GB RAM.  I have Creative SB XFI sound  and MVidia Quadro FX 1700 video.  I dont know what else you need in the way of documentation.
    I have rebuilt this whole project once already and now I still cant burn it from the second build.
    I know this question has been asked already, but I tried one of the suggestions about removing the stuff in the Source Folder which didn't work for me.  I don't understand some of your complex terminology but I am willing to learn anything.
    Is there someone who would adopt a newbie and help me wade through some of the terminology I haven't picked up yet?  I'm a quick learner and am building my own terminology dictionary as I go.
    Thank you for listening.  I hope you can help.

    Here is more information about my Encore slideshows.  The DVD I'm trying to make has 5 slideshows in it, no timelines and no playists.  Each of the slide shows have between 55 and 75 jpeg images in them and between 1 and 3 wma or mp3 music files in each one.  There are more .wma than .mp3 music files, and many of them I first edited in Soundbooth to make it exactly the same length since it is going into a slideshow and not a timeline.  The lwma files I try to remember to save as mp3 files thinking they would be easier to transcode.  Honestly I know so very little about transcoding that it's virtually impossible to help myself with that.  I have yet to find a good tutorial on that.
    Regarding the images in all the slideshows, they are all jpg files and are mostly 600x800 in size.  Most of them are 95kb or less in size.  They were taken with the same camera except for a very few, less than 1% that I added for effect.  One image that I just looked at is 180 ppi.  I didnt create it that way, because I dont know how.  The size in inches of the images are around the area of 7.8 inches x 6.7 inches.  The mode is RGB.
    Regarding linking, I set the menu, which is an encore template and have used the same menu for all DVD's, as first play object and then link the menu to the first slide show, each slideshow to the next, and have end action of the last slideshow returning to the menu.  I have kept this as simple as possible because I'm new to Encore and most of the CS4 master suite.  My plan is to learn Premiere Pro and do the slideshows there but wanted to get this big one done as quickly as possibly.  I edited most of the 2000 images all in Photoshop so it has been a timely process.
    I am unable to open this project anymore without getting an error message saying "[..\..\Src\Clip\VideoClip.cpp-275]"  This happened after I tried the suggestion to delete everything out of the transcode folder for this project.  I did that, but when I reopened my project, it didnt ask me to locate any files and only gave me the above error.  When I click on on the error, Encore crashes.  So I cant do the screen shots of my project.
    I'll be glad to add any information I inadvertently left out.  Thank you in advance for any help you can give me.
    Ginny

  • Error loading class problem with applet (Newbie)

    Hi,
    I am new to Java applets. I try to display a simple sample. I put this into html file: <APPLET codebase="classes" code="NewApplet.class" width=350 height=200></APPLET>
    And it always appears one problem:
    Error loading class: NewApplet
    java.lang.NoClassDefFoundError
    java.lang.ClassNotFoundException: NewApplet
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/vm/loader/URLClassLoader.loadClass
         at com/ms/applet/AppletPanel.securedClassLoad
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run
    Can anybody help please? Thanks in advance.

    Now I am able to load the applet on MAC OS X 10.4.11. This is due to network issue.
    Now my problem with the applet functionality. My applet will display the map image. Applet contains the navigation arrow keys at the top left of my applet. These keys will be used to navigate through the map.
    The problem is while user using the navigation buttons, the image got squash and stretch.
    This is happened only on MAC OS X 10.4.11 and Its working fine on PC and MAC OS X 10.5.5.
    Please anyone help in this regard. Thanks in advance.

  • [SOLVED] Blender - error loading shared libraries

    Hi,
    when I try to start blender on x86_64 I get error loading shared libs.
    Linux spire 4.0.1-1-ARCH #1 SMP PREEMPT Wed Apr 29 12:00:26 CEST 2015 x86_64 GNU/Linux
    community/blender 16:2.74-3
    ldd `which blender` |grep not
    70:    libhogweed.so.2 => not found
    72:    libgnutls.so.28 => not found
    75:    libx265.so.35 => not found
    77:    libvpx.so.1 => not found
    my systems libs:
    libhogweed.so.4.1
    /usr/lib/libgnutls.so.30.0.1
    /lib/libx265.so.51
    /lib/libvpx.so.2.0.0
    I tried building with abs but ran into an error as well. Any help appreciated. My system is up to date.
    regards,
    Andreas
    Last edited by feuera (2015-05-14 09:51:18)

    ldd lists linked libraries recursively. Use readelf -d to list direct dependencies only.
    Are you're using some packages from unofficial repos or the AUR? You need to keep them up to date and recompile if needed.

Maybe you are looking for

  • How do I put my iTunes library onto an external hard drive and accessible?

    I am thinking of investing in external hard drives to hold my itunes library and then streaming this using a streamer. Does anyone else do this. I am not sure how this would wirelessly or over ethernet. Ideally wireless since I don't have many ethern

  • Custom screen in a menu exit

    Hi, Can we call a custom screen from a menu exit?  When the menu is clicked, a custom screen should pop up . There should be a option for going back to the old screen from this custome screen. I have seen screen exits where u can develope custome scr

  • I am looking for a "Gramophone sounding" effect...

    Is there a Plug-in out there which makes a piece of music sound like it comes through a Gramophone? Or is there an existing Plug-in I can use? I want this paricular piece of music sound old. As of right now, I have used a low cut filter which makes i

  • Critical permissions are not showing in the risk analysis in GRC10.0

    Hi all, We noticed that critical actions are flagging the in risk analysis report but not the critical permissions. As far as I know all the settings are in place. Is any one has any idea why critical permissions are not flagging? Our GRC is at SP14.

  • Unable to Undo on Mac

    When I modify a file, and upload it to the remote server, I lose all undo capabilities.  So if the change I made broke something, im screwed.  I have the same version of dreamweaver on 2 other pcs, and 1 other mac, and do NOT have this issue.  I had