What I have is an html textarea that uses hidden inputs to direct how to process the text and code into an existing database. I have been attempting to replicate this in flash, but I haven’t been able to find any resources to even help me really get started. So if you know of a good place to find a tuturial or other reference on this subject, feel free to just link me to that rather than adressing my specific issue. I’ve looked, but unsuccessfully.
So in html, I have 4 components.
The first component defines how to post to the database.
<form method="post" action="index.cfm?fuseaction=user.Confirm">
The second component is a hidden unique user ID.
<input type="hidden" name="userID" value="(ID goes here)">
The third component is the text input.
<textarea name="userinput" (textarea formatting was here)></textarea>
And the fourth component is the submit button.
<input type="submit" value="Post To Database">
If you could help me learn how to use flash to post to the database in the same manner, I would greatly appreciate it.