Fscommand() to open a pdf from cd folder...

hi,
need to open a pdf thats inside a cd:
but this doesn't work!?
on (release)
fscommand("exec", "DOWNLOADS\Elefante.pdf");
the DOWNLOAD folder is on the CD root

IndioDoido wrote:
> hi,
> need to open a pdf thats inside a cd:
> but this doesn't work!?
> on (release)
> {
> fscommand("exec", "DOWNLOADS\Elefante.pdf");
> }
> the DOWNLOAD folder is on the CD root
Wish it was that easy :) First of all, FS command CAN'T refer
to any folder so
the DOWNLOADS concept is out.
All the content has to be store in FSCOMMAND folder, it's
flash security feature.
Secondly, that action does not open anything except
executable file.
That's where the name comes from "EXEC", so you can only use
exe, com, bat etc...
You could use BAT file to open pdf but it will prompt the
ugly DOS window even tho
if you set the ECHOE off, something we can't control, pity
because bat is a easy
solution but not so neat if you make commercial work.
Clean solutions are available only with 3rd party tools.
For many years I have been using Flash Jester tool call
JStart. Works like charm
all the way, no extra pop up DOS windows.
http://flashjester.com/?section=tricks_jtools_jstart
JStart will allow you to not only launch a program, but use
parameters to make the
program open files, perform special actions and just about
anything you can use
parameters for. You can also choose to launch files with
their default associated
program.
Another solution is provided by Rick Turoczy, it's pretty old
but it should still
work. Perhaps give it a try.
http://www.flashgeek.com/tutorials/07_launchapp_01.asp
Easy to use tool that allow you to launch basically anything
from the projector.
As long as there is system default application supporting
particle file.
Best Regards
Urami
<urami>
If you want to mail me - DO NOT LAUGH AT MY ADDRESS
</urami>

Similar Messages

  • When trying to open a pdf from a shared network folder I get an error

    hello,
    When trying to open a pdf from a shared network folder I get the error: 'there was an error opening this document the document cannot be found'. The share is on a Windows 7 machine and sharing to a OS X 10.7 Machine. Permisson has been given on the share for 'Everyone' read and Write, and is mapped to the 10.7 machine through the 'Connect to Server' in finder with login credentials.
    Can you help please?
    Kind regards,
    Chris

    This is in Internet Explorer 6 (yes, horrible, I know), but we use a standardized image where I work, with pretty intense GPO's.
    Don't know what happens if you right-click the link; but from any other machine (with the same image) the same link will open with all three options "Open", "Save", and "Cancel".  These are not freshly imaged machines, so some setting must of been changed along the way to make this happen on this user's computer.
    Repaired Acrobat, but this resolved nothing.
    Also checked in IE to make sure that Adobe was enabled under the Programs tab.
    Also, the option to view a pdf within the browser is not turned on.
    Any other ideas?

  • New Mac, fresh install of Mountain Lion When I click to open a .Pdf from a web page,while in Safar, I get a black window Nothing opens in Preview or in Acrobat No option to download

    New Mac, fresh install of Mountain Lion
    When I click to open a .Pdf from a web page,while in Safar, I get a black window
    Nothing opens in Preview or in Acrobat
    No option to download

    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type of copy paste the following:
    /Library/Internet Plug-Ins
    Click Go. If you see this file:  AdobePDFViewer.plugin
    Drag it to the Trash, empty the Trash.
    Quit and relaunch Safari.

  • I can download and open pdfs on my macbook air.  Why can't I open a pdf from a webpage?

    I can download and open pdfs on my macbook air.  Why can't I open a pdf from a webpage?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go > Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I'm trying to open a PDF from Safari with iBooks, but when I choose "Open with ..." in Safari, only Pages and Dropbox show as options.  I'm running iOS 7.1.2 and iBooks 3.2.  Thanks for any ideas!

    On my iPad, I'm trying to open a PDF from Safari with iBooks, but when I choose "Open with ..." in Safari, only Pages and Dropbox show as options.  I'm running iOS 7.1.2 and iBooks 3.2.  I have rebooted the iPad and that did not help, and reinstalled iBooks, which also changed nothing.  Thanks for any ideas!

    Yup, it was uploaded to our school Wiki as a PDF, and Pages did open it.  I was then able to move it to iBooks, but I'd rather avoid the extra steps.

  • I am having an issue with my adobe acrobat 9 pro. Every time I try to open a pdf from someone it opens it up with my free adobe reader rather than the Acrobat 9 pro so then I don't have all of the functions of 9 pro. How do I get it to open with 9 pro ins

    I am having an issue with my adobe acrobat 9 pro. Every time I try to open a pdf from someone it opens it up with my free adobe reader rather than the Acrobat 9 pro so then I don't have all of the functions of 9 pro. How do I get it to open with 9 pro instead of the free reader?

    It may depend on the plugin that is loaded into your browser. However, right click on a PDF and select the Open With option and go to the default button to select Acrobat as the default. That might do it.

  • Opening a pdf from a blob

    Hi Guys,
    I know this is a borderline ApEx problem but I have a page whose sole job is to open a pdf from a blob stored in the database.
    This code works for most client machines:
    DECLARE
    l_blob blob;
    BEGIN
    SELECT letter INTO l_blob
    FROM letters
    WHERE lett_id = :P44_LETT_ID;
    -- owa_util.mime_header('application/pdf',false);
    -- tried pdf and octet they work the same?????
    owa_util.mime_header('application/octet',false);
    htp.p('Content-Length: ' || dbms_lob.getlength(l_blob));
    owa_util.http_header_close;      
    wpg_docload.download_file(l_blob);
    END;
    On some machines I get 'Windows cannot open this file ...File: f[7] ...To open this file..........
    On most machines this works fine.
    I haven't got it to fail with Firefox yet, just IE but only a few machines running IE. Client getting annoyed and I starting to stress.
    Many thanks
    Gary

    Have you already tried adding
    htp.p('Content-Disposition:  attachment; filename...as described here?
    http://download.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32469/up_dn_files.htm#CIHDDJGF
    Maybe it solves the problem, in case IE is a little bit picky. But I really don't know.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Trouble with permission to open current PDF from one user to another user. what is the cure. i am running nthe current Server and updated Os 10.9.2

    Trouble with permission to open current PDF from one user to another  What is the cure ? I'm running the latest Server and OS 10.9.2.

    I had the same problem.
    Try this.
    https://igppwiki.ucsd.edu/groups/publichelpwiki/wiki/a1538/Howto_Disable_Acrobat _as_the_Safari_PDF_Viewer.html

  • How do I open a PDF from an online site?

    HHow do I open a PDF from an online site

    Hi,
    you might find an answer in How to open PDF documents in Adobe Reader (iPad on iOS 7 version)
    thank you

  • How to open a pdf from pdf target with page no using javascript

    Hi
    How to open a pdf from pdf target with page no using javascript
    Thanks in Advance.

    Hello,
    <p>Web.show_document calling .htm files saved on disk.....</p>
    Francois

  • Open a pdf from a buffered stream versus file system?

    With the PDF Library SDK is it possible to open a pdf from a stream versus the file system?

    Yes, but not trivially. You would have to implement your own
    ASFileSys, which is a method for accessing "files". This is a
    collection of methods, rather like an object oriented class, but in C.
    You would have to support get, put, open, random access, file naming
    etc.
    Aandi Inston

  • I'm no longer able to click and open AI file from my folder.

    I’m no longer able to click and open AI file from my folder. 
    Error messege:  Unable to open... insufficient file....
    Evertime I open AI file, I need to reopen the illustrator software and then click the AI file from saved files.
    Please help.

    Not enough information. What OS? What version of AI? Where are the files located? Do they open from the File menu in AI?

  • TRYING TO OPEN A PDF FROM E-MAIL

    when I try to open a pdf from an e-mail it goes to office word and is uninteligible to read. please HELP!

    Sounds like some file association is broken; repair the installation (from Help menu), or uninstall/reinstall Reader.

  • Open an PDF from an iBook

    Hi,
    Is it possible to open an PDF from an iBook, I know I can use an external link but the PDF will be already installed/loaded in the bookshelf.
    Thanks

    Thanks for your response, I thought I might ask just in case there might be a way around the problem.
    Thanks!

  • Cannot open another PDF from within a PDF RDR 9.1

    Hi, all. When I or one of our users tries to open a PDF from a "Table of Contents" PDF , i.e.
    Table of Contents for Job CD30A9
    Guide
    42ACC845.pdf
    42ACC84D.pdf
    42ACC84E.pdf
    42ACC84C.pdf
    The guide opens but not the other documents. The other documents open fine if clicked on individually. They are password protected (all but guide.pdf).
    This is what I get with Process Monitor:
    1:52:45.5500328 PM AcroRd32.exe 2372 RegOpenKey HKLM\Software\Adobe\Acrobat Reader\9.0\Installer SUCCESS Desired Access: Read
    1:52:45.5500859 PM AcroRd32.exe 2372 RegQueryValue HKLM\SOFTWARE\Adobe\Acrobat Reader\9.0\Installer\VersionMax SUCCESS Type: REG_DWORD, Length: 4, Data: 589825
    1:52:45.5501239 PM AcroRd32.exe 2372 RegQueryValue HKLM\SOFTWARE\Adobe\Acrobat Reader\9.0\Installer\VersionMin SUCCESS Type: REG_DWORD, Length: 4, Data: 1
    1:52:45.5501694 PM AcroRd32.exe 2372 RegCloseKey HKLM\SOFTWARE\Adobe\Acrobat Reader\9.0\Installer SUCCESS
    Any ideas?

    Can you insert the PDF file in the Word document in another format to make it clickable in the newly converted PDF?

Maybe you are looking for

  • Insert an anchor in jsp

    Hello ! I would insert an anchor in a jsp to view it on particular place. I've inserted in "page.jsp" :<a name="test"/> I called my jsp in JSPDynPage like : "page.jsp#test" But it doesn't work... Could you help me please ? Thanks. Delphine.

  • Problem in 'create'

    Just starting on Device Central and I am trying to use the 'create' function having selected some Adobe certified devices in the 'test devices' window. (Samsung SC-02C and a few others) I have signed in using my adobe id. Problem: the devices are kin

  • Previewer size in Reports 2.5

    I have this "beautiful" report completed that when run via R25RUN.EXE userid=user/pass@myinstance parmaform=yes module=myreport.rep ... is displayed in an oddly shaped Previewer (too small). I searched all through the reference book and can find no w

  • The number of client access licenses may be reset to five in Windows Small Business Server 2003

    Ran into an issue on the server after the power loss. My Client Access Licenses were reset to 5 with Maximum usage of 12. I have about 25 PC's and Server also hosts exchange, which now prevents users from accessing OWA and local profiles. After diggi

  • New iTunes Software

    I am having real problems with the NEW iTunes software. Not recognising my devices all three of them iPhone and two iPods, no buying from the Itunes store this Xmas then.. Also not loading up after closing down, I have waisted 2 hours of my life tryi