Flash doesn't have a way to communicate directly to a database.
Some ideas on what you could do...
Within the Flash movie call your variables, in ActionScript:
loadVariable (URL , target , method);
-
URL, a string specifying the path to the variable source
-
target, a string indicating the path to the movieclip or _level that the variable will be used
-
optional string, either "GET" or "POST"
you can also pass the variables to the flash movie through parameters set on the HTML page.
<param name="menu" value="0">
don't forget your embed tag either
within the embed, menu="0"
hope this helps
you can also try www.ultrashock.com