Well here is an overview.
You choose either LoadVars or XML to handle the data communications to a
serverside script likely in ASP since you want to use MSAccess.
LoadVars are for data formatted as URL Vars data format and XML as XML data
format.
Examples in the Flash help are super templates for using these:
LoadVars:
http://livedocs.macromedia.com/flash/8/main/00002336.html XML:
http://livedocs.macromedia.com/flash/8/main/00002879.html On the server side, you select either VBScript or JScript as the scripting
language and you use ASP to receive and send data to Flash. In ASP for
LoadVars it is the Response.write to send data to Flash and
Request("NameOfVar") to read data received from Flash. In ASP for XML you
use Server.CreateObject("Microsoft.XMLDOM") to receive and parse XML data
sent from Flash and Response.write to send XML to Flash.
Then you would likely use the ADO library to communicate with the MSAccess
database. That you use the ASP Server.createObject("ADODB.Connection") code
to get access to the library.
--
Lon Hosford
www.lonhosford.com May many happy bits flow your way!
[quoted text, click to view] "Rob Steiner" <webforumsuser@macromedia.com> wrote in message
news:e1j5be$lk4$1@forums.macromedia.com...
Just starting. I couldn't find any related documentation.