Change file type to pdf

How do I change file type to pdf with windows 8 without paying? I was able to do this with windows 7 without paying.

Actually, I guess it's possible you were using paid-for Adobe software and didn't realise it.
Can you remember the steps you followed to make a PDF in your old system?

Similar Messages

  • Where is "save as" or how to change file type in Preview in Lion?

    Where is "save as" or how to change file type in Preview in Lion? I used to use Preview to change quickly change a lot of PNGs to either JPEGs or PDFs but with the introduction of versions auto save etc there no "save as" in the File menu. Any suggestions how to get this functionality back or how to get around it within OS X (no Photoshop etc)?

    Just wasted 15 minutes looking for that.  What's wrong with Save As?

  • Printing the file type attachment (PDF) in the report (XMLP) output

    Requirement
    Data Source: RDF
    Layout type: RTF (XML publisher)
    Requirement is to print the attachment on the sale order header of data type ‘File’. The attachment file type is PDF. Please refer the below screen shot for details.
    Responsibility: Order Management Super User
    Path: Orders, Returns - Sales Orders
    Open sales order record, and on sales order header form choose: View - Attachments from toolbar (or click on Attachment-icon).
    Attachment Data Type
    Default attachment data type is defined for each attachment category. This default value can be updated, when attachment is created on a transaction.
    If attachment File Type is 'File', print constant text 'See attached document' on the position defined for it on the layout. The attachment file is then printed to the end of the document (last page of the document). This additional page should contain reference to the sales order number being printed.
    Is it possible to print the attachment of data type ‘File’ in the XMLP report?

    Requirement
    Data Source: RDF
    Layout type: RTF (XML publisher)
    Requirement is to print the attachment on the sale order header of data type ‘File’. The attachment file type is PDF. Please refer the below screen shot for details.
    Responsibility: Order Management Super User
    Path: Orders, Returns - Sales Orders
    Open sales order record, and on sales order header form choose: View - Attachments from toolbar (or click on Attachment-icon).
    Attachment Data Type
    Default attachment data type is defined for each attachment category. This default value can be updated, when attachment is created on a transaction.
    If attachment File Type is 'File', print constant text 'See attached document' on the position defined for it on the layout. The attachment file is then printed to the end of the document (last page of the document). This additional page should contain reference to the sales order number being printed.
    Is it possible to print the attachment of data type ‘File’ in the XMLP report?

  • Changing file type association through java

    hello all,
    here i had a problem like , we know when we try to open .csv file by default it wll open in excel , because the csv file type was associated with excel this we can see in mycomputer->tools->folder options->file types and here we even have the possiblity of changing the association.
    anyway, my question is that is there any way of changing this association like csv to oepn in wordpad through java program
    with regards
    satya

    i created a like wordCsv.reg
    REGEDIT 4
    [HKEY_CLASSES_ROOT\.csv]
    "Default"=string:Wordpad.Document.1
    when i click on this file i could see a message that the entry wassucessfully entried but i cannot see the entry
    is my approach was correct in adding entry in regedit programatically,
    please any more ideas
    http://jniwrapper.com/pages/winpack/downloads
    here in this link i saw some samples regarding changing file types association
    , dont now will it works
    since this is for win32
    i found a program FileTypeAssociation dont know will it works
    * Copyright (c) 2002-2005 TeamDev Ltd. All rights reserved.
    * Use is subject to license terms.
    * The complete licence text can be found at
    * http://www.jniwrapper.com/pages/winpack/license
    package com.jniwrapper.win32.shell;
    import com.jniwrapper.Function;
    import com.jniwrapper.LongInt;
    import com.jniwrapper.Pointer;
    import com.jniwrapper.UInt;
    import com.jniwrapper.win32.registry.RegistryKey;
    import com.jniwrapper.win32.registry.RegistryKeyType;
    import com.jniwrapper.win32.registry.RegistryKeyValues;
    import com.jniwrapper.win32.registry.RegistryException;
    import java.io.File;
    * This class provides functionality for creating file type associations.
    * @author Vladimir Kondrashchenko
    public class FileTypeAssociation
    private static final String FUNCTION_SHCHANGENOTIFY = "SHChangeNotify";
    private static final long SHCNE_ASSOCCHANGED = 0x08000000L;
    private static final long SHCNF_IDLIST = 0x0000;
    private String _extention;
    * Creates a class instance for associating files of the specified type.
    * @param extention specifies the file type by its extention.
    public FileTypeAssociation(String extention)
    if (extention.startsWith("."))
    _extention = extention;
    else
    _extention = "." + extention;
    * Creates a file type association.
    * @param executable an associated file will be passed as a parameter of this executable file.
    * @param progID the programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(File executable, String progID)
    if (!executable.isFile())
    throw new IllegalArgumentException("File not found.");
    String commandLine = "\"" + executable.getAbsolutePath() + "\" \"%1\"";
    createAssociation(commandLine, progID);
    * Creates a file type association.
    * @param commandLine specifies an executable command.
    * @param progID the executable programm identifier in the registry. If the specified prog ID is not exist, it
    * will be created.
    public void createAssociation(String commandLine, String progID)
    RegistryKey registryKey = RegistryKey.CLASSES_ROOT.createSubKey(progID+"\\shell\\open\\command", true);
    RegistryKeyValues values = registryKey.values();
    if (commandLine != null)
    values.put("", commandLine);
    else
    values.put("", "");
    registryKey.close();
    registryKey = RegistryKey.CLASSES_ROOT.createSubKey(getExtention(), true);
    values = registryKey.values();
    values.put("", progID, RegistryKeyType.SZ);
    registryKey.close();
    changeNotify();
    * Removes all associations for the file extention.
    public void removeAssociation()
    try
    RegistryKey.CLASSES_ROOT.deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.CURRENT_USER.openSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts").
    deleteSubKey(getExtention());
    catch(RegistryException e)
    try
    RegistryKey.LOCAL_MACHINE.openSubKey("SOFTWARE\\Classes").deleteSubKey(getExtention());
    catch (RegistryException e)
    changeNotify();
    * Returns the default executable command for the file extention.
    * @return the default executable command for the file extention.
    public String getDefaultCommand()
    RegistryKey key = RegistryKey.CLASSES_ROOT.openSubKey(getProgID());
    key = key.openSubKey("\\shell\\open\\command");
    RegistryKeyValues values = key.values();
    return values.get("").toString();
    * Returns the program identified of the default executable program.
    * @return the program identified of the default executable program.
    public String getProgID()
    RegistryKeyValues values = RegistryKey.CLASSES_ROOT.openSubKey(getExtention()).values();
    return values.get("").toString();
    * Returns <code>true</code> if a file type association for the specified extention is registered.
    * @return <code>true</code> if a file type association for the specified extention is registered.
    public boolean isRegistered()
    try
    RegistryKey.CLASSES_ROOT.openSubKey(getExtention());
    catch (RegistryException e)
    return false;
    return true;
    * Returns the file extention.
    * @return the file extention.
    public String getExtention()
    return _extention;
    private void changeNotify()
    Function function = Shell32.getInstance().getFunction(FUNCTION_SHCHANGENOTIFY.toString());
    function.invoke(null,
    new LongInt(SHCNE_ASSOCCHANGED),
    new UInt(SHCNF_IDLIST),
    new Pointer(null, true),
    new Pointer(null, true));

  • Changing file type when saving doesn't work

    How can I fix the problem where, if I change file type when saving, eg from tiff to jpg, the 'jpg' suffix is not appended in the save window? It remains as tiff. This has only started happening recently.

    I have a G5 iSight running OSX 10.4.11 with all the latest upgrades. The problem is about a week old.
    Yesterday I did a clean install of everything (not because of this problem) which I'm sure would have cleared the problem. But I was playing around with importing all my old PS and InDesign settings via copying the old preference files (and others), and the tiff/jpeg problem has reappeared. Seems to me like one of the files I copied, contains the problem. I suspect the only way out of this is to reload PS. But I was hoping it might be as simple as deleting a certain preference file.

  • Changing "file type" in Link Information Window (CS3)

    Hola,
    I am having a problem in Indesign (CS3), and I was wondering if anyone here might be able to help.
    I'm a student updating an older .INDD file for a 47 page book. The pages were all updated as .AI files, but for some reason
    3 of the pages in our InDesign document were assigned a .PDF "file type" in the Link Information window.  When I try and "Relink" to the updated .AI files,
    the program won't link to the .AI file. It will properly re-link to a .PDF version of the file.
    Is there a way to reset that "file type" in the Links Window from .PDF to .AI?
    Ultimately I can use .PDF versions for this, but I'd prefer to have them all .AI files.
    That would be cleaner and easier for the next students down the road who are going
    to inheriet this project.  It seems like this should be an easy thing to do, but I can't figure it out...
    Thank you very much for any information you can provide.  
    ¡Muchas gracias!
    Javier

    Hola,
    Thank you for the quick reply!  I now suspect that I didn't correctly identify the problem.
    In the Links Panel for 44 of the 47 pages, they read pathname/*.AI, so no problem there (although the file type is also .PDF in the link window for those 44 pages that can link to the .AI).
    For three of the pages though, when I try and link them to pathname/*.AI, I get an error message in the document that indicates that "this is an Adobe Ilustrator file that was saved without PDF content".  When I relink those three to pathname/*.pdf, they work.
    So I'm thinking at this point that the problem isn't Indesign, but with the original .AI files that I'm trying to link to. I also suspect that my original idea to change the "file type" in the Links Panel to ".AI" is incorrect, since it's a .PDF file type for all of the 47 pages in this document!
    ¡Muchas gracias!
    Javier

  • Applescript to change file type using folder action

    Just found out my Adobe Acrobat is saving PDFs with the filetype "FDP" and creator "ORAC" which is obviously the reverse of what they should be.
    There doesn't appear to be a fix for this, and for me it's a problem because when I copy these PDFs onto our Xinet WebNative asset management server the files aren't recognised as PDFs, so don't display a preview in the web page.
    So, I wanted to use a folder action that will set the Creator and Type to the PDFs whenever they are put into a folder on the server.
    Unfurtunately, although I can get this to work when using a script in the form of an application (so I drop PDFs onto it, I cannot get it to work as a folder action. It doesn't set the creator and type even though the same commands in a application script do work.
    *This is the code to my script which works fine as an application:*
    ====================
    property FileType : ""
    property CreatorType : ""
    on open theFiles
    tell application "Finder"
    activate
    set FileType to "PDF "
    set CreatorType to "CARO"
    repeat with eachFile in theFiles
    set the file type of eachFile to FileType
    set the creator type of eachFile to CreatorType
    end repeat
    end tell
    end open
    ===================
    *and this is what I'm trying to use for a folder action:*
    ===================
    on adding folder items to my_folder after receiving the_files
    set pdfs to {"pdf"}
    repeat with i from 1 to number of items in the_files
    tell application "Finder"
    set this_file to (item i of the_files)
    set the file_path to the quoted form of the POSIX path of this_file
    --set the file_path2 to the quoted form of file_path --can combine if file_path isn't needed
    set this_fileType to name extension of (info for this_file)
    end tell
    if this_fileType is in pdfs then
    tell application "Finder"
    activate
    set FileType to "PDF "
    set CreatorType to "CARO"
    end tell
    end if
    end repeat
    end adding folder items to
    ==================
    I know it processes the file but it doesn't actually change the creator type.
    *If only Apple would fix this bug in the first place!*

    Your folder action script isn't using the same commands, and doesn't do anything about setting file types or creator codes at all. Something like this should do the trick:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    font-weight: normal;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on adding folder items to my_folder after receiving the_files
    set pdfs to {"pdf"}
    repeat with each_file in the_files
    set this_fileType to name extension of (info for each_file)
    if this_fileType is in pdfs then
    tell application "Finder"
    set file type of each_file to "PDF "
    set creator type of each_file to "CARO"
    end tell
    end if
    end repeat
    end adding folder items to
    </pre>
    ... and by the way, Apple doesn't have anything to do with the file types, creator codes, or other application specific settings that an Adobe application sets for itself.

  • How to change file type from .zip to .dock

    I would like to know how to change the saved file type (.zip) to other file types such as (.txt), (.doc), (.dock) or (.pdf).

    It's more complicated than just changing the name of the file to have a different extension.  What you have to do is to convert a file from one format to another.  To do that you have to use an application that knows how to open the original type and how to write the format of the new type.  The application to use for a given combination depends on the combination.  For example, the Preview applications knows how to read a JPG file and write the contents to a PDF file.
    A ".zip" file is a somewhat different case.  A ".zip" file is an "archive" that (generally) contains other files compressed within it.  If you double-click on a ZIP file, it should expand into the enclosed files.
    If you give specific examples of what you want to convert, people should be able to explain what to do.
    By the way, I'm not familiar with a file of type ".dock".  What is that?

  • Change File Type association to match creator?

    I've searched this and other forums, but not seen a similar question. Is there a way to make the Finder open a given file type automatically in its CREATOR application, rather than the associated File Type application?
    I have hundreds of files created in Illustrator, all without file extensions, and with PDF compatibility, which means that the Finder sees them as PDFs, not Illustrator files, and opens them in Preview.
    Can I tell the Finder NOT to open those in Preview, but still allow PDFs (not created in Illustrator) to retain Preview as their default?
    I know you can easily do that on an individual basis, I'm looking for a global solution, so I can still double-click the files and have them open in Illustrator.

    Fortunately, for now the OS is recognizing the old icons (from earlier versions of Illustrator). The sad thing is, if I keep those files long enough, I fear the time is coming soon that the OS won't recognize them at all.
    If all they need is an extension, open Automator and create a new application. Then select the Files & Folders group and add the Rename Finder Items action. Click "Don't Add" in the alert that appears, unless you want duplicates made of all files you run this script on! Change the popup that reads "Add Date or Time" to "Add Text" and change the Add popup to "as extension", then type the appropriate extension in the box (minus the period). Save it to your desktop, then drop groups of files that need that extension onto it.
    It's sad the way Apple jettisons the past, dumping support for the legacy of its users' work.
    Nothing in this dumps support for users' work. Those files will continue to work just fine, as long as the application in question (Illustrator) continues to support them.

  • How do I change file Type's

    How can I change my projects that I've done in Printshop - placed them in a folder in my document file - the are in a: Type SIG File - I cannot open them...  Would like to change these documents into a: "Adope Reader X File type.     How can I do this?

    Not really a Reader question, and I guess you are talking about PDF files. I found this in Google:
    http://www.ehow.com/how_5841364_convert-_sig-_pdf.html

  • Open a new File() by Script and set File Type to PDF fails...

    Dear all
    I'm creating a script to download pdf Files from a server and place them into an Indesign Document. Everything works fine except Indesign does not recocnize the file Type when attempting to place the pdf and throws an error that the downloaded PDF File can not be placed due to unknown Filter.
    This is because File type apparently is set to TEXT (Creator is CARO) event though I write the file with
    myFile.open('w',"PDF","CARO");
    Any Idea how to
    - get Indesign set the FileType of a newly generated File to PDF
    or
    - Change the File Type afterwards
    or
    - tell Indesign what filter to use when placing this File?
    Thanks for your help
    BTW: Indesign CS5 (7.0.4), OS X 10.6.8

    Thanks John,
    but I already had the encoding set to binary, that does not seem to be the problem. I can open the generated File with Acrobat, that works, only Indesign can not place it....

  • Change file type classification? mkv as "Movie"

    In short, I would like to make mkv files show up under the class of "Movie" in smart folders and such. I'm assuming that buried in some setting or file there is a list of extensions I can add "mkv" to. I would have thought this was a common question but so far forum trawling has got me nowhere. Can anyone shed some light? The reason, if you care to read is below, but it doesn't have that much bearing on the question.
    I have a sizeable DVD collection, I also have a new job that puts me in hotels 5 weeks out of 6 for training. I don't want to carry them around as they'll get damaged and broken. Last week I left my MacPro chobbling away at encodes and now my entire DVD collection resides on a NAS as well as my shelves. I've created a simple automator finder service that will copy the selected files to a "Films" folder within the Movies folder that I've removed from the time machine backup so as not to waste space. This is set to only show up if the selected items are "Movies". As a consequence, it doens't appear for mkv's.
    I know I can just alter the service to be there permanantly which is what I'll do for now, but it's not a very elegant solution.

    I was able to change the extension in Windows, which then changed the file type. I'm still curious as to how to make the change directly on my MAC.

  • How to change file type associations in SAP ERP 6.0?

    Hello,
    I'd like to figure out how to change the application associated with a given file type in SAP. I want to open a .DOC file, but I am using OpenOffice instead of MS Word. I have .DOC file type already associated with OpenOffice in Windows XP, but SAP doesn't seem to recognize that association. I am using SAP ERP 6.0. Any ideas?
    Mike

    Hi,
    MS Word is mandatory. You will not be able to work using Open Office in SAP.
    Regards,
    Rajesh Kumar

  • Changing file type API to open with Adobe Reader 9.2

    In windows XP, if I go to C:\Program Files\Adobe\Reader 9.0\Reader\plug_ins, it shows the API extension to be File Type AcroExch.plugin
    This seems to be because Adobe Acrobat 5.0 is installed first on the PC, then Adobe Reader 9.2 is installed on the PC.
    On a clean PC, if I install Adobe Reader 9.2, then the file type becomes API file.
    How do I change the file type from AcroExch.plugin to API file?

    I want to do this because I have a 3rd party plugin which will not work otherwise.
    The 3rd party plugin is FileOpen Installer.
    http://plugin.fileopen.com
    If Adobe Reader 9.2 is installed on the PC first, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached JPG Adobe Reader 9 Plugin working.jpg
    FileOpen Plugin works with the above situation.
    Note that it is a 3rd party supplier which sends files which require the 3rd party Plugin FileOpen and a test document is here
    http://fileopen.bl.uk:8008/FileOpenFreeLink-1.0/entryPage.do;jsessionid=FADC8178CCD0236480 199338A79483E7
    If Adobe Acrobat 5.0 is installed on the PC first and the Adobe Reader 9.2, then the folder c:\program files\adobe\reader 9.0\reader\plug_ins looks like the attached Adobe Reader 9 Plugin Problem.jpg and the test file sent by the British Library above will not open.
    You get the following when you try to open the British Library test file (see British Library2.jpg)
    FileOpen is installed as a 3rd Party Plugin in Adobe Reader 9.2 and I can see this under Help About 3rd Party Plugins FileOpen Installer.
    (Note Adobe Acrobat 5 runs via a network install and is not installed onto the workstation so I can't remove it via Add/Remove Programs).
    So I am guessing the problem is to do with the API file type being different when Adobe Acrobat 5 is installed first?
    Thanks,
    Paul

  • Multiple file types to PDF

    I have a need to combine images and documents into a single PDF. Using automator, I am able to make an application that combines selected images in the finder into a pdf, but it doesn't work on text documents. So, I found this application that adds a text to PDF conversion into automator.
    http://www.ironicwolf.com/2009/05/convert-to-pdf/
    However, I have never gotten this converter to work, and I certainly haven't found any way to combine one automator workflow using both of these at the same time.
    With OSX's ability to save just about any file to a PDF from the print menu, I am thinking it should be easier than what I am doing. After all, it's built into the OS, right? So, am I missing something? Is there an easier way to take multiple documents like .rtf and .doc, with images like .jpg and .tif all at once and combine them into a single PDF? I am not stuck on using an automator application, I would gladly purchase reasonably priced software that is capable of doing this, but I have been looking and have been unable to find anything to do what I need. Of course, I found quite a few applications for windows, but nothing for mac. Any help would be appreciated.

    Wow, thanks. That was extremely helpful, but I have a couple questions.
    First, is there a way to make it print to CUPS without opening the default application for the particular file first? For example, I used a .docx file, and it had to open microsoft word to send the job the print. This makers it very unpredictable to decide how much time the automator application will need to pause. If that file were for example, and adobe illustrator file, it would take an incredible amount of time just for illustrator to open. I don't really anticipate needing to do this a whole lot with anything other than text files and standard image types, but is that the only way for those other files to print? I figured that since OS 10.6 can do a quick look preview on just about any file type I use, that the OS would be able to do this without the application actually opening, but it seems not to be the case. Just wondering.
    The other issue is the only real problem, and it's one that I have had whenever I use automator to make PDFs. It always duplicates the job. So, I am getting a combined pdf, but it has the same file in there 2 or even 3 times.
    In automator, I used:
    get selected finder items
    then
    print finder items
    I have verified that it is printing everything multiple times because I see them going into the CUPS folder twice. Then, the final PDF sometimes even has the same doc or image in it 3 times. I have always had this problem with automator and PDFs, any idea how to solve that?
    Other than that duplication issue, this seems like it will work perfectly! Thanks for the reply here!

Maybe you are looking for

  • Report for WIP stock

    Hi Friends The requirement is to generate a report showing the stock of the components in the semifinished stage.   For eg to manufacture a component "X" there are some 6 operations 0010,0020,.......0060(total lead time is around 3months).  Since the

  • Can post Journal at the parent level?

    Hi, Can anyone tell me how to post a journal at the parent entity level? In consolidation, we often do some adjustments at corporate level, how to archieve that via journal? Thanks a lot! Maggie

  • Sales By Style

    Hello - We currently use the query below that shows us sales by stocking unit per month. However, we would like to have a summary view that just shows us the sales by Style # each month.  The Style # is the first four characters in our nine digit sto

  • BI Authorizaion Issue

    Dear Friends, Currently i am doing BI Authorizations. i have copleted creating User, Assing Roles & Authorizations. then i have creating Reporting variable. its working fine. actually i have done authorizations for 0DIVISION Field. at the time of Exe

  • How to use SANE / USB scanners on Solaris 10?

    I would like to use a SANE-enabled USB scanner (Mustek BearPaw 1200F) on Solaris 10, but haven't yet managed to make it work. I gather that on Solaris 10, there's a "libusb" library in "/opt/sfw/lib" and a "sane-find-scanner" program in "/opt/sfw/bin