PDA

View Full Version : Passing info. with Flash MX and Access


columbus
04-17-2003, 01:54 AM
I would really appreciate if someone could help me (a beginning Flash programmer) to figure out how to pass information back and forth using Flash MX and a MS Access database.

Let me know of any ideas. Thanks.

betaruce
04-17-2003, 03:28 AM
you need ASP

columbus
04-17-2003, 04:22 AM
Could you by chance explain how to do it using asp.

betaruce
04-17-2003, 06:53 AM
um....
basically you do all query or other server behaviours using ASP
then use asp to output the result and pass to Flash
in Flash there are various script for reading these data (e.g. loadvariable)

u could do a search in google to find some tutorials

flashdudette
04-30-2003, 05:09 PM
Like he said use ASP.
You write your manipulations in ASP and in Flash, if you want flash to get a variable use:

loadVariablesNum("youraspfile.asp", 0);[AS]

if you want to send a variable use:

[AS]loadVariablesNum("anotheraspfile.asp", 0, "POST");

Hope this helps.

flashdudette
04-30-2003, 05:10 PM
Like he said use ASP.
You write your manipulations in ASP and in Flash, if you want flash to get a variable use:

loadVariablesNum("youraspfile.asp", 0);

if you want to send a variable use:

loadVariablesNum("anotheraspfile.asp", 0, "POST");

Hope this helps.