URGENT-Opening Microsoft Excel and Word files

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default URGENT-Opening Microsoft Excel and Word files

    [In this case I can't avoid having to use excel and word files (I would
    rather PDF).]

    I need to link to a word file, so that when the link is clicked, the file
    opens in Microsoft Word (the full word, not wordpad). The same goes for an
    Excel file.

    I have seen the 'open' command, but I will not always be able to guess where
    the winword.exe application is on the users hard disk, so I will not be able
    to enter the second argument for that command.

    I just need a command that tells the operating system to open the file with
    the default application for that file type, I guess.

    Does this mean I need an Xtra? If so which one is recommended?

    Flash


    flashster Guest

  2. Similar Questions and Discussions

    1. Acrobat 8 Combine Files - Word, Excel = "Problem Files" Any help?
      Hello, I just puchased Acrobat 8 for the Mac specifically to combine multiple files from different programs into one professional document...
    2. #39841 [NEW]: fopen is not opening external urls but opening local files
      From: sarvesh_borkar at yahoo dot co dot in Operating system: FreeBSD PHP version: 5.2.0 PHP Bug Type: Filesystem function...
    3. Macromedia Flash & Microsoft Excel?
      Hi, I too am trying to create a dynamic link between Excel and Flash, but cannot see a 'clean' way of doing this on the client side. I'm not that...
    4. I am new to Illustrator...I need to make my files PDF and moving images to word/excel
      Hi! Long story short - I work for a winery and we had a graphics company design out stationary. They sent us the disk and the files were .ai so we...
  3. #2

    Default Re: URGENT-Opening Microsoft Excel and Word files

    use file xtra 4
    [url]http://www.kblab.net/xtras[/url]

    with something like this code...

    fxObj = xtra("FileXtra4").new()

    put fxObj.fx_FileOpenDocument("c:\Xeno2000.ppt")

    fxObj = 0

    this xtra is free and really useful


    garwspeed Guest

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