CC break between slides

Thank you again for any replies...
I'm putting Closed Captioning in my project, and I'm
extremely happy to have the option in Captivate 2. But, when I go
from slide to slide in the published version of my movie (Captivate
SWF file), the Closed Captioning flickers between slides. I am
using the Audio Edit Timing feature which allows me take the audio
through out the whole project seemlessly. I love this. But it means
that sometimes the CC for one slide is exactly the same as the one
before. I don't mind putting the CC in both slides, but the flicker
you get between slides is very confusing for the reader, they think
that when it flickers that they are getting new text and they
automatically start reading from the beginning again.
Does anyone have any suggestions on how to get rid of or
minimize the flicker?

Your question gets asked on a daily basis, and has been answered many times. If you search for 'gapless playback' you'll see how just how many people inquire about this.
In short... the iPod does not support gapless playback.
If you want to eliminate the gaps, one workaround is to join the individual tracks together, and play them as one single track. You can do this by reimporting the CD into iTunes using the 'Join CD Tracks' feature.
See Step 3 in this article:
http://docs.info.apple.com/article.html?artnum=93079http://docs.info.apple.com/article.html?artnum=93079http://docs.info.apple.com/article.html?artnum=93079
If you'd like to send feedback to Apple to ask that they include gapless playback as a feature in future revisions of the iPod firmware, you can do so on this feedback page.

Similar Messages

  • Unable to find line break between two lines in attachment file.

    Dear all I will be very great full if someone help me out,
    I am trying to send mail through SMTP server with an attachment of oracle report, but I am unable to find line break between two lines, when I down load the attachment from mail and open attach.txt file by double click on it. Next line starts right after previous line ends, it should starts with new line.
    In order to send an attachment file, I am reading source file line by line and put MIME protocol’s attachment instance, contain of source file is being properly written into target file if I open that attachment on cmd prompt.
    Following code may help you to understand the case.
    Thanks in advance.
    My code is as follows:-
    create or replace procedure bec_file_test
    v_subject varchar2, -- Subject of the email
    v_body varchar2, -- Body of the email
    v_from VARCHAR2 default 'XYZ.com', -- sender mail id
    v_to varchar2 default 'XYZ.com', -- Field To of the email
    v_cc varchar2 default 'XYZ.com' -- cc address
    ) is
    -- variable to hold the smtp server connection
    v_smtp_connection utl_smtp.connection;
    -- variable to hold the smtp host name
    v_smtp_host varchar2(100) default 'mail.bec-group.com';
    -- variable to hold the smtp port
    v_smtp_port number default 25;
    -- composite of {CR}{LF} caridge return and line feed.
    CRLF varchar2(2):=CHR(13)||CHR(10);
    cursor pr_rec is
    select requisition_no,line_no,release_no,a.contract,
    a.project_id,substr(a.activity_seq,1,11)ACT_SEQ,
    substr(a.part_no,1,12)PART_NO,
    substr(a.description,1,32)DESCRIPTION,
    substr(a.Bal_qty,1,8) BAL_QTY,
    substr(a.unit_meas,1,5)UOM,
    a.wanted_receipt_date WAN_REC_DT,
    a.latest_order_date LAT_ORD_DT
    from bec_pr_line_rep a
    where a.Bal_qty>0 and a.header_state not in 'Closed'
    and upper(a.state1) like 'RELEASED' and a.contract not in ('U1ENG','ULENG','U1FND','U2FND')
    and a.buyer_code='70306'
    order by a.part_no;
    begin
    declare
    fHandle UTL_FILE.FILE_TYPE;
    v_msg_line varchar2(2000);
    -- v_buffer varchar2(20000);
    --ALTER SYSTEM SET utl_file_dir = 'D:\Database\temp'
    --COMMENT='Temporary change on Dec 14'
    --SCOPE=SPFILE;
    SELECT name, value
    FROM gv$parameter
    WHERE name = 'utl_file_dir';
    --drop directory my_directory
    --CREATE or replace DIRECTORY my_directory AS 'D:\database\temp';
    --GRANT read,write ON DIRECTORY my_directory TO PUBLIC;
    begin ---writing data into a file.
    fHandle := UTL_FILE.FOPEN('MY_DIRECTORY', 'pending_pr_summry.txt', 'w');
    UTL_FILE.put_line(fHandle, ' Pending PR to process (detail report)');
    UTL_FILE.put_line(fHandle,TO_CHAR(SYSDATE,'MM-DD-YY HH:MI:SS AM'));
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    UTL_FILE.put_line(fHandle, 'Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt' );
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    for pr_temp in pr_rec loop
    begin
    v_msg_line:=to_char(rpad(pr_temp.requisition_no,12,' ')||'|'||
    lpad(pr_temp.line_no,3,' ')||'|'||
    lpad(pr_temp.release_no,3,' ')||'|'||
    rpad(pr_temp.contract,7,' ')||'|'||
    lpad(nvl(pr_temp.project_id,' '),7,' ')||'|'||
    lpad(nvl(pr_temp.act_seq,' '),12,' ')||'|'||
    lpad(pr_temp.part_no,12,' ')||'|'||
    rpad(pr_temp.description,35,' ')||'|'||
    lpad(pr_temp.bal_qty,10,' ')||'|'||
    rpad(pr_temp.uom,6,' ')||'|'||
    lpad(pr_temp.wan_rec_dt,14,' ')||'|'||
    lpad(pr_temp.lat_ord_dt,14,' '));
    UTL_FILE.put_line(fHandle,v_msg_line);
    end;
    end loop;
    UTL_FILE.put_line(fHandle, '--------------------------------------------------------------------------------------------------------------------------------------------------');
    UTL_FILE.put_line(fHandle, ' Regards : IFSAPP ( Application owner ) ');
    UTL_FILE.FCLOSE(fHandle); ------------writing into file is successfuly done here!
    --Reading of file starts here containt will be added in attchment file
    fHandle :=UTL_FILE.FOPEN('MY_DIRECTORY','pending_pr_summry.txt','R' );
    -- establish the connection to the smtp server
    v_smtp_connection := utl_smtp.open_connection(v_smtp_host, v_smtp_port); /** OPEN CONNECTION ON THE SERVER **/
    -- perform a handshake with the smtp server
    utl_smtp.helo(v_smtp_connection, v_smtp_host); /** DO THE INITIAL HAND SHAKE **/
    -- set the 'from' address of the message
    utl_smtp.mail(v_smtp_connection, v_from);
    -- add the recipient to the message
    utl_smtp.rcpt(v_smtp_connection, v_to);
    -- send the email
    utl_smtp.open_data(v_smtp_connection);
    v_msg_line:='Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || CRLF ||
    'From: ' || v_from || CRLF ||
    'Subject: ' || v_subject || CRLF ||
    'To: ' || v_to || CRLF ||
    'Cc: ' || v_cc || CRLF ||
    'MIME-Version: 1.0'|| CRLF || -- Use MIME mail standard
    'Content-Type: multipart/mixed;'||CRLF ||
    ' boundary="-----SECBOUND"'||CRLF||
    CRLF ||'-------SECBOUND'|| CRLF ||
    'Content-Type: text/plain;'|| CRLF ||
    'Content-Transfer_Encoding: 7bit'|| CRLF ||
    CRLF ||v_body|| CRLF;     -- Message body
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    v_msg_line:='-------SECBOUND'|| CRLF ||
    'Content-Type: application/octet-stream;'|| CRLF ||
    'Content-Type: text/plain;'|| CRLF ||
    'name="pending_pr_summry.txt"'|| CRLF ||
    'Content-Transfer_Encoding: 8bit'|| CRLF ||
    'Content-Disposition: attachment;'|| CRLF ||
    ' filename="pending_pr_summry.txt"'|| CRLF || CRLF;     -- Content of attachment
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    -- check file is opened
    IF utl_file.is_open(fHandle) THEN
    -- loop lines in the file
    LOOP
    BEGIN -- Content of attachment
    utl_file.get_line(fHandle,v_msg_line);
    v_msg_line:=concat(v_msg_line,CRLF);
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXIT;
    END;
    END LOOP;
    END IF;
    --end of attachment containt     
    utl_smtp.write_data(v_smtp_connection,v_msg_line);
    UTL_FILE.FCLOSE(fHandle);
    utl_smtp.close_data(v_smtp_connection);
    utl_smtp.quit(v_smtp_connection);
    exception
    when utl_smtp.invalid_operation then
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
    when utl_smtp.transient_error then
    dbms_output.put_line(' Temporary e-mail issue - try again');
    when utl_smtp.permanent_error then
    dbms_output.put_line(' Permanent Error Encountered.');
    when others then
    dbms_output.put_line('Exception: SQLCODE=' || SQLCODE || ' SQLERRM=' || SQLERRM);
    RAISE;
    end;
    end bec_file_test;

    Pending PR to process (detail report)01-17-13 12:43:19 PM--------------------------------------------------------------------------------------------------------------------------------------------------Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt--------------------------------------------------------------------------------------------------------------------------------------------------MAT/250370 | 2| 1|ISCSP | 4977| 100004207| 0104000016|Angle 50 X 50 X 6 IS:2062 Grade |500|kg |30-NOV-2012| 20-nov-2012MAT/250370 | 3| 1|ISCSP | 4977| 100004207| 0105000002|Channel 100 X 50 IS:2062 Grade A | 1000|kg | 30-NOV-2012| 20-nov-2012MAT/250579 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 2991|kg | 13-DEC-2012| 03-dec-2012MAT/250606 | 2| |NMDCJ | 6002| 100005860| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | |1|NMDCJ|6001|100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 1500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 3| 1|NMDCJ | 6002| 100005818| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 3939|kg | 29-DEC-2012| 19-dec-2012MAT/250606 | 4| 1|NMDCJ | 6002| 100005860| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 39000|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 4| 1|NMDCJ | 6001| 100005580| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 2| 1|NMDCJ | 6002| 100005818| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 12183|kg | 29-DEC-2012| 19-dec-2012MAT/250606 | 6| 1|NMDCJ | 6002| 100005860| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 9500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 6| 1|NMDCJ | 6001| 100005580| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 6| 1|NMDCJ | 6002| 100005818| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012MAT/250607 | 7| 1|NMDCJ | 6001| 100005580| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 22000|kg | 29-DEC-2012| 19-dec-2012MAT/250194 | 7| 1|NMDCJ | 6002| 100005818| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 27060|kg | 29-DEC-2012| 19-dec-2012MAT/251138 | 1| 1|NMDCJ | 6002| 100005825| 3501000001|Cement 50 kg | 1|pkt | 25-DEC-2013| 14-dec-2013--------------------------------------------------------------------------------------------------------------------------------------------------
    where as source file is like that:-
    Pending PR to process (detail report)
    01-17-13 12:43:19 PM
    Req.no. li Re Site Prj Id Act seq Part no Description Qty UOM want rec dt lat ord dt
    MAT/250370 | 2| 1|ISCSP | 4977| 100004207| 0104000016|Angle 50 X 50 X 6 IS:2062 Grade | 5500|kg | 30-NOV-2012| 20-nov-2012
    MAT/250370 | 3| 1|ISCSP | 4977| 100004207| 0105000002|Channel 100 X 50 IS:2062 Grade A | 1000|kg | 30-NOV-2012| 20-nov-2012
    MAT/250579 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 2991|kg | 13-DEC-2012| 03-dec-2012
    MAT/250606 | 2| 1|NMDCJ | 6002| 100005860| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 2| 1|NMDCJ | 6001| 100005580| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 1500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 3| 1|NMDCJ | 6002| 100005818| 0109020002|TMT Bar 10 mm Fe 415 IS:1786 | 3939|kg | 29-DEC-2012| 19-dec-2012
    MAT/250606 | 4| 1|NMDCJ | 6002| 100005860| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 39000|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 4| 1|NMDCJ | 6001| 100005580| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 2| 1|NMDCJ | 6002| 100005818| 0109020004|TMT Bar 16 mm Fe 415 IS:1786 | 12183|kg | 29-DEC-2012| 19-dec-2012
    MAT/250606 | 6| 1|NMDCJ | 6002| 100005860| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 9500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 6| 1|NMDCJ | 6001| 100005580| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 4500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 6| 1|NMDCJ | 6002| 100005818| 0109020006|TMT Bar 25 mm Fe 415 IS:1786 | 17500|kg | 29-DEC-2012| 19-dec-2012
    MAT/250607 | 7| 1|NMDCJ | 6001| 100005580| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 22000|kg | 29-DEC-2012| 19-dec-2012
    MAT/250194 | 7| 1|NMDCJ | 6002| 100005818| 0109020008|TMT Bar 32 mm Fe 415 IS:1786 | 27060|kg | 29-DEC-2012| 19-dec-2012
    MAT/251138 | 1| 1|NMDCJ | 6002| 100005825| 3501000001|Cement 50 kg | 1 |pkt | 25-DEC-2013| 14-dec-2013
    Ignore alignment. It is well formatted in source file.

  • Smartforms: no page break between last line item and footer in table?

    Hello All,
    my smartform has FIRST and NEXT pages. I would like to avoid a page break between last item line of a table in MAIN window and the footer of the same table.
    Here is how it looks currently.
    Output of FIRST page, MAIN window, table ITEMS:
    1.line item
    2.line item
    3.line item
    4.line item
    page break
    output of NEXT page, MAIN window, table ITEMS:
    1.footer line
    2.footer line
    I would like that if a footer does not fit on FIRST page, it would be displayed on NEXT page with last item line.
    It should be like this:
    output of FIRST page, MAIN window, table ITEMS
    1.line item
    2.line item
    3.line item
    page break
    output of NEXT page, MAIN window, table ITEMS
    4.line item
    1.footer line
    2.footer line
    Any ideas?
    Thanks and best regards,
    Mindaugas

    Do you mean line item text or your want to print footer text?
    If your trying yo display some footer text, then you either place a footer window or you can create a table inside your main window and place text under the footer of the table, then it will display the text without any page break.
    If it is item tem.
    Then you need to build additional logic. As we cannot guess, the total number of item text upfront.
    Example: if page1 can hold 15 line items, check whether your header and item can fit in page one else call a new page by placing a condition FLAG = "X".
    I hope it will help you to solve your problem.
    Regards,
    SaiRam

  • Using iWork 09 Pages I need the first six pages of a document to not be counted as page numbers. I need the seventh page to be numbered as page one. I already know to have a section break between pages 6 and 7 and to use inspector "start at." Not working

    In the book I'm formatting, the first page is the title page, the second page is the copyright page, the third through fifth pages are the table of contents, the sixth page is blank, then the text (which I want to number as page one) is the introduction. I have section breaks between the title page, the copyright page, the table of contents, and the introduction. Using the Inspector, Layout, Section, and selecting "Start at" 7 doesn't do anything!

    Is is a bit tricky, but it works. On your 6th page (the blank one) go to Insert > Section Break. This will give you a 7th page. Then go to Inspector (blue circle with a white letter i in it) and go to Layout Inspector (2nd tab). Once in thee, go to Section. Check "Start at" and enter the number 1. Then ensure all other toons I there are unchecked.
    Then go to Insert, and select Auto Page Numbers. You will find that your 7th page is numbered 1 as you want, but the first six pages will be numbered 1 to 6, which you don't want. But you can then delete the page numbering in that 1st section, leaving your 2nd section, beginning at page 7, numbered as page 1. You'll need to play around a bit as I did, and I would suggest using a test document to play with so you can undo any unwanted actions etc, but with tweaking around, it's doable. This took me ages to sort, so if it works for you, please give me the points :-)

  • Need to skip page break between header and Detail sections

    Hello,
    I am combining two reports in one report (one in header section and another report in the body section). when this report is run, there's a page break between these two sections. Is it possible to eliminate it? Ideally I would like the detail section to start as soon as the header section of the report is completed in the same page instead of starting (detail section report) in a new page.
    Any help is highly appreciated. Thanks,
    Sundar

    I'd put them into one section to control the breaks.

  • Trying to have a break between each song while playing music in iTunes

    Hi there
    When Playing music in iTunes the songs run without any break - that is something like 5 seconds before the current song playing is supposed to finish, the next one already starts to play. I hope to have a break between the songs - only when the current song reaches an end, the next one begins. Is there a way to do that? I would appreciate your help.
    Thank you
    Zak

    I have the same problem. I have the crossfade set to four seconds and have made sure that the "part of a gapless album" is not checked. Any ideas on how to fix this? thanks.

  • I am having trouble getting rid of the delay between slides I am using revolve and there is a delay between when one fades and the other appears

    I am having trouble getting rid of delay between slides.  I am Revolving from one to the other and it comes up blank in between slides.

    @vincepay 
    Here is a link to the drivers for the HP Colour LaserJet 3600 windows 7 drivers:
    HP Color LaserJet 3600 Series Printers World Wide Printing System - 64 bit driver for windows 7
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • Flickering between slides in Captivate 4

    Hi,
    I'm having some trouble figuring out why my project flickers in between slides in Captivate 4.
    Some info on the project:
    Each slide's transition on the properties menu is marked as "No transition". Most of the objects on the slide, especially those that appear at the very beginning, are set at "no transition"; others are set as "fade in only" and have at least .5 seconds to fade in.
    At first, I had a floating image on each slide as a background image before I realized that I could set a background image. While I was playing around with this, I changed the background color to green just to test it out. It seems that the flicker between slides is whatever color that background color is set to. Black is the least noticeable, it seems...
    Then, I set the background image for each slide, but it didn't seem to make a difference. Then, I merged objects, such as the title (same for each slide) and some other non-changing pieces (logo/branding) into the background, and this didn't make much of a difference either.
    When I was playing around with the background images, etc., the flickering seemed to stop for a few slide-to-slide transitions, but these "successful" or seamless transitions don't seem to necessarily occur at the same places each time I pre/view them.
    Also, I have Adobe Flash Player 9 software on my computer (probably from the Captivate 4 software or from the Adobe CS3 software). I'm aware that there's a new release (10.1), but I've only been able to download plugins for browsers (chrome and firefox, so far), but not the actual software .exe file. Not sure whether its really a FP issue, though, because I've tried opening the project's .swf file in both browsers and the FP 9 and the flickering still occurs in all.
    I've seen some evidence of this flickering in other projects before. It may have been a few individual objects, such as a text box here or an image there, and I was somehow always able to fix it, though I never really knew what I did to fix it! The flicker usually just ended up going away! The previous problems were never as grand as they are now (being whole-slide flickers on EACH transition).
    Can anyone help me???
    It'd be MUCH APPRECIATED!!
    Thanks,
    Kate

    Macnimation,
    Flash video can be a bit glitchy in Captivate--especially if the video includes the audio.
    In answer to your autodetect concern, is your FLV set to "Pause slide till end of video"?
    Then, just thinking out loud, how about a workaround for the audio overlap?  Create blank slide (whatever color you want) before the second video--set for 0.1 second or so and "Go to Next Slide".  Then navigate to that slide before going to the second video.  That might cut the sound off.  This might not be the best solution, but it might be the most expedient one. --Leslie

  • Having a break between the songs while playin music in iTunes

    Hi there
    I asked this question before, but still with no answer...
    When Playing music in iTunes the songs run without any break - that is something like 5 seconds before the current song playing is supposed to finish, the next one already starts to play. I hope to have a break between the songs - only when the current song reaches an end, the next one begins. Is there a way to do that? I would appreciate your help.
    Thank you
    Zak

    Turn off Crossfade. Preferences>Playback

  • Cap 6 - Flickering between slides

    Hi all,
    I have a project where an image is flickering between slides.  Setting the Next button to "Go to Next Slide" fixes it, much like is done in the post below:
    http://forums.adobe.com/message/3177182
    However, in some slides, I'd like to set the "Next" button to "Continue", and STILL not have flickering (using fade outs and nice-looking transitions).  I know I could insert an extra mini-slide between the two slides, where the text boxes would fade out....but that seems like a longer work-around.
    Any ideas?
    I was hoping that this would be resolved with Cap 6.
    FYI - other than the flickering, Cap 6 is awesome.  It's literally saved me 10 hours of work via it's "Return to Quiz" function and drop-shadow capabilities.
    Micky

    Sorry team, but I just found some highlight boxes that are flickering because of the "blink twice" effect.
    1.  Highlight box fades in (good)
    2.  Highlight box blinks twice (good)
    3.  Slide pauses.(good)
    4.  User clicks next button to continue playing slide (good)
    5.  Highlight box fades out (good)
    6.  Right before moving to the next slide, the highlight box flickers. (BAD)
    I know that changing the next button to "Go To Next Slide" would fix it.  However, I can't do this because i want to fade everything out at the end of the slide.
    I also know I could create a copy of the slide, so that slide A does "Go To Next Slide" and slide B (copy) doesn't have the highlight boxes.  The fade out would occur on slide B (copy).  ...but this solution seems a little cumbersome.
    Let me know if you'd like a copy of my project.

  • Time Between Slides In A Program - Captivate 7

    I need to know where to look to lessen the time between slides in the program I am developing.

    Hi there
    Slide duration is configured in the properties panel.
    Can you be more specific about what you are trying to do?
    Cheers... Rick

  • Flickering between slides

    Hello,
    I am using Captivate v.6.0.1.240
    I've read the forum and many seem to have the issue with flickering slides.
    Aside for adding a fade-in transition between slides in Captivate (does not work for me), is there another solution or released patch?
    Thank you for your help.
    Donglin

    Adobe wants my money.

  • A Break between Cells In Table?

    The top table is an image file.
    the problematic tables clearly "break" between the columns for some as yet unkown reason.
    there are 0 borders.
    How might I solve this dilema?
    Thank you

    Try adding this to your CSS code.
    table {
    border:0;
    border-collapse:collapse
    Failing that, we would need to see a link to your page.
    Nancy O.

  • Help!!! Can captivate stop between slides??

    Hi
    I am creating a demo through capitvate. Is there anyway for
    capitvate to stop between slides and it be up to the presenter to
    continue to the next slide?
    Please help! I am desperate!
    Simona

    Hi Simona and welcome to our community
    If you are wanting this behavior to occur by virtue of
    recording, click Options > Recording Options... and configure
    one of the Assessment modes.
    If you are talking about a project you have already recorded,
    click Insert > Click Box... or Insert > Button... and insert
    a Click Box or Button object on each slide. The default nature of
    these objects is to pause the project until your user interacts.
    Hopefully this helps... Rick

  • I made a cd video from my camera and I want 'part' of it on to a separte cd or stick. Is this possible. The cd has no break between items.

    Is it possible to take a 'part' of a cd I made from my camera and put it on a different cd or stick?
    Unfortunately I did not break between the items, and I just want two minutes from the original cd I made..
    I deleted it fro my camera  UGH.

    No, the camera connection kit only supports the copying of photos and videos to the Photos app, it doesn't support copying content off the iPad. For your second camera instead of the SD reader part of the kit, does the iPad to camera cable not work with it for direct transfer to the iPad ?
    For Lightroom and Nikon software again no - you can only install apps that are available in the iTunes app store on your computer and the App Store app on the iPad, 'normal' PC and Mac (OS X) software are not compatible with the iPad (iOS). There are some apps that perform fairly basic editing functions that are available in the store, but nothing as sophisticated as, for example, Lightroom.

Maybe you are looking for

  • CUCM 8.6 TSP issue

    Hi, I've trouble making the TSP connection to a CUM 8.6 cluster. I am using windows 7 64 Bit PC and installed the "CiscoTSPx64.exe" as a fresh, did a reboot and configured the required paramenters (CTI Server/Username PWD). When I use dialer.exe, I d

  • Need help setting up automatic bootable backup

    Hello I need to set up a bootable backup on a second drive on a G4 XServe running OS X Server 10.3.9. This has to run automatically when no user is logged in to the server, so as far as I can tell, commercial backup software will not run. I'm hoping

  • Bookmarks sidebar cover Flash player and PDF plugin when active.

    This problem is present in FF 5 - 6 - 7. When i leave the Bokmarks sidebar active in my FF a blank square flickering on flash player like youtube videos and on pdf documents opened with PDF plugin. This square appear and disappear when i move the mou

  • CUPS PDF PRINTING IN WINDOWS OVER REMOTE DESKTOP - PRINTER NOT LISTED

    I am running OS X 10.6.2. I connect remotely using windows remote desktop / terminal services to various windows machines. For the XP and Windows 2003 Server 32 bit systems I have no problems with printing pdf documents from the remote windows system

  • Customer Master with Multi-Org

    We are implementing 11i with multi-org. We have been trying to determine at what level the customer master (and others such as item master) files reside within the multi-org levels. Specifically, does the customer master lie in the set of books level