Hi Kyle1. That'll be great if you can! So far, I have found a tip somewhere else, whereby the person was saying that all that needs to be done to pass variables from a Flash form is to create the Flash form, and take note of the name of the input fields you create. Create a button with an actionscript like so :
on (release) {
getURL ("
"", "POST"

;
}
whereby Notes fx.nsf is the db name, under the folder notesfx. You can find more info on how to derive the URL from the Designer Help db in Notes, basically you're creating a new Notes document when clicking on this button.
Import the swf into a Notes form (how to do this is in the first thread I posted), and at the bottom of the Notes form, create Notes fields with the exact same name & type as the fields on the Flash form. Hide the Notes fields when viewed from a web browser. Create a view in the Notes db so that you can see the documents you create. Try opening the form in Internet explorer, fill in the fields, and click on the button. It should save the document and you can view the entries from the Notes fields when you open the doc from the db view.
So far, that's a one-way interaction (Flash->Domino), but I haven't tried doing it the other way (Domino passing values to display on the Flash site). I also don't know if this is an effective way to do this, or if the JavaScript method is better (provided we can get it to work!)