How to resize a doc in CC that was created with cs4

I created a tabloid size document in CS 4 and now need to resize it to Letter size using CC, not having much luck figuring it out.
Help??

What is the obstacle?
ID CC will open a CS4 file.
CS4 had Layout Adjustment which would automate re-sizing the document.
CC has Liquid layout and perhaps Layout Adjustment. (I am not above CS.5)
The amount of work to change Tabloid to Letter will be dependent on how well the file was created. 

Similar Messages

  • How do I edit a PDF file that was created with Acrobat 6

    I was given a PDF catalog file from one of my manufactures to use on my web  site, I was told that I need to edit the file and take out the last page which  is for my eyes only not the public, but the way they instructed me to do so has  not worked, so does anybody have an idea on how to do this?
    Also they have tried to  send me a corrected file with the last page removed but the file size is to big  to be sent through email. Any help would be great. Thank You

    dgnvarsitydad I think you are posting in the wrong thread.
    hauptinc wrote:
    Ok thank you I will try this but how will I know if there is a security set and also my mistake what I downloaded was Acrobat X Pro which is $200 from Adobe's web site. I am not very familiar with Acrobat but I will give it a try thank you again. Gary
    To see if there is security, open the document, go to File>Properties>Security. It will tell you what is allowed and what is not allowed.
    Keep in mind that Acrobat Pro is not $200 unless you have a qualifying older version to upgrade from. If not, it's more like $449.

  • Convert an integer value that was created with the Excel DATEVALUE formula to a valid date?

    Hello everyone,
    How can I convert an integer value that was created with the Excel DATEVALUE formula to a valid date in SSIS?
    Is this even possible?
    For example:
    =DATEVALUE("8/22/2008") will format the cell to display 39682.
    Reading the column as a string to get the int value (39682) - how can I turn this into a valid date using SSIS and then importing the real date to sql server?
    Thank you!

    You can use Script component for this and convert your integer values to Date. An example here is following:
    CultureInfo provider = CultureInfo.InvariantCulture;
    string dateString = "08082010";
    string format = "MMddyyyy";
    DateTime result = DateTime.ParseExact(dateString, format, provider);
    Source: http://stackoverflow.com/questions/2441405/converting-8-digit-number-to-datetime-type
    Vikash Kumar Singh || www.singhvikash.in

  • Does adobe muse support flash that was created with lightroom

    does adobe muse support flash that was created with lightroom

    I suspect your PhoneGap app was flagged as running on both iPad and iPhone. You'll need the same from DPS. You can do this in AppBuilder at the start of the wizard where it asks what kind of devices you want to support. Note that this is only available to DPS Professional and Enterprise customers. If you are a Creative Cloud customer building a Single Edition application it will only support iPad.
    Neil

  • HT1212 How do I unlock a disabled ipod that was synced with a different computer?

    How do I unlock a disabled ipod on a Macintosh computer that was synced with a different computer?

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    If problem what happens or does not happen and when in the instructions? When you successfully get the iPod in recovery mode and connect to computer iTunes should say it found an iPod in recovery mode.

  • Is there anything that you can do to fix a pdf that was created with the wrong orientation?

    Someone sent me 40-page pdf created from a document with landscape orientation that was output with portrait orientation. The pages are clipped off on the right and left. There is no way that I can see that you can change the orientation in Acrobat Pro and if it is converted into a Word document you can see most of the text, but there is still some missing, especially where there are tables. I don't have access to the original document. I was just curious if there was a way around this?

    Thanks, that is what I figured. Just thought I would ask. Some of the text that was clipped off did appear when the pdf was converted into a word file, but not all of it.
    Mary Jane

  • Invalid state in SQL query for a function that was created with no errors.

    SQL> CREATE OR REPLACE FUNCTION overlap(in_start1 IN TIMESTAMP, in_end1 IN TIMESTAMP, in_start2 IN TIMESTAMP, in_end2 IN TIMESTAMP) RETURN NUMBER
    2 IS
    3
    4 BEGIN
    5 IF (in_start1 BETWEEN in_start2 AND in_end2 OR in_end1 BETWEEN in_start2 AND in_end2 OR in_start2 BETWEEN in_start1 AND in_end1) THEN
    6 RETURN 0;
    7 ELSE
    8 RETURN 1;
    9 END IF;
    10 END;
    11 /
    Function created.
    SQL> show errors;
    No errors.
    SQL>
    SQL> SELECT * FROM tbl where overlaps(current_time,current_time+1,current_time-1,current_time+2) = 0;
    SELECT * FROM tbl where overlaps(current_time,current_time+1,current_time-1,current_time+2) = 0
    ERROR at line 1:
    ORA-06575: Package or function OVERLAPS is in an invalid state
    I do not understand why overlaps is returned as in invalid state in the query, when it was created with no errors earlier. Could anyone help me?

    Marius
    Looking at the logic you are trying to create it looks like you are looking for overlapping time periods.
    Consider two date/time ranges:
    Range 1 : T1 - T2
    Range 2 : T3 - T4
    Do they overlap?
    1) No: T1 < T4 (TRUE)  T2 > T3 (FALSE)
    T1 --- T2
               T3 --- T4
    2) Yes: T1 < T4 (TRUE)  T2 > T3 (TRUE)
    T1 ---------- T2
               T3 --- T4
    3) Yes: T1 < T4 (TRUE)  T2 > T3 (TRUE)
    T1 -------------------- T2
               T3 --- T4
    4) Yes: T1 < T4 (TRUE)  T2 > T3 (TRUE)
                   T1 ----- T2
               T3 --- T4
    5) Yes: T1 < T4 (TRUE)  T2 > T3 (TRUE)
               T1 --- T2
           T3 ------------ T4
    5) No: T1 < T4 (FALSE) T2 > T3 (TRUE)
                    T1 --- T2
           T3 --- T4Answer: Yes they overlap if:
    T1 < T4 AND T2 > T3
    So you can code the logic in your SQL as simply:
    SELECT *
    FROM tbl
    WHERE range1_start < range2_end
    AND    range_1_end > range2_startIf you go around implementing PL/SQL functions for simple logic that can be achieved in SQL alone then you cause context switching between the SQL and PL/SQL engines which degrades performance. Wherever possible stick to just SQL and only use PL/SQL if absolutely necessary.

  • How can I find a previous device that was registered with the same id but on a different laptop?

    my laptop was stolen along with my ipod touch. It was registered with that laptop but I need proof for an insurance claim. how can i show i registered it (owned it) with my new laptop?
    my ipod was previous to the most recent so i think thats a 4th gen
    i've used the same apple id on both laptops
    thanks

    ok well my last laptop was the only lapyop used to sync my ipod (thought that meant it was registered)
    i need proof of purchase for an insurance claim. i dont have the box because i threw it away when i got the ipod. is there any way of showing, on my new laptop, that i had my last ipod so that i can get a replacement.
    cheers

  • How can I replace an existing app on iTunes that was created with PhoneGap to a new version created with Adobe DPS? I get a 'supported devices' error message when I try to upload to iTunes! HELP!

    I created an app using PhoneGap a couple of months ago, and have now just amended it using Adobe DPS. But when I come to upload it to iTunes, I get the error message "This bundle does not support on or more of the device supported by the previous app version" How can I correct this?

    I suspect your PhoneGap app was flagged as running on both iPad and iPhone. You'll need the same from DPS. You can do this in AppBuilder at the start of the wizard where it asks what kind of devices you want to support. Note that this is only available to DPS Professional and Enterprise customers. If you are a Creative Cloud customer building a Single Edition application it will only support iPad.
    Neil

  • How can I update an app (iphoto) that was registered with another apple id?

    I bought an used Macbook Air, with Macosx 10.7.3 on it. It included apps like Iphoto and garage band. When I want to update them, I can't because the App Store is requiring the old apple ID.
    Is there a way to change the apple ID for updates of apps that came with the OS?
    I've tried to trash Iphoto and download it again from the app store but instead of "install" the button says "Accept" (to accept updates). However, when I click on it it asks for the old Apple ID.
    Thanks in advance for any ideas you may have.
    Dan

    Hello,
    You can't merge or change Apple ID. Applications are tied with the Apple ID used to make the purchases.
    In your case the only way to download them again is to use the old Apple ID.

  • How to delete an apple-id that was created with an invalid email address?

    After upgrading to IOS.5.0, my apple-id for the IPod was incorrectly change to an invalid email address.
    I have verified my apple id on itunes on my desk top. How ever, the apple id on the IPad  is still an invalid address which I can't validate or change.
    Any ideas will be appreciated.
    Thanks
    Mitch

    If everything works in iTunes on the computer see if this works. Sign out of the invalid account/email address and the sign in with the correct one on the iPad. Settings>Store>Apple ID - sign out.
    Restart the iPad before you try signing in with the correct ID.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • TS4337 I cannot edit/delete a reoccurring event that was synced with old Apple ID.

    I have an event that was created with an old Apple ID/email. I am unable to edit or delete this reoccurring event.  Please help.

    In this case if you download it from his account, you will need to deleted and download it again by your account
    also delete your backup from iTunes after you delete all the apps/games that you download it from your friend account
    so in the next time you try to restore your backup, you will not face the same problem

  • How do I remove an iPhone 4 that was turned in to Apple when I bought an iPhone 5 from Find My iPhone, when it will no longer be connected to the Internet?  It is currently pending erasure

    How do I remove an iPhone 4 that was turned in to Apple when I bought an iPhone 5 from Find My iPhone, when it will no longer be connected to the Internet?  It is currently pending erasure

    See this Apple doc -> iCloud: Remove your device from Find My iPhone
    All you have to do is browse to iCloud on your computer, click devices, then the X next to your devices name.

  • How do i edit a PDF file that was sent to me in an email?

    How do i edit a PDF file that was sent to me in an email?

    Depends on the extent of the edits. You will need Acrobat in any case. If the edits or minor, you can use the text edit tool. For major edits, you need to request the original file be sent or see if you can Save As a DOC or related file type. PDFs are not really structured for editing and you are asking for a lot of grief if you want to do much. Exporting is the best way, or even better simply asking the author for the original (non-PDF type).

  • How do I modify a PDF file that I created

    I'm using Adobe Acrobat Pro X with Windows 7 Professional 64 bit.
    From Adobe I selected 'Create' and choose 'PDF from File' and I selected a Word document. 
    Adobe converted the Word document to a PDF and it look great!!!!!
    I want to modify the PDF file and change the 'text', but it will not let me.
    Will I have to convert the Word document to a PDF everytime I want to change 'text'?
    Thanks!

    If you are saying you created a form from the DOC file, that may be a bit of an issue. First, you would generally edit the label in just the way that was mentioned with the text edit tool. However, it may depend on how you created the form. The creation process is important and that may be the problem. If it was created with the Designer tool, then you can not edit anything in Acrobat. Designer creates a XML form that is not compatible with the Acrobat tools. You may be able to edit it in Designer, but not Acrobat. You should still be able to go back to WORD and recreate the PDF.
    If you created the form manually and don't want to deal with recreating the fields, the print the WORD doc to a new PDF using the Adobe PDF printer. Then open your form and use Replace pages to put the revised document behind the fields. The fields will remain intact.
    Again, if the form was created in Designer, you may have to do such changes in Designer.

Maybe you are looking for

  • App Store crashes, Share button crashes, Security in Preferences panel crashes

    Background - Late 2010 MBP 15" i7, upgraded to 8 GB memory. Came with Snow Leopard, Upgraded to Lion without clean install. Worked perfectly. Have CleanMyMac installed on it. Problem - After upgrade to Mountain Lion, again, update from App Store, no

  • Change the background color of a title bar

    I'd like to know if it's possible to change the background color of a swing application title bar. Thanks in advance.

  • Dump while doing goods issue against order with movement type 261

    Hi Team, We are integrating Asset management process along with the goods issue against the order which is created with a business partner for movement type 261. when we try to complete the process the system gives us a dump as described below. pleas

  • How would I deploy my iOS app on Windows?

    Hey guys, I want t know what do I need to test iOS games made from Flash Builder 4.6 and Flash CS6? I am on a Windows Machine, and I was wondering how would I test it on an iOS device? My sister has a Mac so I would be able to upload to the App Store

  • Retrieving the organizational unit information

    Dear all, I need to review the organizational unit set up within the org.-structure on PPOSE. Therefore, I would appreciate if you could provide me with a Report/table, where I can receive informationu2019s about the time, when each organizational un