Form fields appear normal on my computer, but are too large on client's computer

I recently created a fillable PDF using Acrobat Pro for a client. I have done this many times before, and never had any issues with formatting.  On my computer, the fields appear perfect, but on the client's computer they are too large and obscure the surrounding text.  Please see the first screenshot for reference. Notice the large white form field on the left side.  He has viewed the document both on a Mac (in Preview) and on a PC (Acrobat Reader) and had the same problem.   The following is a screenshot of the same file on my computer:
On my computer, the name field appears to fill normally.  Does anyone have any idea why this is happening, and what I can do to fix it?
Thanks!
Jeanne

That person is using Preview and not Adobe Reader or Acrobat. Preview's support for PDF forms is dismal and it should not be used. It actually corrupts PDF forms (and other PDFs) in a number of ways, so that particular file should not be used again. If they don't want to install Reader, there's not much you can do.

Similar Messages

  • Form Field Appear on Value Entered

    I am running Coldfusion 9 and building a website using Dreamweaver from CS5.
    Is there a way to make a form field appear only if a certain value was entered into the previous form field? If so how? For example I am creating a registration page and one of the form fields is "Property Type" where the user can choose from "Residential, Commercial, Other" from a drop down menu and if the user chooses "Commercial" I want an additional field to pop up for the user to enter a value in "Company Name"??? Thanks for your help

    WolfShade,
    My apologizes for posting this question in the wrong forum. Since I have already started the discussion here I will ask you my question here still. I put in the lines of code you suggested however when I go to the drop down list and select "Commercial" no text input box appears for the Company Name field. If you have a min I will post my code below. Your help is very much appreciated. I should let you know I also tried adding the on change to the actual option tag for commerical i.e <option onChange...>Commercial</option> and still did not appear. I put the work area in red text hope it helps.
    <cfif IsDefined("FORM.username")>
      <cfquery name="MM_search" datasource="Access">
        SELECT Logininfo.Username FROM Logininfo WHERE Logininfo.Username=<cfqueryparam value="#FORM.username#" cfsqltype="cf_sql_clob" maxlength="50">
      </cfquery>
      <cfif MM_search.RecordCount GTE 1>
        <cflocation url="taken.cfm?requsername=#FORM.username#" addtoken="no">
      </cfif>
    </cfif>
    <cfset CurrentPage=GetFileFromPath(GetBaseTemplatePath())>
    <cfif IsDefined("FORM.MM_InsertRecord") AND FORM.MM_InsertRecord EQ "customer">
      <cfif IsDefined('form.propertytype') and len(form.propertytype) NEQ 0>
      <cfset #CustomerTypeRefFullName#=form.propertytype/>
      </cfif>
      <cfif IsDefined('form.companyname') and len(form.companyname) NEQ 0>
      <cfset #CompanyName#=form.companyname/>
      </cfif>
      <cfif IsDefined('form.salutation') and len(form.salutation) NEQ 0>
      <cfset #Salutation#=form.salutation/>
      </cfif>
      <cfif IsDefined('form.firstname') and len(form.firstname) NEQ 0>
    <cfset #FirstName#=form.firstname/>
      </cfif>
        <cfif IsDefined('form.lastname') and len(form.lastname) NEQ 0>
        <cfset #LastName#=form.lastname/>
        </cfif>
      <cfset Name=#FirstName#&''&#LastName#/>
      <cfset BillAddressAddr1=#Salutation#&' '&#FirstName#&''&#LastName#/>
        <cfif IsDefined('form.streetaddress') and len(form.streetaddress) NEQ 0>
        <cfset #BillAddressAddr2#=form.streetaddress/>
      </cfif>
        <cfif IsDefined('form.city') and len(form.city) NEQ 0>
        <cfset #BillAddressCity#=form.city/>
        </cfif>
        <cfif IsDefined('form.state') and len(form.state) NEQ 0>
        <cfset #BillAddressState#=form.state/>
        </cfif>
      <cfif IsDefined('form.zipcode') and len(form.zipcode) NEQ 0>
        <cfset #BillAddressPostalCode#=form.zipcode/>
        </cfif>
    <cfset Contact=#FirstName#&''&#LastName#/>
      <cfif IsDefined('form.dayphone') and len(form.dayphone) NEQ 0>
        <cfset #Phone#=form.dayphone/>
      </cfif>
      <cfif IsDefined('form.eveningphone') and len(form.eveningphone) NEQ 0>
        <cfset #AltPhone#=form.eveningphone/>
      </cfif>
      <cfif IsDefined('form.email') and len(form.email) NEQ 0>
        <cfset #Email#=form.email/>
      </cfif>
    <cfquery datasource="QBs">  
        INSERT INTO Customer (CustomerTypeRefFullName, CompanyName, Salutation, FirstName, LastName, Name, BillAddressAddr1, BillAddressAddr2, BillAddressCity, BillAddressState, BillAddressPostalCode, Contact, Phone, AltPhone, Email)
    VALUES (
    <cfqueryparam value="#CustomerTypeRefFullName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#CompanyName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#Salutation#" cfsqltype="cf_sql_varchar" maxlength="15"/>,
    <cfqueryparam value="#FirstName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#LastName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#Name#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    <cfqueryparam value="#BillAddressAddr1#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    <cfqueryparam value="#BillAddressAddr2#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    <cfqueryparam value="#BillAddressCity#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    <cfqueryparam value="#BillAddressState#" cfsqltype="cf_sql_varchar" maxlength="25"/>,
    <cfqueryparam value="#BillAddressPostalCode#" cfsqltype="cf_sql_varchar" maxlength="13"/>,
    <cfqueryparam value="#Contact#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#Phone#" cfsqltype="cf_sql_varchar" maxlength="15"/>,
    <cfqueryparam value="#AltPhone#" cfsqltype="cf_sql_varchar" maxlength="15"/>,
    <cfqueryparam value="#Email#" cfsqltype="cf_sql_carchar" maxlength="75"/>
      </cfquery>
    <cfif IsDefined('form.firstname') and len(form.firstname) NEQ 0>
    <cfset #FirstName#=form.firstname/>
    </cfif>
    <cfif IsDefined('form.lastname') and len(form.lastname) NEQ 0>
    <cfset #LastName#=form.lastname/>
    </cfif>
    <cfif IsDefined('form.username') and len(form.username) NEQ 0>
    <cfset #Username#=form.username/>
    </cfif>
    <cfif IsDefined('form.password') and len(form.password) NEQ 0>
    <cfset #Password#=form.password/>
    </cfif>
    <cfquery datasource="Access">
    INSERT INTO Logininfo (FirstName, LastName, Username, Password)
    VALUES (
    <cfqueryparam value="#FirstName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#LastName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#Username#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    <cfqueryparam value="#Password#" cfsqltype="cf_sql_varchar" maxlength="41"/>
    </cfquery>
      <cflocation url="login.cfm">
    </cfif>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/Main.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <!-- InstanceBeginEditable name="title" -->
    <title>TS Landscaping LLC</title>
    <!-- InstanceEndEditable -->
    <link href="styles/Main.css" rel="stylesheet" type="text/css">
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">function showHideInput(ddValue,txtFld) {
      if(toLowerCase(ddValue) == "commercial") {
         txtFld.style.display = '';
      else {
         txtFld.style.display = 'none';
         txtFld.value = '';
    </script>
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationPassword.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationConfirm.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationPassword.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css">
    <link href="SpryAssets/SpryValidationConfirm.css" rel="stylesheet" type="text/css">
    <!-- InstanceEndEditable --></head>
    <body>
    <div id="Container">
      <div id="header"><img src="Images/Website-Image.gif" width="393" height="217" alt="TS Landscaping Logo and Name of company"></div>
      <div id="menu_bar1">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a class="MenuBarItemSubmenu" href="index.html">Home</a>
            <ul>
              <li><a href="#">Item 1.1</a></li>
              <li><a href="#">Item 1.2</a></li>
              <li><a href="#">Item 1.3</a></li>
            </ul>
          </li>
          <li><a href="about_us.html">About Us</a></li>
          <li><a href="#">Services</a></li>
          <li><a class="MenuBarItemSubmenu" href="#">User Account</a>
            <ul>
              <li><a href="login.cfm">Login</a></li>
              <li><a href="registration_page.cfm">Register</a></li>
              <li><a href="members_page.cfm">Customer Page</a></li>
            </ul>
          </li>
          <li><a href="contact_us.html">Contact Us</a></li>
        </ul>
      </div>
      <div id="Main">
        <div id="side_bar"><!-- InstanceBeginEditable name="sidebar" -->Content for  id "side_bar" Goes Here<!-- InstanceEndEditable --></div>
        <div id="main_body"><!-- InstanceBeginEditable name="mainbody" -->
    <h1>Welcome to our sign up Page!</h1>
    <p>Please fill out the form below to register with out site and gain access to our members account page.</p>
    <form name="customer" action="<cfoutput>#CurrentPage#</cfoutput>" method="POST" id="customer"><table width="auto" border="0" align="center">
      <tr>
    <td><label for="propertytype">
      <div align="right">Property Type:</div>
    </label></td>
        <td><select onChange="showHideInput(this.options[this.selectedIndex].value,'companyname');" name="propertytype" id="propertytype" accesskey="n" tabindex="02">
          <option selected>Residential</option>
          <option >Commercial</option>
          <option>Other</option>
        </select></td>
      </tr>
      <tr>
      <td><label for="companyname">
        <div align="right">Company Name:</div>
      </label></td>
        <td><span id="sprytextfield11">
          <input type="text" name="companyname" id="companyname" accesskey="n" tabindex="03" style="display:none;">
    </span></td>
       </tr>
      <tr>
        <td><label for="salutation">
          <div align="right">Salutation:
            </label>
          </div></td>
        <td><select name="salutation" id="salutation" accesskey="n" tabindex="04">
          <option selected>Mr.</option>
          <option>Mrs.</option>
          <option>Ms.</option>
        </select></td>
      </tr>
      <tr>
        <td><label for="firstname">
          <div align="right">First Name:
            </label>
          </div></td>
        <td><span id="sprytextfield1">
          <input type="text" name="firstname" id="firstname" accesskey="n" tabindex="05" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="lastname">
          <div align="right">Last Name:
            </label>
          </div></td>
        <td><span id="sprytextfield2">
          <input type="text" name="lastname" id="lastname" accesskey="n" tabindex="10" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="streetaddress">
          <div align="right">Street Address
            </label>
          </div></td>
        <td><span id="sprytextfield3">
          <input type="text" name="streetaddress" id="streetaddress" accesskey="n" tabindex="15" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="city">
          <div align="right">City:
            </label>
          </div></td>
        <td><span id="sprytextfield4">
          <input type="text" name="city" id="city" accesskey="n" tabindex="20" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="state">
          <div align="right">State:
            </label>
          </div></td>
        <td><span id="sprytextfield5">
          <input type="text" name="state" id="state" accesskey="n" tabindex="25" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="zipcode">
          <div align="right">Zipcode:
            </label>
          </div></td>
        <td><span id="sprytextfield6">
          <input type="text" name="zipcode" id="zipcode" accesskey="n" tabindex="30" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
        <tr>
        <td><label for="dayphone">
          <div align="right">Day Phone:</div>
        </label></td>
        <td><span id="sprytextfield8">
          <input type="text" name="dayphone" id="dayphone" accesskey="n" tabindex="31">
    </span></td>
        </tr>
          <tr>
        <td><label for="eveningphone">
          <div align="right">Evening Phone:</div>
        </label></td>
        <td><span id="sprytextfield9">
          <input type="text" name="eveningphone" id="eveningphone" accesskey="n" tabindex="32">
    </span></td>
        </tr>
          <tr>
        <td><label for="email">
          <div align="right">Email:</div>
        </label></td>
        <td><span id="sprytextfield10">
          <input type="text" name="email" id="email" accesskey="n" tabindex="33">
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
        </tr>
      <tr>
        <td><label for="username">
          <div align="right">Username:
            </label>
          </div></td>
        <td><span id="sprytextfield7">
          <input type="text" name="username" id="username" accesskey="n" tabindex="40" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="password">
          <div align="right">Password:
            </label>
          </div></td>
        <td><span id="sprypassword1">
          <input type="password" name="password" id="password" accesskey="n" tabindex="45" />
          <span class="passwordRequiredMsg">A value is required.</span></span></td>
      </tr>
      <tr>
        <td><label for="passwordconfirm">
          <div align="right">Confirm Password
            </label>
          </div></td>
        <td><span id="spryconfirm1">
          <input type="password" name="passwordconfirm" id="passwordconfirm" accesskey="n" tabindex="50">
          <span class="confirmRequiredMsg">A value is required.</span><span class="confirmInvalidMsg">The values don't match.</span></span></td>
      </tr>
      <tr>
        <td colspan="2"><div align="center">
          <input type="submit" name="submit" id="submit" value="Register" accesskey="n" tabindex="50" />
        </div></td>
        </tr>
    </table>
      <input type="hidden" name="MM_InsertRecord" value="customer" />
    </form>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1");
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2");
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3");
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4");
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5");
    var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6");
    var sprytextfield7 = new Spry.Widget.ValidationTextField("sprytextfield7");
    var sprypassword1 = new Spry.Widget.ValidationPassword("sprypassword1");
    var spryconfirm1 = new Spry.Widget.ValidationConfirm("spryconfirm1", "password");
    var sprytextfield8 = new Spry.Widget.ValidationTextField("sprytextfield8", "none", {isRequired:false});
    var sprytextfield9 = new Spry.Widget.ValidationTextField("sprytextfield9", "none", {isRequired:false});
    var sprytextfield10 = new Spry.Widget.ValidationTextField("sprytextfield10");
    var sprytextfield11 = new Spry.Widget.ValidationTextField("sprytextfield11", "none", {isRequired:false});
    </script><!-- InstanceEndEditable --></div>
      </div>
      <div id="footer">
        <p>Home | About Us | Site Map </p>
        <p>&copy; TS Landscaping LLC 2010</p>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
        </script>
    </body>
    <!-- InstanceEnd --></html>

  • A page item on page 'SCHEDULE' at location 34,488 requires rasterization, but is too large to rasterize. Resize it smaller and try again

    I keep getting this error,
    A page item on page 'SCHEDULE' at location 34,488 requires rasterization, but is too large to rasterize. Resize it smaller and try again

    This basically means that there is an object that has its top left corner at x: 34 y: 488 which is too large to be rasterized, it could be due to any large object that is extreme wide or tall.
    Try to check page content and then resize it to verify the behavior. Please let me know how it goes.
    Thanks,
    Sanjit

  • Hi.  I purchased Adobe Acrobat Xi Pro from a store (card).  I submitted the number (under the scratch area on the card) on the adobe website, with my personal details etc.  When I submitted the form, I got an error message:  413 header length too large (a

    Hi.  I purchased Adobe Acrobat Xi Pro from a store (card).  I submitted the number (under the scratch area on the card) on the adobe website, with my personal details etc.  When I submitted the form, I got an error message:  413 header length too large (and on top the page reads JRun Servelet Error).  What does this mean? What should I do next?

    Hi.  I purchased Adobe Acrobat Xi Pro from a store (card).  I submitted the number (under the scratch area on the card) on the adobe website, with my personal details etc.  When I submitted the form, I got an error message:  413 header length too large (and on top the page reads JRun Servelet Error).  What does this mean? What should I do next?

  • Since the latest version of itunes, my playlists are "too large" to fit on the computer screen.  I can no longer scroll down because the far right side of the screen is too far over.  How can I minimize the screen or be able to scroll down my list?  Thx!

    Since the latest version of itunes, my playlists are too large to fit on the screen. The left side, with all my playlists is still there, but  I can no longer scroll down the chosen playlist as the far right is no longer accessible.  Any suggestions on how to minimize the list?  Thanks.

    I have the same problem on the latest iTunes software and Windows 7. My window is maximzed and I do not see any tab for photos. Seems related to a recent update (IOS7?) as this was there - at least before the very big change to the interface.

  • All of the input fields in my browser, regardless of site, are very large while everything else is normal size. How do I fix this?

    All of the input fields in the browser are very large while other text is normal size. How do I fix this?
    In some cases some sites headers will run together and sometimes overlap. Other sites will just show a portion of the site in a vertical box but not the full width of the screen and I can't adjust it.

    Applications -> Utilities -> Audio MIDI Setup; select the desired output device and click on the gear icon at the bottom, select 'Play alerts and sound effects through this device'.

  • How to pull videos recorded on iPod off device; transfer to computer (if files are too large to email)?

    I've recorded 2 short videos on my iPod with the camcorder function, but they are too long/large to email to myself (I am not interested in cutting them any shorter). What are my options for transferring these files from my iPod to my Macbook Pro?

    iOS: Importing personal photos and videos from iOS devices to your computer

  • Fillable Saveable Form - Fields appear to be blank but aren't

    We have a fillable savable form created with Adobe Acrobat 8 Professional. Sometimes the form emailed back to our office and opened in Reader Version 9 and it the form appears initially to be blank unless you click into the field - you can then see the data. However, you can't print the form with the data displayed. If using Reader version 8, then if you click the highlight button it acts like a toggle switch to view the data in the fields; however you still can't print.
    Any ideas on what is causing this and how we can fix it?

    We are having the same issue, but ALL fields on a large-ish form.  Also this form was widely distributed for email responses - so re-distributing it will be challenge.
    We are using Acrobat 9.10 with livecycle to create/publish. All works well, except that we are getting occasional returns where all data is hidden, unless we 'click' inside the field - then it appears.  If we export data it is empty.
    I cannot see any pattern re: version of acrobat reader or Mac vs. PC that the recipients are using.
    This is a serious issue for us, and any help would be greatly appreciated.
    Dave B.
    Toronto.

  • Upgraded to 10.3.1 - photos appear blurry in the albumn but are fine when viewed on a computer

    Hi - I upgraded to 10.3.1 on my Q5 last week.  When I take a photo it takes a while to appear and then looks blurry.  If I turn the phone off and try again it's fine for a little while then the same problem happens.  I downloaded the photos to my computer to double check them and they are clear on the computer, so it's not an issue with the camera as I first thought, but rather when viewing them.  I have no outstanding updates and I have searched all over the forums but can't see a solution.  Thanks in advance for any help.

    can you please take one picture, view it when it is blurred and make a screenshot
    and do the same after turning the phone off ?
    then for both screenshots, you can attach them here so we can see.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Emails in sent box appear to have been sent, but are never received

    I have an intermittent problem which is causing me no end of trouble for my business. Since about November last year, it seems that a certain percentage of my iCloud emails are never delivered to the recipient. There is nothing to identify failed messages -- they appear in my Sent box normally and as far as I can tell have been delivered normally. Some of them have been "new" messages, starting a new thread (which I suppose may possibly be trapped by someone's spam filter) but the majority are replies to another email, which I think are very unlikely to have been filtered as spam. I believe the people telling me that my emails have simply never arrived in their inbox at all. Messages with attachments and without attachments both fail. I am using the standard Apple mail client on my iMac.
    This only happens with my Apple email account -- although to be fair I send much more email through that account so it is not necessarily a fair comparison. It is nothing to do with Apple filters for obscenity -- there is nothing at all objectionable in the emails that appear to be failing. Most of them are very standard business communications.
    Has anyone found a solution to this problem? I wonder if I need to BCC myself on every message to see that it has come through (and even then, would that prove that all recipients received the message?)
    Many thanks to anyone who can help

    Hi there vladc,
    You may find the troubleshooting steps in the article below helpful.
    iCloud: Troubleshooting iCloud Mail
    http://support.apple.com/kb/ts4002
    -Griff W. 

  • Downloads appear as a new tab but are blank???

    We've used Firefox for a while now and we didn't have issues with downloads but now the will appear in the download folder which pops up but when we click to open them a new tab opens with nothing on it. I've tried closing Firefox and my connection to the net and then opening the downloads from the folder in My Documents but this to does exactly the same thing. How can I fix this so we can read downloads again.
    Thank you for your help

    Why is Safari forcing popups to appear as a new tab?
    It's not. Some ads are designed to open in front of or behind an open window, while others are deliberately designed to open in a new window or tab. It's not something you can control.

  • Videos taken with my iPhone 5 play back fine on my phone, but are too slow when imported to my PC.  Everything seems updated.  HELP!!

    When I take a video with my iPhone 5, it plays back great on my phone.  However, when I upload to my computer it plays back extremely slow, or the image freezes while the audio keeps going.  I've tried Windows Media Player, Quicktime, VLC media player, and they are all updated.  So is my computer software.  I never had this problem with my previous iPhone 3Gs. This is very annoying, help!!

    SharmFarm wrote:
    Good ev Ning Mario49    firstly I would like to say a great thank you for your attention to trying to help me,,,,,    i have looked at the links and will try everything stated first thing…
    Hi Mario,,,,
    I tried everything in your reply,,, thank you again,, I had done that once before and all was working great,,
    I have just now tried the Reinstall via iTunes, about 20 into the download, the iTunes logo on the phone disappeared, and the Apple Logo appeared again,,, I waited until the iTunes stated that the download had finished, and the install was in progress,,,
    Nothing happened, still the Apple Logo was visual on the screen, iTunes never recognised the phone which it was on my iTunes account previously,,,
    Still just a bunch of lines, maybe 5 or 6 so small writing,, I personally can not read what it is telling me, someone said it reads, incorrect shutdown,,,????????
    Please advise,???
    I am now at a loss,,, I really became excited when I saw the iTunes icon after putting the phone into restore,,,???
    Thank you again
    D

  • What is the best format to save in computer playback to match the quality of my camera ( MP4 1080p) - NTSC provides poor quality, MPEG2 files are too large?

    I am editing video and would like to share these at the same quality and size as  the original file - MP4 1080 film clips. I am downloading these files to Google, or to another network. Choices under computer viewing result in the following - NTSC provides poor quality and the MP2 1080 more than doubles the file size. Any better choices?

    andreasa
    What version of Premiere Elements and on what computer operating system is it running?
    What is your camera? Can we assume your videos from the camera are AVCHD.mp4 (1920 x 1080 @ 29.97 progressive frames per second?) What is the bitrate and duration of the file?
    What is your file size requirement for the export?
    H.264.mp4 is a frequently used format used for uploads to various web sites. You can find that format in Premiere Elements in the Share or Publish+Share/Computer/AVCHD (most often used) or Share or Publish+Share/Mobile Phones and Players.
    Please explain what you mean when you mention NTSC versus MPEG2...I understand MPEG2.mpg or MPEG2.m2t, but what do you mean by NTSC.as an export format.
    I will fine tune (customize the reply) with some more details as indicated.
    Looking forward to your follow up.
    Thank you.
    ATR

  • Iphone 4 apps are too large how do I get them back to normal size?

    on my iphone 4 my apps changed to a large size.  How can I get them back to normal?

    This was asked and answered only couple of minutes ago.
    It is covered in the manual>  Zoom feature
    iPhone User Guide (For iOS 4.2 and 4.3 Software)

  • I saved my raw images as jpeg but they are too large to upload to photbox? I have 475 images.

    i

    KATIEBAILEY222 wrote:
    ....what should the pixel width be?  The trouble is I dont know what size these images are going to be printed.  I know they want some images enlarged onto canvas so the4y will need to be a very good quality?
    The workflow I was suggesting doesn't need you to specify pixel dimensions: you specify the print size, in inches or whatever measurement is required (but usually it is inches for prints), along with the appropriate ppi and LR will do the math for you and re-size the image so that the pixel dimensions fit those criteria. Doing that, even for reasonably large prints, should see the JPEG file sizes drop quite a bit I would imagine; I use a 16MP D7000, and when I use PhotoBox I often print at 12"x8" (300dpi), which usually means that LR has to do a fair bit of downsizing (maybe -25%) in order to fit that output size; even with a very detailed image (e.g. a landscape with a lot of fine detail such as tree branches, leaves, etc), I rarely go over 15MB with the JPEG (very different story for a TIFF of course!).
    What camera are you using here? I'm intrigued.
    I think it's rather unfortuate that you have no idea what sizes your photos will be printed at, and if I were you, I'd try to get that sorted out before uploading anything to PhotoBox. Speak with the couple, show them the pictures you have, and get them to select the sizes they want them to be printed at - maybe a default size for the majority might suffice, and then they can pick out the favourites for larger sizes/canvas prints, etc. Make a note of all the sizes PhotoBox offer and show them your list whilst they look through the photos on-screen. IMHO, if you're unsure of the final print size then you're going to be making compromises by going for a "generic" size and then relying on the PhotoBox staff to up/downsample the images on the fly, and you'll definetely be compromising the output sharpening that LR has to offer. I'd personally much rather send them a finished file that's ready to go, without the need for them to start messing around re-sizing it. But if you really can't establish an intended print size before uploading, then I think DJ_paige is spot-on with his advice - but it is a compromise.
    On a side note, if you've gone to the trouble of processing these images in LR, then do make sure you turn off their "auto-enhancement" option in your account preferences. This is switched on by default for new accounts, and it will ruin all you hard work developing/processing your photos. I speak from experience: I use them every once in a while for prints, and they once mistakenly overlooked my "don't use auto-enhancement" preference setting - the photos I got were junk. Happily, they admitted their mistake when I complained and sent me a fresh set within 24-hours.
    M

Maybe you are looking for

  • Error in SOAP to IDoc scenario

    Dear Experts, I have one SOAP to IDoc scenario where I am sending the request through Altova XML spy. But I am getting the error "Only asynchronous processing supported for IDoc adapter outbound processg". but I have configured the QoS of Sender Comm

  • How to Live View with external CSS files?

    I am using a simple HTML page that references several external CSS style sheets.  The style sheets are site root relative.  The code validates. http://www.sandsmuseum.com/coinop/games/evansraces/documentation/index.html In Dreamweaver, the page looks

  • Problem with iTunes Music Playback

    Hi, I like using itunes but im having a problem with the music playback. If i have just itunes running and some background programs i.e. anti-virus playback of music is fine but I want to be able to surf the web, and play my games while listening to

  • V() function documentation

    OK, I give up. Where can I find documentation for the v() and nv() functions? And where can I learn about more functions like these? Thanks, -Ken

  • When did After effects become 64-bit?

    Hi. I was wondering if After Effects is 64-bit? From what I read, it is. Secondly, What version was 64-bit? Did it start in 4? Thank you.