Save Photos from CD To Hard Drive

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

  1. #1

    Default Save Photos from CD To Hard Drive

    I have seen a CD where there is a catalog of photos, you can choose either
    hi-res or lo-res photos and click a "save" button. The windows Save dialoge
    comes up and I can save the photo to where I want it on my hard drive.

    Any ideas on how this was done in Director?

    JP Heidi Guest

  2. Similar Questions and Discussions

    1. Where is that hard drive?
      On Thu, 02 Feb 2006 05:59:29 +0000, Walter Mitty wrote: I don't understand why gparted wouldn't show anything but I'd use mount anyway. ...
    2. Save Quiz scores on the users hard drive
      I have developed a whole series of quiz?s using the Flash Learning extensions. These are part of our CBT refresher certification program for the...
    3. save projector to hard drive
      hello i would like to give the user the option to install a director projector to their hard drive. i am a newbie to director and don't really...
    4. new hard drive--now what?
      Well, just to be sure, I would set it up from Scratch again and download and install your plugins also. There may be a way, but I wouldn't trust it...
    5. how hard to replace titanium internal hard drive? How to cloneold hard drive onto it?
      Hi all - I have a 2001 titanium laptop with a 20 Gig hard drive. The thing is getting too full and I'm toying with the idea of getting a bigger...
  3. #2

    Default Re: Save Photos from CD To Hard Drive

    You will need an Xtra to save out binary data to a file. Check out binaryIO at [url]www.updateStage.com[/url]
    Charles Parcell Guest

  4. #3

    Default Re: Save Photos from CD To Hard Drive

    The free FileXtra4 xtra can copy external files from the
    CD to a selected drive, using external image files is the inexpensive
    way out, the xtra could use the actual fileName property of a linked
    external member to locate the file.


    There is a commercial xtra that can export director images to a newly
    created file, should there be some special security reason not to use
    external files.
    JB Guest

  5. #4

    Default Save Photos from CD to Hard Drive

    My original question:

    I have seen a CD where there is a catalog of photos, you can choose either
    hi-res or lo-res photos and click a "save" button. The windows Save dialog
    comes up and I can choose where I want to save the photo to.

    JB Replied using fileXtra4 would do the trick, however:

    fx_FileCopy seems to copy to a pre-specified location (I want a
    user-interactive function)

    fx_FileSaveAsDialog gives me a user-interactive window so that I can save a
    file where I choose, but I am confused as to what file it is saving?

    Any other ideas? Thanks.

    JP Heidi Guest

  6. #5

    Default Re: Save Photos from CD to Hard Drive

    You should be able to accomplish the task using those 2 functions a
    little experimenting with sample code should get you on track.

    fx_FileSaveAsDialog should give you the full destination path for
    fx_FileCopy.


    I am not looking at FileXtra4 commands, in general you provide the
    default file name to fx_FileSaveAsDialog, the user can select the
    destination folder and optionaly rename the file in this dialog, then
    just provide fx_FileCopy the full path to the source file on the CD and
    the destination path given by fx_FileSaveAsDialog.

    To avoid the user renaming the file as it's copied one idealy would use
    a folder select dialog function, these are not commonly available in
    xtras, it's possible, using string manipulation to ignore the filename
    entered by user, replacing the end of the fx_FileSaveAsDialog returne
    path with the normal file name.
    JB 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