Subtitles, type getting cut off slightly on first letters

I have made my subtitles using the default font and size in DVD SP in a 16:9 project. But the left justify command clips off a little of the 1st letters of each line on the tv and in the DVD SP project, but when I right or center justify the letters are fine. Is this right?
Also when viewed on a 4:3 tv the subtitles appear just over the black section of the letterboxing slightly.
Is there any cure for my troubles? Like I said, all the subtitles were done using default settings.
Thanks for any help!
S

The problem with letter chopping seems to be bug in DVD-SP. the only workround seems to be placing an extra space at the front of the line. Having said that most subs are centred so you don't get the problem.
As to your other prob you can move the X and Y position of the sub stream - but I think I'm right in syaing that if you play a 16:9 film with subs on a 16:9 setup then the subs will appear on the picture (as you'd expect), play the same movie on a 4:3 set up letterboxed and the subs will move lower down. That's the way things are i think you'll find - try it with a Hollywood DVD that has subs....
Steve

Similar Messages

  • PDF attachment getting cut off

    Hello Experts,
    I'm trying to send a PDF attachment using a PL/SQL procedure. In this procedure Im picking up the PDF file from server and sending it via email attachment. The procedure works fine and sends the PDF but it cuts off the data in the PDF. When I open the PDF file I can only see half of page the rest is just blank. I cant figure out why this is happening, can someone please check the procedure and let me know where im going wrong.
    CREATE OR REPLACE PROCEDURE send_email AS
    v_file_handle UTL_FILE.FILE_TYPE;
    v_email_server VARCHAR2(100) := 'xxxx'; -- replace with SMTP server
    v_conn UTL_SMTP.CONNECTION;
    v_port NUMBER := 25;
    v_reply UTL_SMTP.REPLY;
    v_msg VARCHAR2(32767);
    v_line VARCHAR2(2000);
    v_message VARCHAR2(2000) ;
    b_connected BOOLEAN := FALSE;
    v_sender VARCHAR2(50) := '[email protected]'; -- Sender email address
    CRLF VARCHAR2(2):= CHR(13) || CHR(10);
    RECPT VARCHAR2(255) := '[email protected]'; -- Receptiant email address
    p_stat NUMBER;
    SLP PLS_INTEGER := 300;
    pdirpath VARCHAR2(50) := 'TEST'; -- directory on the server
    pfilename VARCHAR2(50) := 'test01.pdf'; -- pdf file on the server
    BEGIN
    p_stat := 0;
    /***** Check if the file exists ****/
    BEGIN
    v_file_handle := UTL_FILE.FOPEN(pDirPath, pFileName, 'R');
    EXCEPTION
    WHEN UTL_FILE.INVALID_PATH THEN
    p_stat := 01;
    DBMS_OUTPUT.PUT_LINE(SQLERRM ||' '|| p_stat);
    WHEN OTHERS THEN
    p_stat := 02;
    DBMS_OUTPUT.PUT_LINE(SQLERRM ||' '|| p_stat);
    END;
    /***** Try to connect for three times, do sleep in between for 5 minutes *****/
    FOR i IN 1..3 LOOP
    BEGIN
    --open the connection with the smtp server and DO THE handshake
    v_conn:= UTL_SMTP.OPEN_CONNECTION(v_email_server, v_port);
    v_reply :=UTL_SMTP.HELO( v_conn, v_email_server);
    IF 250 = v_reply.code THEN
    b_connected := TRUE;
    EXIT;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_LOCK.SLEEP (SLP);
    END;
    END LOOP;
    IF b_connected = FALSE THEN
    p_stat := 03;
    DBMS_OUTPUT.PUT_LINE(SQLERRM ||' '|| p_stat);
    END IF;
    v_reply := UTL_SMTP.MAIL(v_conn, v_sender);
    IF 250 != v_reply.code THEN
    p_stat := 04;
    DBMS_OUTPUT.PUT_LINE(SQLERRM ||' '|| p_stat);
    END IF;
    v_reply := UTL_SMTP.RCPT(v_conn, RECPT);
    IF 250 != v_reply.code THEN
    p_stat := 05;
    DBMS_OUTPUT.PUT_LINE(SQLERRM ||' '|| p_stat);
    END IF;
    UTL_SMTP.OPEN_DATA ( v_conn);
    v_message := 'Sample Email This is an auto generated mail. Please DO NOT reply TO this mail.'||CHR(10);
    v_msg := 'Date: '|| TO_CHAR( SYSDATE, 'Mon DD yy hh24:mi:ss' )
    || CRLF || 'From: ' || v_sender
    || CRLF || 'Subject: ' || 'Sample file'
    || CRLF || 'To: ' || RECPT
    || CRLF || 'Mime-Version: 1.0'
    || CRLF || 'Content-Type: multipart/mixed; boundary="DMW.Boundary.605592468"' || CRLF ||''
    || CRLF || v_message
    || CRLF ||''
    || CRLF ||'--DMW.Boundary.605592468'
    || CRLF ||'Content-Type: text/plain; NAME="v_message.txt"; charset=US-ASCII'
    || CRLF ||'Content-Disposition: inline; filename="v_message.txt"'
    || CRLF ||'Content-Transfer-Encoding: 7bit' || CRLF || ''
    || CRLF || v_message || CRLF || CRLF || CRLF;
    UTL_SMTP.WRITE_DATA(v_conn,v_msg);
    /***** Prepare the attachment to be sent *****/
    v_Msg := CRLF || '--DMW.Boundary.605592468'
    || CRLF || 'Content-Type: application/octet-stream; NAME="' || pFileName || '"'
    || CRLF || 'Content-Disposition: attachment; filename="' || pFileName || '"'
    || CRLF || 'Content-Transfer-Encoding: 7bit' || CRLF || CRLF;
    UTL_SMTP.WRITE_DATA (v_conn, v_msg);
    LOOP
    BEGIN
    UTL_FILE.GET_LINE(v_file_handle, v_line);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXIT;
    END;
    v_msg := '*** truncated ***' || CRLF;
    v_msg := v_line || CRLF;
    UTL_SMTP.WRITE_DATA ( v_conn, v_msg );
    END LOOP;
    UTL_FILE.FCLOSE(v_file_handle);
    v_msg := CRLF;
    UTL_SMTP.WRITE_DATA ( v_conn, v_msg );
    v_msg := CRLF || '--DMW.Boundary.605592468--' || CRLF;
    UTL_SMTP.WRITE_DATA ( v_conn, v_msg );
    UTL_SMTP.CLOSE_DATA( v_conn );
    UTL_SMTP.QUIT( v_conn );
    EXCEPTION
    WHEN OTHERS THEN
    p_stat := 06;
    END;
    I'm not sure why my PDF is getting cut off towards the end, any help would be much appreciated.
    Thank you very much.

    Hi,
    I managed to make it work, I changed the attach_base64 as per your recommendations but made my own slight change :-
    PROCEDURE attach_base64_fromfile
    (conn IN OUT NOCOPY utl_smtp.connection,
                        filename IN VARCHAR2,
    floc IN VARCHAR2,
                   mime_type IN VARCHAR2 DEFAULT 'application/octet',
                        inline IN BOOLEAN DEFAULT TRUE,
                        last IN BOOLEAN DEFAULT FALSE) IS
    i PLS_INTEGER;
    len PLS_INTEGER;
    fh Utl_File.File_Type;
    buf raw(32767);
    BEGIN
    begin_attachment(conn, mime_type, inline, filename, 'base64');
    fh := Utl_File.Fopen (
    location => floc,
    filename => filename,
    open_mode => 'r');
    BEGIN
    Utl_File.Get_Raw (
    file => fh,
    buffer => buf);
    i := 1;
    len := utl_raw.LENGTH(buf);
    WHILE (i < len) LOOP
    IF (i + MAX_BASE64_LINE_WIDTH < len) THEN
    utl_smtp.write_raw_data(conn, utl_encode.base64_encode(buf));
    utl_smtp.write_data(conn, utl_tcp.CRLF);
    END IF;
    i := i + MAX_BASE64_LINE_WIDTH;
    END LOOP;
    EXCEPTION
    WHEN no_data_found THEN NULL;
    END;
    Utl_File.Fclose ( file => fh );
    end_attachment(conn, LAST);
    END;
    and created another procedure to call send_mail.attach_base64_fromfile :-
    CREATE OR REPLACE PROCEDURE send_email_attachment IS
    conn utl_smtp.connection;
    BEGIN
    conn := Send_Mail.begin_mail(
    sender => '[email protected]', -- sender email address
    recipients => '[email protected]', -- recipient email address
    subject => 'Attachment Test',
    mime_type => Send_Mail.MULTIPART_MIME_TYPE);
    send_mail_vv.attach_base64_fromfile(
    conn => conn,
    filename => 'test.pdf', -- file name
    floc => 'TEST', -- file location
    mime_type => 'application/octet',
    inline => TRUE);
    Send_Mail.end_attachment( conn => conn );
    Send_Mail.end_mail( conn => conn );
    END;
    Thanks for all your help.

  • Videos getting cut off

    I inserted several camtasia mp4s into Captivate and the videos are getting cut off at the end. Is there a fix for this? Thanks

    Hello rusty89, welcome to Lenovo forums!
    There shouldn´t been a problem with a widescreen notebook, playing Youtube.
    Check you browser (test it in different one), if the problem exist update your flashplayer.
    It is also helpfull, if you tell us your exact type of machine and used OS.
    Follow @LenovoForums on Twitter! Try the forum search, before first posting: Forum Search Option
    Please insert your type, model (not S/N) number and used OS in your posts.
    I´m a volunteer here using New X1 Carbon, ThinkPad Yoga, Yoga 11s, Yoga 13, T430s,T510, X220t, IdeaCentre B540.
    TIP: If your computer runs satisfactorily now, it may not be necessary to update the system.
     English Community       Deutsche Community       Comunidad en Español

  • What size should my movies be to not get cut off?

    I am making a tutorial DVD. I used Snapz Pro to record a bunch of screen capture movies and then edited them together in FCP and exported them as 1024x768 animation movies and they look great. Now I want to burn them to DVD. When I take them as they are and put them on a DVD the top and bottom of the screen get cut off. Can I just resize the movies in QT pro to a different size so they won't cut off? If so what size? Is there a better way?

    Scott,
    A mix of this QuickTime Pro: How to Make Picture-in-Picture at http://docs.info.apple.com/article.html?artnum=42633 and the following procedure I put together a couple of years ago to use the small movies produced by still digital cameras in iMovie/iDVD:
    1. Create a 640 x 480 black mask with a slightly lighter black 320 x 240 center in Photoshop. Save it as a JPG file.
    2. Open your DiMage X movie in QuickTime Pro. Open the saved mask in another QuickTime Pro player (at 15 fps).
    3. Select the mask clip and edit->select all and then edit->copy
    4. Select the DiMage X clip and then edit -> add scaled the mask
    5. Next, select movie -> get movie properties
    6. Select video 2 on the left box and layers on the right box. Set the layers to 1 (that moves the mask to the back).
    7. Select video one on the left box and size on the right box. Click on adjust. Red hack marks appear around the video. Click on the picture (not the mark) and center the video on the lightened 320 x 240 box.
    8. The video may not completely cover the lighter box, but the hack marks should line up. When you view the movie, if you used a "slightly lighter" black for the center area, you won't a notice a lighter area when played in iDVD.
    9. Export it as a DV stream. Bring it into iDVD.
    will give you an idea on how to proceed. Obviously, you will need to come up with your own mask and cut-out size - 640x480 ISN'T what YOU want.

  • DVD video gets cut off, but preview shows dvd as good

    Having a problem getting my video to output from dvd burning without getting cut off.
    Computer is Win xp pro, 3gb ram, 2.33ghz cpu, 40gb free hd space
    Using Adobe Premiere Elements 3.0.2.
    I have video which I've recorded from my Sanyo xacti 720p avc camera, which records in mpeg4 format. I've converted the video(s) to mpeg 1,2 for dvd using my "Need4 Video Converter 5.9". At first I tried putting several mpeg1's into my premeire project, then I also merged all the video files into one, but still had the same problem.
    I put the video(s) into my premiere project, added some titles on the other video track. Also added some music on another audio track. So, the total size of the videos is about 3.5gb. I preview my project it looks great, I added some dvd scenes and used a nice template with scene selection and captions..the works. Now I try to burn it several ways, to a dvd, to a file folder on high or low settings, but everytime I only end up with about 1.5gb of data, and 25 mins of video, so it is cut off. My original video is an hour and 50 mins.
    The encoding takes about 3 hrs after I hit burn. No errors or anything.
    So, I cannot understand what I need to do. I don't want to convert to a smaller or lower format, bcz I dont' want to lose quality. I'm at a loss bcz I've tried so many different formats and combinations, let this stuff run for so many hours this past weekend, and still can't get it to work. Is there some kind of setting I'm missing? Something in premiere?
    I've read some best practices on the forum, and I understand to use bit rate of 7mbs or less, and to burn on slow speed. Is it at all bcz I'm burning it to my hard drive? but i don't think this is my issue. is it the old software? it came with my Sanyo camera, so I would think its good enough.
    Please help if you can. I was thinking my next shot might be to convert it down to a much smaller size, and maybe it will fit(but quality may be an issue). Thanks in advance. -Ron

    Ron,
    Yes, PE is a scaled down version of P-Pro, but also has some additional features, plus an easier way of doing many things, that its "big brother" does not. As to the ability to Export/Share frame sizes, I think that most are included in PE (would have to open each and explore precisely to tell you if it's all there). I do not think that this is your issue.
    As to the conversion, I'd step back to your original footage, Sanyo MP4, right? Unless Sanyo is using a proprietary CODEC to create the MP4's, you *should* be able to Open these files in QuickTime and play them. If you have QuickTime Pro (costs about US$30 to upgrade to "Pro), you *should* be able to Export and choose DV-AVI as your Export setting. Note: the term ".AVI" can mean so very many things. What you want is DV-AVI. This is the "native" format for PE - what it converts all other file formats to, to edit. The quality loss going with this format can be measured in a lab, but is almost totally impossible to see on any TV with the human eye. Doing this will likely enhance your entire editing experience.
    As for quality and conversions and compression, your camera has already done one conversion, when it wrote to MP4. You cannot get around that. Conversion to DV-AVI will be "virtually" lossless, though the file size WILL increase. The reason is that with MP4, not all "frames" exist with full content - part of its compression. With DV-AVI each "frame" will exist with full content. Be prepared for LARGE files, but files with all of the info.
    Then, when you Burn to DVD, you WILL recompress your data to MPEG-2 format, the DVD standard. You will loose some quality there, but it cannot be avoided. It is how DVD's hold their Audio & Video data.
    I still do not have any ideas that would directly affect your movie not burning completely. If the Duration of your movie has exceeded the capacity of a DVD-5, you would/should get an error message to that effect. You do not.
    One thing to go back and look for in your original Project's Timeline would be "gaps" in the Video. These can cause problems (or sometimes not). I zoom my Timeline way up, and use the PageUp & PageDn keys to "step" through the various Clips. The CTI (Current Time Indicator - that little doobie that marks where you are on the Timeline) should move in a linear fashion from Clip to Clip. If you see it pause, or hiccup, then zoom WAY in to the max and study the Timeline there. Are all Clips butted up to each other? Now, you can have Clips on Video Tracks above #1, that would allow you to have "gaps" in the Video on VT 1. That is OK, but if you have any spots on the Timeline, where there is NO Video, you'll likely want to fix these. You can close up the gaps by moving the Clips, so that they do butt up, or if you want "black" there, just go to the New icon and choose Black Video. Size it to fit the gap, and you will be fine. You can also extend the Clip before the gap, or after the gap, if that does not mess up your editing. Several choices and each should be based on what you want to have happen. If you find a bunch of gaps (even one can be deadly) try to Export/Burn again. Note: I've seen one 1-frame gap cause problems, but just had to re-edit a Project where I fixed 900+ gaps, and that Project had already Burned 4 DVD's. Go figure.
    Last thing to look at would be to hit the "\" key in Timeline mode. This will zoom out to show the full Timeline. Do you have anything stuck out by itself, past where you thought the end was? This should yield other problems, but not the one you are experiencing. Still, who knows? It's also a good thing to do, when you believe you are done, just to check that something didn't get "orphaned" out beyond where one normally looks on the Timeline.
    Good luck,
    Hunt
    [Edit] 01:50 is longish for a DVD-5. You will not be able to set a very high bit-rate (Quality slider), but you should still get the full Timeline, or an error message.

  • Why do my margins get cut off when I right click print, but not when I open my document and print?

    When I right click print (without opening the document) my margins get cut off, but if I actally open my pdf document and click print, it will print just fine.  This only happens when the document has print that is close to the edge.
    I am using Adobe 10.1.2 with Windows 7.
    Thank you in advance for your thoughts and help

    As for your comment on this being my first Mac, and the program issue, you misunderstood. Yes the eMac is in fact my first, personally owned, Mac computer other than the original Apple II series floppy fed PC, in which me and my father owned. The only other Apple/Macintosh computer I had experience on was my father's 13" MacBook Pro, and 20" iMac (both ran OSX Tiger 10.4.11, just as the one I have know runs). The iMac was upgraded to Snow Leopard due to our need for better picture/video/audio editing software such as that of Adobe, and the Macbook Pro was sold because of a business that was started being siphoned out of money. I purchased the eMac from a small business based off of eBay. It had the majority of OSX Tiger software, only missing minor programs like Photobooth. Other than that, it had no wireless software like BlueTooth, Wi-Fi capabilities, wireless sync, ect... But alas, when you buy a Apple/Mac computer, you must take a few cutbacks when purchasing it (even refurb.) for around $120.00 including taxing, shipping, handling, ect... I purchased nearly all of my software from co-workers and friends who had an extra key, or I would receive the software disc from them, and buy a key. The only "illegal" thing I had on the computer was music I had downloaded from LimeWire. I have never, and will never, trust any software coming from a torrent download site.

  • Submenu getting cut off

    Hi i am a newbie to flash i one of my frnd bought the menu from flashden website here is the test forum
    http://nitro.byethost14.com/
    the menu submenu gets cut off and is within that black region can anybody tell me how to make it come out of the black region i contacted few ppl in other forums they siad to change the html code used for the flash menu
    note:- i even used the wmode="transparent" it did not work.
    Thanks in advance
    please contact me at [email protected] for any further details abt the site

    kambrozewicz wrote:
    I am having problems with being disconnected from calls (it has happened 4 times) due to having no Skype credit, when my account has plenty of credit. I am paying for an account with 'unlimited' calls.
    Whats happening here?
    If Skype is warning you about not having Skype Credit to place the call, you may be calling numbers not covered by your subscription.  Not all subscriptions cover calls to all numbers in a particular country.  In many countries, landline numbers are the only numbers covered by subscriptions.  To better answer your question, we would need to know what subscription you have, and what number you are trying to reach (you could X out the last few digits of the number for privacy, but we'd need to know the country, city/area code, and what type of number this would be).
    Otherwise, you could contact Skype Customer Support, give them the specifics of your subscription and the number(s) you are trying to reach, and let them help you out. 
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Reports getting cut off

    I have a number of reports that can be somewhat wide.  When viewing some of them in the report manager, using IE6, the right side of the report gets cut off.  There are no horizontal scroll bars or anything.  If I just refresh the page from the toolbar, my report displays how it should. 
    Has anyone had this problem, or have a solution so that I don't have to refresh my page every time?
    Thanks,
    Erik

    We are facing the same problem, but this time with IE7 and refreshing the page does not help.
    I have a report with multiple subreports, all defined in reporting services with the same page width. However when rendering the report in IE7, the tables in the report enlarge based on the number of columns. One of the tables has 10 columns and when rendering the report you only see the first few characters of column 10. The rest is just cut-off.
    The report only repairs itself by changing the zoom level, but as we would like to hide the toolbar (including the zoom button) this is not an option for our end users.
    Does anyone have an idea on how we can solve this?
    Thanks in advance,
    Linda

  • Why does the top and bottom of my clips get cut off?

    Hi, I'm new to iMovie and I've encountered an annoying problem. I imported all my movie files from my flash drive without any issues. I dragged a clip from the section with all the clips to the play reel. I previewed the clip, both normal screen and full screen, and both times the top and bottom of the clip was cut off. I tried it again with different clips but the same thing kept happening? Can anyone tell me why this happens because my head keeps getting cut off and I don't like it one bit.

    First, you can go into File/Project Preferences and adjust the aspect ratio of your project to either widescreen (16:9) or standard (4:3), to match your footage.
    You can combine footage that is widescreen and standard in the same project. In this case, you have to tell imovie how to handle the clips that do not fit the overall project aspect ratio. To do this, you can select a clip in your project and use the Rotate, Crop, Ken Burns Tool. If you select FIT, it will preserve the whole frame by inserting black bars (letterboxing). If you select CROP it will cut off the top and bottom. You can select the default for this in Project Properties.

  • Imported image sequences get cut off half-way through

    Hi there! I'm trying to import an image sequence (jpeg) into Premiere Pro CS4 4.2.1 and having trouble getting the clip to play in entirety. My sequence is 24 fps and the footage I'm bringing in is a 5-second piece interpreted at 12 fps. (It was shot at 12 fps via Dragonframe software, on 1's). Unfortunately, the clip gets cut off half-way through. If I play it at 24 fps it's all there but much too short of course, and the wrong speed. If I play it back at 12 fps, only the first half or so of it shows up. All the files are numbered correctly, so there shouldn't be a cut-off. I feel like this might be some obvious problem, but google-and-forum searches have yielded nary a result. Anyone run into this or be able to tell me what I'm doing wrong?
    Background info: I'm on a Dell Inspiron 1525, Windows Vista, 32-bit operating system, using Premiere Pro CS4 4.2.1, importing jpegs as an image sequence/numbered stills. Not running any other software, codecs, playback engines etc. to my knowledge.
    Many thanks!

    Thanks, John and Jim.
    I went in to change the Indeterminate Media Timebase to 12, but there's no such number option in CS4. The lowest is 23.9-something, and 24 is the next one up. After bringing the sequence in and playing it in the little preview box in the upper left-hand corner, everything's there, but bringing it into the time-line cuts it off. Is this a glitch? Any other known ways around it? Worst comes to worst I guess would be importing the sequence in two halves.

  • Why is my design getting cut off?

    Hi, I'm trying to create my first site with Adobe Muse, can anyone tell my why my design is getting cut off like this? (Plan mode and preview below:)
    Thank you!

    Thanks for the help Brad! I made the image longer than the width of my page and it seems to have fixed the problem when I preview it, but will this mess things up in the end? (see below) Thanks!

  • Safari 5.1.5 Can't Scale/Resize Page for Print Without Right Margin Getting Cut Off

    If I'm trying to print a webpage that is wider than the width of a portrait-oriented 11 x 8.5 inch sheet, whatever content beyond the right margin gets cut-off at 100% scale. Now, I can go to "File > Print" and reduce the scale from 100% to 75% or whatever value. However, this just scales down the ALREADY cut-off content. The missing right margin content stays missing. I can reduce the sheet margins to 0 inches (borderless), and it doesn't help.
    Before I used to be able to use Safari's "File > Page Setup..." dialog box to scale down a webpage to make it fit on a sheet. Now, that option doesn't appear in Safari 5.1.5 Mac unless it got moved somewhere else? I just have the "Print" option.
    How do I scale down a webpage to fit the width of a printed sheet now without losing right margin content?

    Solved:
    1. Type  chflags nohidden ~/Library/ in a Terminal window.
    2. Click on the hard drive icon located on the desktop.
    3. Go to Users > [username] > Library > Safari folder.
    4. Delete all files except “Bookmarks.plist”.
    5. Then go to Users > [username] > Library > Preferences.
    6. Find com.apple.Safari.plist, com.apple.internetconfigpriv.plist, and com.apple.internetconfig.plist and delete them (ignore any file you can’t find).

  • Intermediate connections with E2000, I keep getting cut off.

     Hello, I installed a E2000 several week s ago. Installation went fine, however I am constantly  getting cut off.  This is happening with several items I have on the Network, 2 computers & 2 DVD players. I have one computer hardwired to the router. I can be in the middle of surfing the net & all of sudden I am cut off.  Sometimes I can quickly get back on while other times I have to reset the router and basically start totally over.   The first time this started to happen I returned the router & got a new one but it didn't make a difference. I am at a loss of what is happening.   

    Bypass the router and connect the computer directly to the modem. Check the Internet connection through the modem. Make sure that the connection is not dropping through the modem.
    If the Internet through the modem is not dropping then try to change some settings on the router.
    Connect the computer and modem to the router. You might have installed the Cisco connect software on the main computer. Open the Cisco connect software and go to Router settings. Click on Advanced settings and it will open the setup page of the router. Set the MTU to manual and change the size to 1365. Save the settings.
    Click on wireless tab. Set the configuration view to manual. Change the wireless channel to 11. Save the settings.
    Click on Advanced wireless settings sub tab. Change the beacon Interval to 75, RTS threshold to 2307 and fragmentation threshold to 2306. Save the settings. See if that works.

  • Text in Dynamic Textfield gets cut off

    Hi
    I have a dynamic text field which is just one line of text.
    For some reason letters like g or p that go below the regular
    line of text get cut off.
    I have made the field bigger, and also played around with the
    _height Property but it doesn't make a difference.
    I have imported the font into the Library. When I embed it
    the font doesn't cut off but looks very different. And if I change
    the field to a static field it doesn't cut off either, but the font
    looks a little different as well.
    Any ideas?

    Why should I start a new thread if this one was never resolved and I am still having the same problem?
    ANYWAY,
    I was able to fix this by finding an answer on a different forum.
    Simply increase the text leading using the text format option, like so:
    var format:TextFormat = new TextFormat();
    format.leading = 2;
    field_txt.defaultTextFormat=format;

  • HT1918 When I try to download a free app after log in the iTunes gets cut off with a msg update security question where do I do this?? I can't download anything

    When I try to download a free app after log in the iTunes gets cut off with a msg update security question where do I do this?? I can't download anything

    If you have a credit card on file on top of your gift card then it is asking you to confirm the security code for the card, which for a Visa or MasterCard is 3 digits located on the back, or AMEX has 4 digits on the front.  This happens just to ensure that you are the account holder, and would happen from time to time whether it was a free or paid app, even if you have a credit through your gift card.  This doesn't mean that your credit card will be charged.

Maybe you are looking for

  • Create a SharePoint 2013 Appplication in C#,Error:This operation can be performed only on a computer that is joined to a server farm

    I want to create a sharepoint application in C#: SPFarm CurrentFarm = SPFarm.Local; SPWebApplicationBuilder webAppBlder = new SPWebApplicationBuilder(CurrentFarm); webAppBlder.UseNTLMExclusively = true; webAppBlder.AllowAnonymousAccess = false; webAp

  • Title in summary different

    I'm using X5 to create PDF documents. My help title is defined in the Single Source Layouts | Printed Documentation properties and in the Project properties. That topic is displayed in the title bar of the Adobe PDF, which is as you'd expect, however

  • Parallel approval question of the workflow process.

    Hello Expert, I have the following business process scenario which will be realized by new BPMN. My qusestion is how to do with it on BPMN? I have one human activity in one step. The condition to pass this step is that all the potential owners of thi

  • Check-in override

    This is a duplicate of an entry under Content Areas for which no one has replied. A reply would be appreciated in that I have been unable to find a definitive answer anywhere in documentation: Short of resetting a user's password and logging in as th

  • Agentry server date conversion

    Hi Experts,      I have developed a sample customer application in agentry  connecting to mssql back end.There are fields with data type 'date' in front end and data type 'date and time' in back end. In the process of updating orders from ate to back