Opening PDF and PPT files without using BuddyApi

Hi, please excuse my newness.
I'm wanting to open pdf and ppt files through Director (I'm using 11.5) but I'm struggling with finding the right code to make it work. I saw that a lot of people are recommending Buddy Api. However I'm cheap and was hoping that there would be a way to open files without having to resort to using/paying for this xtra. Is there a reason why opening files in Director seems to be such a hassle?
Thanks in advance.

I'll also add that from my understanding, an unregistered version of Buddy API can be used in commercial applications.
Buddy API is a great Xtra and if you're going to be developing applications with Director, this Xtra will be a valuable purchase. Buddy Xtra is recommended a lot in the Director forums for a good reason.
Dean
Director Lecturer / Consultant / Director Enthusiast
http://www.deansdirectortutorials.com/
http://www.multimediacreative.com.au

Similar Messages

  • Since I have connected my iPad with the MacBook through ICloud I have problems in Preview of opening PDF- and JPG-files. Does anyone have a solution for this?

    Since I have connected my iPad with the MacBook through ICloud I have problems in Preview of opening PDF- and JPG-files. Does anyone have a solution for this?

    I'm not sure I understand the connection between iCloud and this problem.  Is it simply a problem of coincidental timing (ie, the problem happened after you set up iCloud)?  If so, there's almost certainly no connection between these two events.
    Where are you getting the files you're trying to open, and what specifically happens when you try to open them?

  • Opening JPG or PNG files without using PS

    I want to open simple JPG's without using PS CC.   Previously, I could open JPG's or png files with Apple's Preview; I would like to return to the simple and quick tool of using Preview.
    I have looked and can not seem to find a way to open my JPG or PNG files without using Photoshop.   Can you point me the way to accomplish this?
    Thanks,   Bob

    Joe,
    First, allow me to thank you for your reply.
    Allow me to also explain that I am handicapped and have suffered the effects of five strokes in recent years and then ask for some more help from you.
    When open any JPG image (or png, I think), it automatically opens in Photoshop CC (I also own PS 6).  This is not the desired effect, as I would like to just see the images using Preview, which is the way it used to work (before I acquired the CC application, I believe).
    I quickly tried to open an image using Preview (a PNG screen shot as you suggested), though I at a loss to use 'get info' command as you suggested, nor am I able to see the 'open with' from the drop-down in Preview.  So I have to ask you for more instructions if you can assist me further?
    I live in the Seattle area, if you can call me (I am always at home) at *removed for privacy*.  If you could call me that would be great.  With my impaired communications, I usually can understand verbal information better.
    Thanks again for getting back to me.
    Bob LaBouy

  • Importing PDF and Photoshop files since using Windows 7 64bit

    Hi,
    I recently upgraded (?) to Windows 7 64bit.  I have notices when importing PDF and photoshop files into the InDesign document, the resolution of the graphics are off and the lines are choppy.  Even the fonts are illegible.  What happened?  Are there some settings that I need to into and tweek to bring everything back into alignment and focus?  (If those are the correct words.)  When I view the PDF files in windows, they are normal.  It is only when imported into InDesign that they are distorted.
    Thank you for any help.
    Clark

    I run Maximized, so the window fills the available space (you can set the shortcut properties to open that way so you don't have to do it each time), or you could resize the window from the top, then grabe the title bar and drag it upward on the screen. Windows should remember the size and position, but it may not, being Windows, after all.

  • I'm having trouble opening pdfs and ppt...

    Is there something I need to download to help open these files?

    How are you trying to open them? If they are email attachments, they should open when tapped (those formats are supported by the iPhone OS). Note that the iPhone sometimes has difficulty with large pdf or ppt files.

  • Can't open InDesign and PPT files by double-clicking on them IN A FOLDER

    PPT is MS Office 2004, all other MS programs ok. InDesign is CS4. Files are not corrupt, because they open on two more computers. The computer is brand new. I first installed Office, then CS4. The applications open, but the files don't open when I double-click on them IN A FOLDER. If I go to Open and select the file in the folder, then it opens. If I double-click on it IN A FOLDER, it doesn't open. I tried to do the Info panel thing, where you pick the program for the file, and that didn't work. Also, if I drag the file to the desktop, and double-click on it, it will open. A kind volunteer support person said there was an article about this in MACWorld in Dec. 2009, but I tried the suggestions and it still doesn't work. Basically, I need to use InDesign everyday for world, so this is a major problem.

    I have a client with a similar issue regarding InDesign CS4. When double-clicking InDesign files on the server, the InDesign application will launch but the document will not open. Opening the document using the Open command in the File menu in InDesign works fine. This issue does not occur in any other CS4 application. To further complicate the matter, another user at the same location running the same version of the Mac OS (10.6.2) and CS4 does not have this issue. I have tried a fresh install of Mac OS X 10.6.2 and CS4 but the issue persists. I have tried creating a new user account and using the authentication credentials of the user that doesn't have this issue to connect to the server on the problem computer but still the issue persists. Prior to doing the fresh install, I swapped the hard drives between the two computers, but the problem stayed with the hard drive, not the computer, which is what prompted me to perform the fresh install.
    Have you come across any new information?

  • How to open a text file without using dialog box

    I can open a file using dialog box but I want to open a file without using any dialog box for writing.
    With the following commands a new file is created.
    File outputFile = new File("outagain.txt");
    FileWriter out = new FileWriter(outputFile);
    I want to open an existing file and put some more text in it using FileWriter or any other object
    rgds,
    Arsalan

    import java.io.*;
    class UReader
        BufferedReader in;
        BufferedReader input;
        String fileName;
        public UReader(String fileName)
            this.fileName = null;
            this.fileName = fileName;
            try
                in = new BufferedReader(new FileReader(fileName));
                input = new BufferedReader(new FileReader("A.b"));
            catch(IOException _ex) { }
        public final String getContent()
            String txt = "";
            try
                while(in.ready())
                    txt = txt + in.readLine();
                    txt = txt + "\n";
                in.close();
                txt.trim();
            catch(IOException _ex) { }
            return txt;
        public final String getLine(int row)
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            if(row <= getRows()) {
                try
                    for(int i = 0; i < row; i++)
                        txt = input.readLine();
                    input.close();
                catch(IOException _ex) { }
            } else {
                txt = "Index out of Bounds";
            return txt;
        public final int getRows()
            try
                input = new BufferedReader(new FileReader(fileName));
            catch(IOException _ex) { }
            String txt = null;
            int rows = 0;
            try
                while(input.ready())
                    txt = input.readLine();
                    rows++;
                input.close();
            catch(IOException _ex) { }
            return rows;
    import java.io.*;
    import java.util.*;
    class UWriter
        PrintWriter out;
        String fileName;
        String[] txt;
        static int NEW_LINE = 1;
        static int APPEND = 0;
        public UWriter(String s)
            fileName = null;
            txt = null;
            fileName = s;
            try
                out = new PrintWriter(new BufferedWriter(new FileWriter(s, true)));
            catch(IOException ioexception) { }
        public final void addContent(String s, int i)
            int l = 0;
            StringBuffer sb = new StringBuffer(s);
            s.replaceAll("\n\n", "\n###\n");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            if(i == 0) {
                try
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception) { }
            } else {
                try
                    out.println();
                    for (int j = 0; j < txt.length; ++j) {
                        out.println(txt[j]);
                    out.close();
                catch(Exception ioexception1) { }
        public final void writeContent(String s)
            int l = 0;
            s.replaceAll("\n\n", "###");
            StringTokenizer str = new StringTokenizer(s, "\n");
            String token = null;
            while (str.hasMoreTokens()) {
                ++l;
                token = str.nextToken();
            str = new StringTokenizer(s, "\n");
            txt = new String[l];
            int k = 0;
            String test;
            while (str.hasMoreTokens()) {
                test = str.nextToken();
                if (test.equals("###")) test = "";
                txt[k++] = test;
            try
                PrintWriter bufferedwriter = new PrintWriter(new BufferedWriter(new FileWriter(fileName, false)));
                for (int j = 0; j < txt.length; ++j) {
                    bufferedwriter.println(txt[j]);
                bufferedwriter.close();
            catch(IOException ioexception) { }
    }Maybe they are not the best codes, i wrote them a long time ago, so dont ask why i did anything wierd. :D
    But anyway it works.

  • Error opening pdf and file can't be found,why

    I received an attachment in my BT emails and opened it,then printed it.When I tried to find it so I could copy it to my Outlook emails it had disappeared. Adobe said there had been an error opening it and the file could not be found.What happened and why?
    Hacien

    I described what had happened when I tried to view a pdf, and said that when I found the pdf and tried to open it again, all I had was a message telling me there had been “an error” and as a result the file could not be found. I don’t know if it was hidden or deleted and asked “why did it happen”
    If Adobe does not give me any more information than that, how am I supposed to give any more information?
    It was the first time I had used the Adobe reader, and I was not expecting someone to be so terse in their reply to my query.  As the song says, “Everybody’s  got to learn some-time.” It would be easier if the ones who DO know could remember the time when they didn’t know.
    To avoid further embarrassment, I will withdraw and not attempt to use your forum again.

  • Pdf and vector files will not open in Adobe Illustrator after Yosemite Update

    I updated my OS on recommendation from apple. Pdf and vector files will not open in adobe illustrator now. Am i using the latest OS?

    Linda Feltner wrote:
    > I cannot import or open vector files in Freehand 10. I
    just get large
    > Xs instead of the image. I have a MAC OS 10.3.9,
    Freehand 10. I'm
    > trying to import some small files that are either .ai or
    .eps files
    > (all are vector) that open fine in Illustrator 10 (so I
    know they
    > work), but I can't use them in that program. I've tried
    adjusting in
    > Freehand Preferences the 'convert editable EPS files" ,
    on and off. I
    > tried adjusting the 'Embed...." selection on and off.
    Can anyone tell
    > me what thing I'm doing wrong. I have two files, they
    are map
    > boundaries, that need to scale and adjust their color
    and line width
    > over an aerial map. This can't be difficult, but I must
    be
    > overlooking something. Many thanks in advance. Linda
    >
    Freehand can't convert EPS files into editable vectors. I
    usually run
    EPS files through Illustrator and then into Frehand. If you
    don't have
    Illustrator you can convert the EPS into a PDF and that
    Freehand will
    sometimes convert into editable vectors (though it does
    involve a lot
    more clean up than going through Illustrator.)

  • PDFs and Word Files open on iMac but not Macbook Pro

    I own an iMac and a MacBook Pro. Recently, I've been having an issue with some PDFs and Word files that have been emailed to me from different contacts. All open—and can be seen using Quick Look—on the iMac. However, on the MacBook Pro it's a different story. When I try Quick Look all I see are the icons. When I try to open the PDFs in Preview (default app for me) I get an error message saying the file could not be opened and might be damaged. When I try to open the Word doc in Word, Pages or Bean I see all of the extraneous header information etc and the text is all mixed up in that formatting junk. I have repaired permissions, cleared out my user cache, restarted—pretty much everything I can think of. But no luck. Thought?

    Brilliant suggestion! I checked all the display settings on my iMac 27" and confirmed they were the same settings as my MacBook -- until I checked the Window 7 screen resolution. Because of its size, I had expanded the screen across most of the monitor. When I changed the resolution to one suggested or configured by Windows, Approach worked fine. I've now tested it on quite a few of the settings, and as long as I let Windows determine the best resolution (on my iMac 27" it seems to be 2043 x 1276), Approach works like it should. Thank you!

  • Saving a Text data to a PDF file without using print option

    Hi,
    I want to save a Text to a PDF file. I want to assign the path of the PDF file as a default one.
    If I use Print options, then it ask for the file path at the run time.
    Is there any method to save to a PDF file without using print option in Labview 8.2.
    Regards,
    Raja

    This question comes up a lot. Did you try searching? It depends on the PDF printer driver that you're using. See here, here, here, ...

  • I use a PC - I need to open ai and eps files - what adobe program do I need to purchase?

    I use a PC - I need to open ai and eps files - what adobe program do I need to purchase?

    You need Illustrator to open .ai files. That is, if you want to edit them.
    If you just need to place them, then tell us what you want to do with the files.

  • Is there any way to force the applet to load the file without using cache?

    Hi,
    I have the applet that renders some data from a file specified as the parameter. The problem is that the user can do something, that changes the input file and reloads the page, but the applet renders old data (from browser cache most probably)
    Is there any way to force the applet to load the file without using cache?
    Regards,
    Zdenek

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Saving report as PDF and text file

    Currently, I saved my report as PDF. It opens in Acrobat reader automatically when the report is executed. Is there a way for me to save it as PDF and as a text file at the same time? (without having to open the file in Acrobat reader and saving it)

    You can add your PDF and TEXT file formats to a distribution list (Instead of GENERATE REPORT TO A FILE). To do this:
    1. Go to your Object Navigator and highlight your report.
    2. Right click on your report. Select Property Palette.
    3. Select Distribution
    4. You can add of of the formats that you want to print or save to the report to.
    5. You will have to add Distribution Id (any number starting with 1) where you want the file to be saved (c:\my_reports\inventory.pdf), the type of file: PDF and how many copies you want: 2
    6. Click OK after finishing...
    To make it work ... You would highlight your report from your Object Navigator and then choose FILE-DISTRIBUTE and this will save it to all the files your specified and/or printer.
    null

  • Where does workspace store the pdf and excel file ?

    Hi,
    I'm working on a Web Analysis project and I have created a dynamic web menu based on the workspace repository to improve the poor capacities of WA in terms of menu. I use the javascript API to control the WA applet from the menu.
    Now my problem is that my customer created a folder in workspace (which is translated into a sub menu of my dynamic menu), and that folder contains pdf and excel files. The function openFile which I use to open report in the applet doesn't work on pdf and excel files. So I've been looking for the files on the server, to know where they are stored, so that I could just modify the java class that generates the menu.
    I couldn't find those files on the server. Where are they ? Are they stored in the database as an xml string like the report s ? If yes then I might have a problem.
    Has anyone already done this ?
    Thanks for your help.
    Cyril

    Tomcat stores it in the work dir under $TOMCAT_HOME.
    There'll be directories like localhost%2f<urcontext>..
    As for as JSP changes being recognized, try refreshing ur browser....

Maybe you are looking for

  • How do you tell what RAM chips your RAM has without seeing the actual chips?

    I was wondering about the possibility of actually having Winbond chips in Corsair RAM as I have the Corsair TwinX 1024 DDR3200LL RAM and my system has been completely stable for a month and a half with no BSODs.  Granted, I have not yet overclocked,

  • Received email from contact has my name as sender and receiver

    My mother and I email each other . She uses gmail , I use hotmail . Past week all mail sent by me to her has her name as sender and receiver in her in box . When I check my sent mail file it has my name as sender . She only has this problem with my e

  • Chart conditional formatting

    Hi All, In a report for one of our our customers I've created a line chart. When this line passes a certain value I would like to change it's color from there on and further. Let say my threshold is 40 then I would like to have another color for 2010

  • Edited file not Visible in Organizer

    PS10. when using the organizer I  clicked on full edit saved the file.  The file is no longer visible in the organizer.  File icon shows a broken file.   It is visible with other prgms.  I can see the edited file say in Win explorer etc.

  • Intercompany transactions between Multiple set of books

    Hi, We are trying to figure out a way to do Intercompany transactions across different set of books. How can we achieve this? Any pointers in this direction would be helpful Regards Bala