write value from flash file to an external file

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

  1. #1

    Default write value from flash file to an external file

    how can I write value from flash file to an external file like (text file or xml file)
    art-v Guest

  2. Similar Questions and Discussions

    1. Flash Player won't write .SOL file
      Using a downloaded flash player application (game called telescope from www.dyson.uk.com) on three different computers. All computers running XP...
    2. advice needed... cf write data to xml file for use in flash app thatuses xml file
      I'm wondering if it is possible to use CF to: 1) connect to existing db; 2) get specific data from table; 3) write it to an xml file that would...
    3. Write to file with flash
      Hi I know how to read from a file with flash, but how can i write to a file? desperate ohad (ohad_m@msn.com)
    4. How to open external file in Flash 5 or MX???
      Please help me I have presentation do finish ?? Thanks...
    5. External jpg file in Flash movie
      I 've just bought a webcam which uploads an image to my server every 30th second. Now I'd like the flash movie to link to that image on the...
  3. #2

    Default Re: write value from flash file to an external file

    You can store data on the client side or the server side.

    1. On the local client you can use something in Flash that is the equivalent
    to cookies. That is the ActionScript SharedObject class.

    Basically the user has control over allowing or disallowing the writing of
    the data in this case.

    Here is an example I have posted for training seminars I conduct:
    [url]http://www.hosfordusa.com/ClickSystems/courses/flash/examples/SharedObjects/Ex01/SharedObjectsEx01_Doc.php[/url]

    2. On the server then you use server side scripts to do the work writing to
    either files or databases. For the Flash side you use either LoadVars or XML
    Actionscript classes to communicate with the server side script.

    Here is an example that demonstrates Flash XML Actionscript class
    communicating with a PHP script and echoing the data back. It also writes
    the data to a file. The problem of course writing to files on the server is
    that the last user to use the Flash movie will overwrite the file with the
    new data unless you are creating a log type of app were you continuously
    append the data to the file.

    --
    Lon Hosford
    [url]www.lonhosford.com[/url]
    May many happy bits flow your way!
    "art-v" <webforumsuser@macromedia.com> wrote in message
    news:dop1a0$5ko$1@forums.macromedia.com...
    how can I write value from flash file to an external file like (text file or
    xml file)


    Motion Maker Guest

  4. #3

    Default Re: write value from flash file to an external file

    Forgot the link for the Flash XML to PHP into a serverside file and back to
    Flash XML:
    [url]http://www.hosfordusa.com/ClickSystems/courses/flash/examples/XMLPHP/EX01/XMLPHPEchoEx01_Doc.php[/url]

    --
    Lon Hosford
    [url]www.lonhosford.com[/url]
    May many happy bits flow your way!
    "Motion Maker" <macromedia@osfordusahay.com> wrote in message
    news:dopp9j$4tl$1@forums.macromedia.com...
    You can store data on the client side or the server side.

    1. On the local client you can use something in Flash that is the equivalent
    to cookies. That is the ActionScript SharedObject class.

    Basically the user has control over allowing or disallowing the writing of
    the data in this case.

    Here is an example I have posted for training seminars I conduct:
    [url]http://www.hosfordusa.com/ClickSystems/courses/flash/examples/SharedObjects/Ex01/SharedObjectsEx01_Doc.php[/url]

    2. On the server then you use server side scripts to do the work writing to
    either files or databases. For the Flash side you use either LoadVars or XML
    Actionscript classes to communicate with the server side script.

    Here is an example that demonstrates Flash XML Actionscript class
    communicating with a PHP script and echoing the data back. It also writes
    the data to a file. The problem of course writing to files on the server is
    that the last user to use the Flash movie will overwrite the file with the
    new data unless you are creating a log type of app were you continuously
    append the data to the file.

    --
    Lon Hosford
    [url]www.lonhosford.com[/url]
    May many happy bits flow your way!
    "art-v" <webforumsuser@macromedia.com> wrote in message
    news:dop1a0$5ko$1@forums.macromedia.com...
    how can I write value from flash file to an external file like (text file or
    xml file)


    Motion Maker 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