fileXtra 4 -- detecting CD-ROM and opening file from disk

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

  1. #1

    Default fileXtra 4 -- detecting CD-ROM and opening file from disk

    Does anyone know the lingo command for fileXtra 4 to search for a CD-ROM inserted in a Mac, and then locate and open a file from the CD-ROM. I figured out how to do it on the PC, but the same command does not seem to work for the Mac. Any ideas? I have included the script I used for the PC version below.

    -Thanks!

    on mouseDown
    fxObj=xtra("FileXtra4").new()
    put fxObj.fx_VolumeIsCDROM("CDdisk1")
    put fxObj.fx_FileOpenDocument("NOTES.TXT")
    -- 1
    fxObj=0
    end




    Kmpg webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. FileXtra
      Hi all, I am using FileXtra4 to load 3D files from my harddisk to a 3Dworld at my stage. Now, when I try to load another file, the 3D file I...
    2. Supspend opening the file after create pdf file from Adobe PDF
      Every time I create pdf file, the file opens automatically upon completion. I am using v6.01 Pro. Please advise how to suspend the opening the...
    3. Disk error opening some TIFs
      Windows XP and Photoshop 5.5. Some TIF files, possibly made on Macs, will not open in Photoshop - "disk error" is the reason given. There is nothing...
    4. Bitmaps are displaced when opening FH9 file-I need a test file
      Would someone who has reported opening FH 9/10 files in FH MX containing bitmaps that were being displaced please send me a file that displays this...
  3. #2

    Default Re: fileXtra 4 -- detecting CD-ROM and opening file from disk

    In article <bf96ju$i2u$1@forums.macromedia.com>, "Kmpg"
    [email]webforumsuser@macromedia.com[/email] wrote:
    > Does anyone know the lingo command for fileXtra 4 to search for a CD-ROM
    inserted in a Mac, and then locate and open a file from the CD-ROM. I
    figured out how to do it on the PC, but the same command does not seem to
    work for the Mac. Any ideas? I have included the script I used for the PC
    version below.
    >
    On the Mac, the CD will have whatever volume name was chosen when it was
    burned, so there is no need to search for it, like there is on the PC.
    Just use the full path name to the file you need:

    "My Excellent CD:folder:filename.txt"

    Gretchen Macdowall
    [url]http://www.updatestage.com/[/url]
    Gretchen Macdowall 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