PiMZ PropSave Xtra: can't open saved file

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

  1. #1

    Default PiMZ PropSave Xtra: can't open saved file

    hello

    i would like to use PiMZ PropSave Xtra but unfortunately i can't open the files that i saved to the harddisk. i used it in authoring mode with director 8.5 on mac os 9.2.

    this is one example: the file "save1" is saved on the harddisk but i cannot open it, with file type description (four letter-file type?) it doesn't work either.

    on mouseUp
    myList=[#one:"cat",#two:"dog"]
    savePropsToDisk(the moviePath & "save1", myList)
    end

    on mouseUp
    myList=[#one:"cat",#two:"dog"]
    savePropsToDisk(the moviePath & "save1", myList,[#type:"TEXT"])
    end

    is there anyone who has experience with the propsave xtra? thanks for your answer.

    simon baumgartner


    SimonBaum webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Illustrator saved pdf files open as blank
      Recently, illustrator CS files saved as pdf's open as blank. Not sure how to track down the cause of this.
    2. Illustrator won't open the SVG file I just saved
      Illustrator CS 11.0.0 under Windows 2000 Yesterday, worked on an AI file tweaking design, etc. Made slices so it can be brought into GoLive. Saved...
    3. PDF with fill-in fields saved in Standard 6 - open in any version of Reader?
      This is a format backwards compatibility question. If I save IRS forms with filled-in fields from Standard version 6.0, will someone be able to open...
    4. Xtra Xtra Xtra User required to download Xtra
      Hi there, this is ghostie* from Berlin, Germany. I am using the Animated Gif Xtra in Shockwave. All tests on my Desktop CPU were successfully...
    5. Open file, make changes, save file, close, re-open, file contents not changed
      I've now run into this several times and it's completely destroyed all of my confidence in Ilustrator CS on Mac. I'm hoping someone can confirm that...
  3. #2

    Default Re: PiMZ PropSave Xtra: can't open saved file

    Try adding .prp to the saved filename:

    savePropsToDisk(the moviePath & "save1.prp", myList)


    I?ve used the propsave extra to save data like this:

    on mousedown me

    tname=member("fname").text
    tfilename=the moviePath & tname & ".prp"
    e=savePropsToDisk(tfilename, Lmatrix)
    if e<> void then alert "error"

    end

    Lmatrix is a list I want to save.
    Fname is an editable text field.
    E checks to make sure there was no error when saving the file.

    I learn?t how to use propsave from a book called Director 8.5 the complete reference by David Mennenoh. I highly recommend it.

    Des



    Desmond22 webforumsuser@macromedia.com Guest

  4. #3

    Default Re: PiMZ PropSave Xtra: can't open saved file

    I recently had a problem with propsave. I solved it by downloading a newer
    version of the xtra. changed from 1.0.3 to 1.0.5.

    If that donīt work for you then you can try the vlist xtra from
    [url]www.updatestage.com[/url] It can do as much as propsave for free. If you pay for
    it you can compress and encrypt the data to be saved.


    Mango



    mango 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