Welcome, Guest
  • Author Topic: saving data  (Read 791 times)

    rev

    • Server what's that
    • *
    • Posts: 32
      • View Profile
      • Dirty Style Racing
      • Email
    saving data
    « on: 09/06/02, 22:37 »
    hey again...

    in flash if you want to save data to your server and then reload it again... what would the 'action' script look like?.. because im having problems making one for this flash project im doing... if your looking for more explanations from me... there arent any.. this is the best i can do  :'(
    thenks in adv.

    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re:saving data
    « Reply #1 on: 09/07/02, 04:27 »
    Flash couldn't save the data by itself, need some scripting lenguage (php, asp, jsp ...)
    So usually, Flash call a script and pass the data to it, something like:

    loadVariables("saveScript.php", "dumyMC", POST);

    You could use also loadVars(). In this example, I don't want to load any variables, only store, but loadVariables call my script (that's what I want), and returns nothing, so my dummyMC is out of stage and do nothing.

    If you don't know about back-end scripting, take a look in the backend Forum

    Good luck
    Jorge