How I can lunch My Pdf file from Flash Projector ?

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default How I can lunch My Pdf file from Flash Projector ?

    I need to lunch My Pdf file from Flash Projector and integredi that Pdf in Projector
    [email]intssed@tvnet.lv[/email]
    zabaks Guest

  2. Similar Questions and Discussions

    1. My Flash Media Server 2 won't lunch
      Everytime when i click Flash Media Server 2 it flashes so fast and disappers. Help.... I installed Extension Manager - No Go.
    2. Saving/opening a PDF-file from Flash-projector
      Hi, I need to create a Flash-projector that is run from a CD. That part is quite easily done. But in the projector there should be a button...
    3. Can I save a text file from a Flash Projector?
      Hi, I am using Flash to create a standalone program (the Flash will be published an exe projector). But the program should allow users to write...
    4. xml, mac OSX, and flash projector file problem
      I'm using a component that calls images into Flash from an XML file. Everything works fine on the Web but I need it to work as a projector file on...
    5. Flash file not appearing in projector, help!!
      I made a director movie and have used some flash (.swf files) in there. i have a button that, when clicked, opens another director movie which...
  3. #2

    Default Re: How I can lunch My Pdf file from Flash Projector ?

    To launch a file from the projector, create a folder called fscommand in the
    same folder that the projector file resides in. Now put the pdf in the newly
    created fscommand folder and enter the following into flash: fscommand("exec",
    "pdf_name.pdf"); to execute it from flash. This does not work over the web as
    far as I know. (For that you must use getURL);

    This is of corse assuming that the user has the correct program to launch the
    pdf.

    the dude881 Guest

  4. #3

    Default Re: How I can lunch My Pdf file from Flash Projector ?

    Hi! Thank`s I find WebXtra [url]http://xtras.tabuleiro.com/download/web_old.htmand[/url] open Pdf file in Director Projector
    zabaks Guest

  5. #4

    Default Re: How I can lunch My Pdf file from Flash Projector ?

    Convert PDF to Flash through software can be a better way if you don't mind. Here is a free online converter [url]http://www.axmag.com/submit.html[/url]
    hope this would help.
    treecoin is offline Junior Member
    Join Date
    Aug 2010
    Location
    United states
    Posts
    4

  6. #5

    Default Re: How I can lunch My Pdf file from Flash Projector ?

    two ways I suggested
    1. By actionscript, copy the following code in Flash: on(release){getURL("mypdf.pdf", "_blank");}
    2. You can simply convert PDF to Flash
    Last edited by Ravish; October 22nd at 04:56 AM. Reason: removed spam link
    kavinburns is offline Banned
    Join Date
    Sep 2010
    Location
    US
    Posts
    5

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139