# Problems when sending dynamic data from Flash with Firefox

**URL:** https://forum.kirupa.com/t/problems-when-sending-dynamic-data-from-flash-with-firefox/207263
**Category:** programming
**Created:** [November 16, 2006, 1:45am UTC](https://forum.kirupa.com/t/problems-when-sending-dynamic-data-from-flash-with-firefox/207263 "2006-11-16T01:45:55Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![RavenStorm](https://avatars.discourse-cdn.com/v4/letter/r/8e7dd6/32.png) [@RavenStorm](https://forum.kirupa.com/u/RavenStorm)
#### Post date: [November 16, 2006, 1:45am UTC](https://forum.kirupa.com/t/problems-when-sending-dynamic-data-from-flash-with-firefox/207263/1 "2006-11-16T01:45:55Z")

</div>

Hello, welcome to long subject line!

I’m having problems sending data from Flash using the send command when in Firefox. This is the code I’ve got right now:

```auto

myData = new LoadVars();
submit.onPress = function() {
    if (additionalcomm.text != "") {
        myData.testing = additionalcomm.text;
        myData.send("save.php", "_self", "POST");
        additionalcomm.text = "At least the button works.";
    }
};

```

Technically, it works, but only in Internet Explorer. Any way to fix this problem?

Thanks,  
-Raven~Storm
