Who has experiecne with  CP3-files over 400 slices?

Hi folks,
has anybody skills with CP3 files about 400 to 500 slices?
I have a such big file and I have to brake it apart why CP3
not working well with this amount of slices.
If I put some navigation in this file, it brakes totaly down.
After a few weeks working on this job i'm very p***** .
Greetings Wolvo

Hi Wolvo
Wow, I thought you had been around the community for a while.
400 to 500 slides is way way beyond the normal typical limits we
usually recommend. Typical upper limits would be 50-65 slides tops.
Sometimes as many as 100 to 125, but those would be somewhat
uncommon.
You need to consider Daisy Chaining your projects. There is a
small tutorial for how to do that at the link below:
Click here
to see the tutorial
Hopefully this helps... Rick

Similar Messages

  • Is it somebody Except for me Who has problems With waching videos on ipad after the 5.0.1 update

    Is it somebody Except for me Who has problems With waching videos on ipad after the 5.0.1 update

    Hi,
    yes I have big problems as soon as I open the video app i get a total black screen, even the upper bar with the time disappears. I already tried to:
    1. closing the app and reopen it
    2. restart the iPad
    3. restore the iPad via iTunes
    4. Begging the app to work again.

  • I don't understand why a person who has been with a company for 6 years cant get a simple upgrade can anyone help figure that out?

    I don't understand why a person who has been with a company for 6 years cant get a simple upgrade can anyone help figure that out?

    Are you trying to get an upgrade before you're actually eligible? If that is the case, it doesn't matter if you've been a customer for 6 years or 6 days...if you're not eligible then you're not eligible. Some of your possible options are to pay full retail, do an early edge up (if you are eligible for that option), or buying a phone from some other source to use.
    If your situation is something different then it might help to share that. The options may still be the same but it helps to know what exactly the issue is.

  • Very slow working with eps files over new network

    Please help!!!
    Our IT has recently upgraded us from a OSX server to a 2 Terabyte SNAP SERVER 520.
    I am using the only INTEL Mac in the department (we have another 10+ G5 PPCs running 10.4), and the only one using OSX 10.5. Since changing to the new server, I am also the only one with several file saving/opening issues.
    I believe this is a network issue.
    It is with mostly ADOBE products and we all know they will not support, working over the network. Due to the volume of files, I simply cannot drag files to my HD, and work locally. It is not practical. I also know that we have not had any issues in the past, and don't see why I can't get to the root of the problem.
    **The most obvious issue is Illustrator .eps files.**
    I can open and save .ai files in good time both locally, and over the network. There is no difference either way. HOWEVER, if it is an .eps file working over the network is not practical. I get the spinning wheel for about 2 minutes each time I open, save, or make a change. It is VERY slow. Working on eps files locally is fine (about the same speed as .ai files), but as soon as it hits the server, it is painfully slow to do anything.
    Additionally, when saving Photoshop, Illustrator, InDesign AND Quark 7 files (direct to the network), I am regularly getting "Could not save because write access was not granted", or "Could not save becasue unexpected end-of-file was encountered", or "Could not save because the file is already in use or as left open" type errors.
    I simply then click 'OK', and then hit save again, and it either gives me the same message, or it goes into 'save as' mode which lets me save the file (same name, and same location, but the original file has disappeared).
    I am connected to the server IP address through afp:// but have also tried cifs://. IT have removed all access to the server through smb://, so I cannot try this.
    ANY help is appreciated.

    With regard to the EPS issue, I think I may have found the source of the problem for SMB users: the Suitcase Fusion plug-in.
    Did you make any progress on these issues?

  • Is there some secret to getting Pentax K-3 .dng files to display thumbnails when importing to an iPad (mini w/retina)? Files import fine, but no thumbnail. Mac OS has compatability with those files.

    Is there some secret to getting Pentax K-3 .dng files to display thumbnails when importing to an iPad (mini w/retina)? Files import fine, but no thumbnail. Mac OS had compatibility with those files added long ago. Am I missing something?

    I agree Terrance. However, I was able to copy other large batches of other files (my music for example) without any issues. The issue only showed up when copying iPhoto's library and/or the photos themselves. This was repeated 3 times; I copied all my other files to the drive then it unmounted on iPhoto. And, as I said, again when I started with a fresh reformat and just iPhoto. That does not seem like hardware to me if it is only happening with one set of files.
    I have managed to get the iPhoto library to work on my other external drive. It wanted a rebuild twice and a thumbnail rebuild once. I am now attempting to copy it over to the new HGST internal drive.
    Anyone have a suggestion for alternatives to iPhoto? I have aperture, maybe I will try that. But from what I understand, it just shares the same library as iPhoto.

  • How to know the name of the user who has uploaded a unix file?

    Hello, say someone has uploaded a file on the unix server.Is there a way to know who has uploaded it(the username)?

    Hi ,
    You can use OPEN DATASET and CLOSE DATASET statements for it.
    PLease let me know if you still need any more details.
    Thanks and regards,
    Rajeshwar.

  • Problem with Sending files over Sockets

    Hi. I have a problem when I try to send files over sockets. When I send text files it works well but when I try to send .jpg or other kind of files it doesn't work well because some characters are wrong, I hope you can help me.
    Here is my code:
    //Sender code
    import java.io.*;
    import java.net.*;
    class Servidor{
         Servidor(){
              try{
                   String arch="art.jpg";
                   ServerSocket serv=new ServerSocket(125);
                   Socket socket=serv.accept();
                   System.out.println("Conectado");
                   int c;
                   BufferedWriter bw=new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
                   FileInputStream fis=new FileInputStream(arch);
                   File f=new File(arch);
                   bw.write(""+f.length());
                   bw.newLine();
                   bw.flush();
                   System.out.println("Escribiendo");
                   while((c=fis.read())!=-1){
                        bw.write(c);
                   bw.flush();
                   fis.close();
                   System.out.println("Terminado");
                   while(true){
              }catch(Exception e){
                   System.out.println(e);
         public static void main(String arg[]){
              new Servidor();
    //Client code
    import java.io.*;
    import java.net.*;
    class Cliente{
         Cliente(){
              try{
                   Socket socket=new Socket("localhost",125);
                   System.out.println("Conectado");
                   BufferedReader br=new BufferedReader(new InputStreamReader(socket.getInputStream()));
                   long tam=Long.parseLong(br.readLine());
                   long act=0;
                   FileOutputStream fos=new FileOutputStream("resp.jpg");
                   System.out.println("Recibiendo: "+tam);
                   while(act<tam){
                        fos.write(br.read());
                        act++;
                   System.out.println("Terminado: "+act+" / "+tam);
                   fos.close();
              }catch(Exception e){
                   System.out.println(e);
         public static void main(String arg[]){
              new Cliente();
    }

    I don't think you want BufferedReader and OutputStreamWriter, you want ByteArrayOutputStream and ByteArrayInputStream . The problem is that you are sending jpegs (binary data) as text.

  • Help -- Who has experience with ant and build.xml files ?

    Hi,
    I think my build.xml file is missing setting a classpath I need, but I have never played around with a build.xml file. Could someone help ?
    Thank you.
    Grazia

    A lot of people here use ant. But not all of us can read your mind, and those of us that can are sadistic bastards that like to force people to provide details of their problems just for the hell of it.
    So please do the following:
    * Go through an ant tutorial or other introductory docs, doing an example or two if present.
    * Set up your build.xml according to what you've learned.
    * If it still doesn't work, post the relevant portions of it (hopefully you'll have a small, representative sample that reproduces the problem), along with your relevant directory and file structure, the command you're running, and what error messages you're getting.

  • Data Flow | XML Source | Very Slow with big files (over 1/2 a gig)

    hi
    I am trying to load a few XML files to a database. one of our proprietary systems load the file in 3-4 minutes however with ssis XML source file it takes over an hour.
    can anyone know the reason/help with this?
    I tried the delayValidation set to true with no success.
    thanks
    eddy
    eddy.a

    Parsing XML files as data sources in SSIS is not the most efficient. Remember that you have define a WSDL (aka structure of the input file) and once the XML source starts parsing the input file, it has to read every node at every level and make sure it conforms
    to the structure defined in the WSDL file before it can start streaming the data out to the downstream components in your workflow.
    A half-gig XML file with 150 nodes to parse is going to need some heavy-lifting behind the scenes before you start seeing the rows streamed out. I'd rather recommend that you use either inbuilt .Net classes for XML to parse and extract the data or leverage
    SQL scripting to accomplish that. Alternatively, if your upstream system can instead drop the data feed in a flat file format, that'd be more preferable. And if you could hook into their data streaming APIs/end-points directly, that'll work too.
    Hope this gets you started in finding the right approach.
    - Muqadder.

  • Can i  email invoice to multiple customers who has email with bursting

    Hi,
    I have a requirement that user will run range of invoices report thru Print invoice and email should be sent to only those customers which has email in customer profile and invoices related to only that customer.
    I have a XML publisher report developed already to send email thru bursting. now I can send all invoices as 1 single attachment. I need to send seperate attachments for each customer.
    Is this possible? if yes, can i get pointers.
    THanks
    Pallavi

    Hi Pallavi,
    Yes you can burst the xml file into chunks and send each piece to a particular customer. Add a Placeholder/formula column in the reports 6i and populate the filed with the email id from the customer profile(in a repeating group where you want to burst). And use that place holder/xml field in the bursting control file.
    <xapi:request
    select="/POXPRPOP2/LIST_G_INIT_INFO/G_INIT_INFO/LIST_G_HEADERS/G_HEADERS">
    <xapi:delivery>
    <xapi:email id ="123" server="xxx.xxx.com" port="25"
    from="${POH_FROM_EMAIL}" reply-to="${POH_EMAIL}">
    <xapi:message id="123" to="${POH_EMAIL}" cc="" attachment="true"
    content-type="text/html" subject="Purchase Order Number: ${POH_PO_NUM}">The attached electronic Purchase Order
    In this POH_EMAIL is placeholder/xml filed which will vary for each G_HEADERS group..

  • Iphoto '08 has circle with left slash over its icon

    I tried to import or copy (tried both) an image to iphoto to my library, then all of a sudden the fan became extremely loud and the bottom of the laptop heated up quickly. I had to force quit and let the laptop cool off. Today, iphoto has the circle with a left slash over its icon. I dbl click and a message says it can't be launched. I can't figure out how to re-install iphoto as well as what I did to mess it up. Anyone can help me out?? Thanks ahead of time.

    Try using Pacifist to extract iPhoto from the iLife disk or your computer's original disks.
    (28861)

  • $$$ for Flash expert who has used the FLA files from ID

    I am looking for an expert to hire  for a few hours on an Adobe Connect session to go over the ins and outs  of exporting FLA to Flash Pro CS5.
    If you are familiar  with the output of FLA from ID CS5 and can open them and work with them  in Flash Pro CS5, please contact me directly.

    Sandee has informed me that she's found someone.
    Bob

  • Reporting who has opened a document/file in a repository

    Hi all,
    is it possible maybe with a portal component to see which user has opened a document in a repository?
    Best regards
    Joerg Heyne

    Hi Vivek,
    thats my first problem: The rep. service did not appear atomatically in portal after deploying.
    Could please check my portalpp.xml file and probably send me yours?
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="SharingReference" value="de.gesis.portal.SampleService,com.sap.netweaver.bc.crt,com.sap.netweaver.bc.rf,com.sap.netweaver.bc.util,knowledgemanagement,portalapps"/>
      </application-config>
      <components/>
      <services>
        <service name="RFServiceWrapper">
          <service-config>
            <property name="className" value="de.gesis.portal.RFServiceWrapper"/>
            <property name="startup" value="true"/>
          </service-config>
        </service>
      </services>
    </application>
    thanks and regards
    Joerg

  • Who has problems with having to change there password frequently

    Hi,
    If I do not use me ipad for a few days, I get a message from apple to reset my ID password. The last 3 months I think I have had to re-think up at least 10 new passwords, and go through the reset up stage they email you. Please is there anyone out there who knows what I'm doing wrong, I am 55yrs and paraplegic, so it's a tad new to me all this modern tech.
    Thankyou
    Malc.

    Hi Stuart_Cardiff,
    Are you still having issues with your email? I can take a look at this for you. Please send me in your detail using the "Contact The Mods" link found in my profile.
    Thanks
    PaddyB
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Am I the only person who has problem with video playback ?

    I'm having problems with the latest nvidia driver and it seems that nobody wrote about it on the forums.. After installing the latest nvidia driver (169.07-1), the video playback with xv selected will be played in purple and blue colours.. Generally red will not be shown.. So human faces are colored with a combination of purple and blue.. Everything is normal on the other hand.. Sound works perfectly, the movie can be watched smoothly even on fullscreen.. With x11, all players can show the colors but...
    1) The movie quality in Totem is very bad then...like the image is gathered together by 3x3 pixels..
    2) mplayer shows everything fine but it can't get fullscreen..
    I created a nautilus script for a workaround that let's me watch the movies with fullscreen using the -fs -zoom options..
    But this problem is really annoying..

    1.0rc2, with some things disabled that are enabled in the Arch package (lirc, samba, and that live-media thing).
    $ pacman -Qs mplayer
    local/mplayer-custom 1.0rc2-1
    xvinfo:
    X-Video Extension version 2.2
    screen #0
    Adaptor #0: "NV17 Video Texture"
    number of ports: 32
    port base: 355
    operations supported: PutImage
    supported visuals:
    depth 24, visualID 0x21
    depth 24, visualID 0x24
    depth 24, visualID 0x25
    depth 24, visualID 0x26
    depth 24, visualID 0x27
    depth 24, visualID 0x28
    depth 24, visualID 0x29
    depth 24, visualID 0x2a
    depth 24, visualID 0x2b
    depth 24, visualID 0x2c
    depth 24, visualID 0x2d
    depth 24, visualID 0x2e
    depth 24, visualID 0x2f
    depth 24, visualID 0x30
    depth 24, visualID 0x31
    depth 24, visualID 0x32
    depth 24, visualID 0x33
    depth 24, visualID 0x34
    depth 24, visualID 0x35
    depth 24, visualID 0x36
    depth 24, visualID 0x37
    depth 24, visualID 0x38
    depth 24, visualID 0x39
    depth 24, visualID 0x3a
    depth 24, visualID 0x3b
    depth 24, visualID 0x3c
    depth 24, visualID 0x3d
    depth 24, visualID 0x3e
    depth 24, visualID 0x3f
    depth 24, visualID 0x40
    depth 24, visualID 0x41
    depth 24, visualID 0x42
    depth 24, visualID 0x43
    depth 24, visualID 0x44
    depth 24, visualID 0x45
    depth 24, visualID 0x46
    depth 24, visualID 0x47
    depth 24, visualID 0x48
    depth 24, visualID 0x49
    depth 24, visualID 0x4a
    depth 24, visualID 0x22
    depth 24, visualID 0x4b
    depth 24, visualID 0x4c
    depth 24, visualID 0x4d
    depth 24, visualID 0x4e
    depth 24, visualID 0x4f
    depth 24, visualID 0x50
    depth 24, visualID 0x51
    depth 24, visualID 0x52
    depth 24, visualID 0x53
    depth 24, visualID 0x54
    depth 24, visualID 0x55
    depth 24, visualID 0x56
    depth 24, visualID 0x57
    depth 24, visualID 0x58
    depth 24, visualID 0x59
    depth 24, visualID 0x5a
    depth 24, visualID 0x5b
    depth 24, visualID 0x5c
    depth 24, visualID 0x5d
    depth 24, visualID 0x5e
    depth 24, visualID 0x5f
    depth 24, visualID 0x60
    depth 24, visualID 0x61
    depth 24, visualID 0x62
    depth 24, visualID 0x63
    depth 24, visualID 0x64
    depth 24, visualID 0x65
    depth 24, visualID 0x66
    depth 24, visualID 0x67
    depth 24, visualID 0x68
    depth 24, visualID 0x69
    depth 24, visualID 0x6a
    depth 24, visualID 0x6b
    depth 24, visualID 0x6c
    depth 24, visualID 0x6d
    depth 24, visualID 0x6e
    depth 24, visualID 0x6f
    depth 24, visualID 0x70
    depth 24, visualID 0x71
    number of attributes: 3
    "XV_SET_DEFAULTS" (range 0 to 0)
    client settable attribute
    "XV_ITURBT_709" (range 0 to 1)
    client settable attribute
    client gettable attribute (current value is 0)
    "XV_SYNC_TO_VBLANK" (range 0 to 1)
    client settable attribute
    client gettable attribute (current value is 1)
    maximum XvImage size: 2046 x 2046
    Number of image formats: 4
    id: 0x32595559 (YUY2)
    guid: 59555932-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x32315659 (YV12)
    guid: 59563132-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    id: 0x59565955 (UYVY)
    guid: 55595659-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x30323449 (I420)
    guid: 49343230-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    Adaptor #1: "NV05 Video Blitter"
    number of ports: 32
    port base: 387
    operations supported: PutImage
    supported visuals:
    depth 24, visualID 0x21
    depth 24, visualID 0x24
    depth 24, visualID 0x25
    depth 24, visualID 0x26
    depth 24, visualID 0x27
    depth 24, visualID 0x28
    depth 24, visualID 0x29
    depth 24, visualID 0x2a
    depth 24, visualID 0x2b
    depth 24, visualID 0x2c
    depth 24, visualID 0x2d
    depth 24, visualID 0x2e
    depth 24, visualID 0x2f
    depth 24, visualID 0x30
    depth 24, visualID 0x31
    depth 24, visualID 0x32
    depth 24, visualID 0x33
    depth 24, visualID 0x34
    depth 24, visualID 0x35
    depth 24, visualID 0x36
    depth 24, visualID 0x37
    depth 24, visualID 0x38
    depth 24, visualID 0x39
    depth 24, visualID 0x3a
    depth 24, visualID 0x3b
    depth 24, visualID 0x3c
    depth 24, visualID 0x3d
    depth 24, visualID 0x3e
    depth 24, visualID 0x3f
    depth 24, visualID 0x40
    depth 24, visualID 0x41
    depth 24, visualID 0x42
    depth 24, visualID 0x43
    depth 24, visualID 0x44
    depth 24, visualID 0x45
    depth 24, visualID 0x46
    depth 24, visualID 0x47
    depth 24, visualID 0x48
    depth 24, visualID 0x49
    depth 24, visualID 0x4a
    depth 24, visualID 0x22
    depth 24, visualID 0x4b
    depth 24, visualID 0x4c
    depth 24, visualID 0x4d
    depth 24, visualID 0x4e
    depth 24, visualID 0x4f
    depth 24, visualID 0x50
    depth 24, visualID 0x51
    depth 24, visualID 0x52
    depth 24, visualID 0x53
    depth 24, visualID 0x54
    depth 24, visualID 0x55
    depth 24, visualID 0x56
    depth 24, visualID 0x57
    depth 24, visualID 0x58
    depth 24, visualID 0x59
    depth 24, visualID 0x5a
    depth 24, visualID 0x5b
    depth 24, visualID 0x5c
    depth 24, visualID 0x5d
    depth 24, visualID 0x5e
    depth 24, visualID 0x5f
    depth 24, visualID 0x60
    depth 24, visualID 0x61
    depth 24, visualID 0x62
    depth 24, visualID 0x63
    depth 24, visualID 0x64
    depth 24, visualID 0x65
    depth 24, visualID 0x66
    depth 24, visualID 0x67
    depth 24, visualID 0x68
    depth 24, visualID 0x69
    depth 24, visualID 0x6a
    depth 24, visualID 0x6b
    depth 24, visualID 0x6c
    depth 24, visualID 0x6d
    depth 24, visualID 0x6e
    depth 24, visualID 0x6f
    depth 24, visualID 0x70
    depth 24, visualID 0x71
    number of attributes: 2
    "XV_SET_DEFAULTS" (range 0 to 0)
    client settable attribute
    "XV_SYNC_TO_VBLANK" (range 0 to 1)
    client settable attribute
    client gettable attribute (current value is 0)
    maximum XvImage size: 2046 x 2046
    Number of image formats: 5
    id: 0x32595559 (YUY2)
    guid: 59555932-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x32315659 (YV12)
    guid: 59563132-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    id: 0x59565955 (UYVY)
    guid: 55595659-0000-0010-8000-00aa00389b71
    bits per pixel: 16
    number of planes: 1
    type: YUV (packed)
    id: 0x30323449 (I420)
    guid: 49343230-0000-0010-8000-00aa00389b71
    bits per pixel: 12
    number of planes: 3
    type: YUV (planar)
    id: 0x3
    guid: 03000000-0000-0010-8000-00aa00389b71
    bits per pixel: 32
    number of planes: 1
    type: RGB (packed)
    depth: 24
    red, green, blue masks: 0xff0000, 0xff00, 0xff
    xorg.conf:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # /etc/X11/xorg.conf (xorg X Window System server configuration file)
    # Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
    # (Type "man /etc/X11/xorg.conf" at the shell prompt.)
    #Section "ServerFlags"
    # Option "XkbDisable" "true"
    #EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Default Screen" 0 0
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse"
    EndSection
    Section "ServerLayout"
    Identifier "TV Layout"
    Screen 0 "Screen_TV" 0 0
    InputDevice "Generic Keyboard"
    InputDevice "Configured Mouse
    EndSection
    Section "Files"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/100dpi/:unscaled"
    FontPath "/usr/share/fonts/75dpi/:unscaled"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/artwiz-fonts"
    FontPath "/usr/share/fonts/TTF"
    EndSection
    Section "Module"
    Load "bitmap"
    Load "dbe"
    Load "ddc"
    #Load "dri"
    #Load "evdev"
    Load "extmod"
    Load "freetype"
    Load "glx"
    Load "int10"
    Load "record"
    Load "type1"
    Load "vbe"
    EndSection
    Section "InputDevice"
    Identifier "Generic Keyboard"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "logiitc"
    Option "XkbLayout" "se"
    EndSection
    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "mouse"
    Option "CorePointer"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ExplorerPS/2"
    EndSection
    Section "Monitor"
    Identifier "Acer AL1923"
    #HorizSync 30.0-69.0
    #VertRefresh 60.0-75.0
    # calc: (x|y)pixels * 25.4 / dpi
    #DisplaySize 336 269 # 96 DPI @ 1280x1024
    Option "DPMS"
    EndSection
    Section "Monitor"
    Identifier "TV"
    HorizSync 30-50
    VertRefresh 60
    EndSection
    Section "Device"
    Driver "vesa"
    Identifier "VESA"
    EndSection
    Section "Device"
    Identifier "nv"
    Driver "nv"
    EndSection
    Section "Device"
    Identifier "NVIDIA GeForce 7600GS"
    Driver "nvidia"
    BusID "PCI:5:0:0"
    Option "NoLogo" "true"
    Option "RenderAccel" "true"
    Option "AddARGBGLXVisuals" "true"
    Option "backingstore" "true"
    EndSection
    Section "Device"
    Identifier "Card_TV"
    Driver "nvidia"
    Option "TVStandard" "PAL-B"
    Option "TVOutFormat" "SVIDEO"
    Option "ConnectedMonitor" "TV"
    EndSection
    Section "Screen"
    Identifier "Default Screen"
    Device "NVIDIA GeForce 7600GS"
    #Device "nv"
    #Device "vesa"
    Monitor "Acer AL1923"
    DefaultDepth 24
    SubSection "Display"
    Depth 1
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen_TV"
    Device "Card_TV"
    Monitor "TV"
    DefaultDepth 16
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    I should probably also mention that I'm rolling my own kernel, and as such I'm not using the package from testing. Building it manually with the PKGBUILD from ABS though so it shouldn't be any difference though.
    Last edited by [vEX] (2008-01-15 17:15:36)

Maybe you are looking for

  • Changing iTunes Library to Another Pre-existing Library

    *First some background-* My wife and I each have our own Apple laptops, and we repurposed her old HP PC as an iTunes server to house copies of all our media and sync with the Apple TV. Our laptops each have only our own music collections while the PC

  • Aspect ratio on widescreen tv - letterboxed

    This has been brought up before, and there always seems to be the same answer-'its a setting on the tv/dvd to correct to play 16:9'-I have an SD widescreen anamorphic video that displays on tv as letterboxed and stretched, but yet the main menu of th

  • How do I display thumbnails for subfolders with images in Finder?

    Hello. I've settled in quite nicely with OS X but I find there's one thing I couldn't replace with a better alternative from XP and I've looked extensively for a solution but with no luck, so I figured I'd ask. It's best described with a picture (htt

  • API hr_person_record fails

    declare Type srch_criteria_record is RECORD (p_person_id per_all_people_f.person_id%type default null, p_start_person_id per_all_people_f.person_id%type default null, p_end_person_id per_all_people_f.person_id%type default null, p_assignment_id per_a

  • Setting up connection

    At our site http://www.bbsjazzbluessoups.com, we recently switched hosting. The new hosting is a subdirectory, and I'm having trouble getting the connection. Please advise on how to set up a connection when its a path like this - /bbsjazzbluessoups.c