2 AIR Questions: Launching applications and Viewing PDFs...

I am thinking of purchasing Adobe Flex Builder 3 and planning to have the app run on multiple platforms.
I have three major questions:
1. In an AIR program, how do I go about opening/accessing Word documents and/or PDF files (whether by launching Acrobat Reader/Microsoft Word or opening it in AIR)?
2. Is it true that an AIR application can not execute other applications? If so, do I need to add a plug-in for that (ie: Shu)?
Regards,
John M.

I am thinking of purchasing Adobe Flex Builder 3 and planning to have the app run on multiple platforms.
I have three major questions:
1. In an AIR program, how do I go about opening/accessing Word documents and/or PDF files (whether by launching Acrobat Reader/Microsoft Word or opening it in AIR)?
2. Is it true that an AIR application can not execute other applications? If so, do I need to add a plug-in for that (ie: Shu)?
Regards,
John M.

Similar Messages

  • I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF's  and I cannot edit them as I could before such as using Tools Comment

    I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF’s  and I cannot edit them as I could before such as using Tools>Comment&Markup or Tools>Advanced Editing>TouchUp Text Tool. All the functions are greyed out. Please advise.

    What's your OS? Acrobat 8 is not compatible with any modern OS.
    On Thu, Jan 15, 2015 at 4:16 PM, thomasc1234 <[email protected]>

  • Auto Launch Application and perform some action

    Hello Friends,
    I am working on Autoback, want to launch application and perform some action to take backup.
    Can any one please update me what all the J2ME phone supports this kind of feature and basic needs to implement Autobackup, any sample code available please let me know
    Thanks,
    Kumar.M.R

    Something sketchy.
    I had the same message appear. It resized my window to the smallest possible size (not minimize!) and when I resized it larger, it had opened a new tab with that message. It was on "c510a1.minersaver1.com" which sounds like a related site. It tried to download "avmast_2004-4_mst5.exe"and I was going to try and refind this site on my Linux box, but forgot to save the exact URL (oops!).
    Running Firefox 4.0b11 on 64-bit Windows 7 Home Premium.
    EDIT: Found a LIVE link
    http://c510a1.minersaver1.com/defender/?44a=pccfjf&8d1ad=glslkkqpgl&eb45=gpqmpkkcmc&03f67=3

  • I can download and view PDF docs on my MAC but can not save or print them - Help !

    I can download and view PDF docs on my MAC but can not save or print them - Help !

  • Security Settings won't reset "Launching applications and unsafe files"

    Hi,
    I'm using Windows 8.1 update 1 with IE.
    I found a very strange problem,
    If I changed the setting of:
    Security tab-> Internet -> Custom level -> Miscellaneous -> Launching applications and unsafe file,
    for example, I changed the setting from default "Prompt" to
    "Enable",
    Then I tried to reset all setting to "Medium-high(default)" at "Reset custom settings",
    The setting I changed above never goes back to its default setting, it keeps the status "Enable".
    All other settings I changed would be reset normally but only this one refuse to be reset.
    B.T.W,  I noticed this because somehow my IE refused to allow me download any exe file, even though I tried to reset the security setting. The only way which could let me reset this is to click the reset button in "Advanced" tab.
    I don't know if this is intended or a bug or something wrong with my PC, but this is dangerous I think, because it made me believe that I have reset my security setting but actually not.
    I tried to scan my PC with windows defender and MalwareBytes and found no threat. Windows update is also in an up-to-date state. I also tried to launch IE as admin then reset the security setting and with no luck.
    I'm worrying about my PC is getting some kind of virus which caused this problem, so if any information will be appreciated.
    Thanks in advance!

    Hi,
    Reset button indeed can't change it as default. I also could reproduce this issue.
    Thanks for your feedback and I have already submitted to our development team.
    If you want to go back to "Prompt" status now, you need to uncheck "Enable" and check "Prompt" checkbox manually.
    Karen Hu
    TechNet Community Support

  • Software Q:iBooks can download and view pdf ebooks?

    software Q:iBooks can download and view pdf ebooks?
    hardware Q:Exist mouse device/drives for ipad?

    software Q:iBooks can download and view pdf ebooks?
    http://support.apple.com/kb/HT4059
    http://support.apple.com/kb/HT4227
    hardware Q:Exist mouse device/drives for ipad?
    No.

  • Newbie question about entity and view objects

    Hi everyone,
    My first ADF application in JDeveloper is off to a difficult start. Having come from a forms background, I know that it is necessary avoid using post-query type lookups in order to have full filtering using F11/Ctrl+F11. This means creating an CRUDable view and getting as much of the lookup data as possible into the view without losing the ability to modify the data. In JDeveloper, I do not know how to build my data model to support that. My thought was to start with a robust updateable view as my main CRUD EO and then create a VO on top of that with additional EOs or VOs. But, I have found that I cannot add VOs to another VO. However, if I link the VOs then I have a master-detail which will not work for me.
    For example, I have two joins to CSI_INST_EXTEND_ATTRIB_V shown in the queries below and need to have that show in the table displaying the CRUD VO’s data. It seemed that the best way to do this is to create a CSI_INST_EXTEND_ATTRIB_V entity object and view object. The view object would have two parameters, P_INSTANCE_ID and P_ATTRIBUTE name. Both the building and the unit are needed on the same record, and this is not a master-detail even though it might look that way. (A master-detail data control will not work for me because I need all this data to appear on the same line in the table.) So, I need help figuring out the best way to link these to the main (CRUD) view; I want as much of this data as possible to be filterable.
    select
    cieav.attribute_value
    from
    csi_inst_extend_attrib_v cieav
    where cieav.instance_id = p_instance_id
    and cieav.attribute_code = 'BUILDING NAME'
    select
    cieav.attribute_value
    from
    csi_inst_extend_attrib_v cieav
    where cieav.instance_id = p_instance_id
    and cieav.attribute_code = 'UNIT NAME'
    Ultimately, I need to display a ton of data in each record displayed in the UI table, so a ton of joins will be needed. And, I need to be able to add records using the UI table also.
    James

    Hi Alejandro,
    Sorry if I caused confusion with my first post. What I had in mind assumed that I could have a single CSI_INST_EXTEND_ATTRIB_V EO with a BuildingVO and UnitVO on top of it. So, I wrote the queries individually to show how I would invoke each view. When I realized that confused the issue, I rewrote the query to explain things better.
    Now having seen your 2 queries. You need to create 2 EO. One for each table. Then create an association between the 2 aeO (this will be the join you are talking about). Then, you need to create a VO based on one of the EO and after you can modify and add the second EO (in here you select the join type).
    After your done with this, youll have 1 VO that supports CRUD in both tables.
    There were three tables in the query: CIEAV_BUILDING, CIEAV_UNIT, and T -- the main CRUD table. When you say that I should create two EOs, do you mean that they are to be for CIEAV_BUILDING and CIEAV_UNIT? Or, CIEAV and T? Assuming CIEAV and T, that sounds like it would allow me to show my building or unit on the record but not both.
    By the way, everything is a reference except for the main CRUD table.
    Look forward to hearing from you. Thanks for your help (and patience).

  • Unable to open and view PDF's

    I am having trouble viewing PDF files from Kno, Dropbox, MegaApp, and also through my online school website. I have tried numerous times with the same end result. Please help.

    Hi harris924,
    Could you please share some of these sample PDFs with us at [email protected] so we could investigate the issue?  Also, please confirm exact steps you're following to reproduce the issue.
    Thanks,
    Gaurav

  • Print pdf and view pdf

    hello
    i am created one pdf file from original pdf file and genereted pdf with data using itext library,but now my problem is how can view this file and print this pdf file using swing printing api

    but how to print?
    Note: Just because the PDF DocFlavor exists doesn't mean you can use it to print a PDF file. When you lookup the PrintService for the PDF flavor,it will report unsupported flavor. That means there is no print service for the flavor. Sun doesn't provide one for PDF files. To the best of my knowledge,nobody else makes one available either. Until such a time as someone does,you can't print PDF files using the new Print Service API.
    ??? is there another way to print a pdf-file directly from filesystem without using the command line like:
    C:\..\Acrobat 5.0\Reader>acrord32.exe/t test.pdf
    thanks for replys
    mfg

  • Table to store the list of BSP Applications and View Names

    Hi,
    Please let me know the tables used to store the list of BSP Application and the corresponding View Names.
    Thanks and Regards,
    Pavithra

    Table name is O2PAGDIR.
    ~Salil

  • Launching applications and opening documents

    Generally there are two ways to start an application and open a document:
    1)double click on the application, us the menu to open the document.
    2)double click on a document, application starts, application loads document.
    In writing a program, how do I do #2. Specifically how does the application determine what document to open? Is it passed in argc or by an event callback?
    Can it only happen using Cocoa and carbon, or can it be done through a command line utility/standard tool?

    It sounds like what you want is create a small Cocoa application that includes the code I posted above and register it as owning the suffix of the dataset. Let's call the application Opener and the suffix .datz.
    When someone double-clicks on a .datz file the Opener application will be invoked and you will get the filepath to the invoking file in the supplied filename. That would give you the path and the opportunity (if you want to get fancy) to ask the user for where to save the data or do any other GUI stuff you want to do. You could also set-up Opener so that when someone opens if by double-clicking the application it asks them to navigate to the dataset they want to open. These things are actually pretty easy to do - check out NSSavePanel and NSOpenPanel - because the Cocoa classes give you a lot of rich GUI all pre-rolled. Then your application could invoke the Unix application from the command line supplying the source path (escaped for Unix) and the even the save destination path if you want to get fancy.
    The application can then Quit itself - possibly after displaying feedback from the Unix app if there is any. Unfortunately while I know this is possible and there are a bunch of Unix commands wrapped in GUI interfaces for OS X - this isn't my strong suit. I know it can be as simple as:
    system("ls -al");
    But it also gets more complicated quickly if you want to do more. Then you need something like NSTask I can't help you the you may need to appeal here for someone with CLI invocation experience.
    http://www.cocoadev.com/index.pl?NSTask
    http://www.borkware.com/quickies/one?topic=NSTask
    This is actually quite do-able. You're diving into the Cocoa GUI a little headfirst because your app is essentially all GUI so there may be some head scratching but its well within the realm of possibility.
    =Tod

  • AIR 1.5, create and print PDF?

    Hi,
    I need to develop an application that is able to print. To file to print is build up during application usage (you can walk trough the application in a linear way). At the end of the app you need to be able to print the printable file.
    Im using AIR 1.5 as the runtime (Flex 3 as development IDE). Can I dynamically create PDF files and print them from AIR?
    Your answer could be as simple as a yes/no but any tips or references to articles are greatly appreciated.
    Thanks a lot for your help!
    Regards,
    Marcel

    It runs fine before, so I don't know if this a bug or a
    change in the way soemthing, such as ".innerHTML" is
    handled.

  • Adobe design question for barcodes and including PDFs

    Hi all,
    I am new to using Adobe LC ES 8.2. I have been reading this forum and it has been very helpful. We have certainrigid requirements for our application that is making it difficult to come up with a clean solution. I am hoping this forum will be able to answer some of my questions:
    Use case: Our application needs to mail correspondence to users (printed PDFs not fillable forms). We plan to use Adobe LC ES Designer to design all the forms and Assembler Service to assemble the documents together. The plan is to merge the templates with XML business data dynamically and then assemble them. When the documents are assembled together, documents to be assembled include Cover Pages Templates, Notice Templates, Attachments (could be templates or static PDFs) and decisions that will be converted into PDF from an RTF document using Adobe Professional 8. The user creates the document in RTF and convert it into PDF using Adobe Acrobat Professional and store it for assembly process. Our Print Shop requires the entire assembled mailing to have bar codes on each of the pages with the following information:
    1 D 3of9 barcode - JOB ID (can be sent dynamically) +  PIECE ID (number of mailing) + SHEET ID (page number with in the PIECE ID - front and back of the page get the same number)
    Following are the questions we have:
    1. What ways are available to apply the bar code to the assembled document as one piece of information in the bar code is the SHEET ID for the entire mailing? I would know the total number of pages only after assembly.
    2. If there is a way to manipulate the barcode information after assembly, I am not sure how we can handle bar coding the Decision PDFs that will be converted from RTF using Adobe Professional 8.
    Please advice.
    Thanks.

    Thank you. So, using Form Services we can manipulate the document (barcode object) after assembly.This is great.I will look into this. When we spoke to Adobe, they wanted us to complete all merge prior to assembly and said we cannot manipulate the document after assembly.
    How would I handle a barcode for a PDF that has been converted into PDF from a RTF document? My concern is that even if the RTF has a barcode, will it be a format that can be manipulated after it is converted into PDF by the user and submitted to the assembly process?
    One of my ideas is to maybe convert this PDF into images and include it in the XML data as base64 images and merge it with an Adobe Form template having image fields. This is not a clean approach and I am very concerned about performance issues with the size of the data XML.
    The other thing I am reading up about is "Underlaying pages" - http://livedocs.adobe.com/livecycle/8.2/ddxRef/wwhelp/wwhimpl/js/html/wwhelp.htm?href=0012 71.html#1548394&accessible=true
    Any ideas?
    Thank you so much.

  • Buying First Generation Air-Question of Heat and Performance

    Do the first generation AIrs handle simple video watching OK and is watching video choppy? Also are the fans very noisy during simple and normal operations like word-processing or internet surfing, or do these machines easily overheat?
    thanks

    Hey all,
    I own a first gen MBA for about 3 months now. It is a highly durable machine and has never let me down. I do all kinds of stuff, from office applications to video editing and even 3d rendering using 3dsmax in a virtualbox running XP on the MBA. I take it almost everywhere I go.
    My experience with heat is, that the most important thing is to keep the vents on the bottom clear. All my slowdowns and heat related issues came when these vents where blocked. I can hook the MBA up to my 1280x720 projector and watch a movie or two without slow down-issues. I put it on the floor and the vents are clear. Temp and fans go up, but no kind of performance problems. If you put it on carpet or on your bed, the problems begin, as than the ventilation gets blocked.
    But, to answer the threadstarters question: performancewise you can do anything on the MBA as you would expect to do on any other Core 2 Duo-CPU. It has two cores, afterall. Problems is: if you cut the airflow to it, one of the cores is shut down.

  • For some reason I cannot download and view PDFs from a website, It works in chrome, but not Firefox, please help.

    When attempting to download a PDF, (detailed bill description) the download appears in the OS X download folder. When attempting to click on that file, a warning comes up that the file is empty.
    When I switch browsers and navigate to the same page, (Chrome), the document downloads and I'm able to view the document.
    I updated the browser to version 33.1, but that didn't help.

    Do you have parental controls enabled on your computer or have other security software that might interfere?

Maybe you are looking for

  • Server 2012 (not R2) RODC fails to install Windows Updates

    Good morning all Since around October, our 80-odd 2012 (non-R2) RODCs have been failing to install windows updates, rolling them back on reboot. Patches that don't require a reboot are fine. The short version is, please log a call with MS and referen

  • How to store the zip file in oracle table?

    hi, How to store the zip file in oracle table ? is it possible to unzip and read the file ? Thanks Rangan S

  • Blue Screen while loading desktop

    HP Pavillion Series P7-1003w Windows 7 Home Premium About 2 days ago I've started having an issue with my comp (HP Desktop, 8gb Ram, x4 Processor, ATI Video Card), It started when I noticed my Windows Firewall had shut down and would not restart, imm

  • Partitions

    Hi all, db:oracle 9.2.0.4 os:solaris 10 we have a 100 + datawarehouse tables. each table is having size of 20 + Gb ,all are partitioned. how to get the below info on oracle partitions. partition name,max value,length,tablespace,compression,rows,block

  • I need to be able to "swap" themes...

    I have two slide decks that have the exact same content but need to be themed differently (different clients, etc). Is there a way for me to "swap" themes so that I only have to update in one place?  When I've attempted this, Keynote seems to not "ma