# Loading params/vars into flash from html

**URL:** https://forum.kirupa.com/t/loading-params-vars-into-flash-from-html/264687
**Category:** Uncategorized
**Created:** [June 28, 2008, 6:50pm UTC](https://forum.kirupa.com/t/loading-params-vars-into-flash-from-html/264687 "2008-06-28T18:50:34Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![vsiege](https://avatars.discourse-cdn.com/v4/letter/v/db5fbb/32.png) [@vsiege](https://forum.kirupa.com/u/vsiege)
#### Post date: [June 28, 2008, 6:50pm UTC](https://forum.kirupa.com/t/loading-params-vars-into-flash-from-html/264687/1 "2008-06-28T18:50:34Z")

</div>

Loading variables from swf object into flash

---

<div class="post-metadata">

### Author: ![Alex\_Lexcuk](https://avatars.discourse-cdn.com/v4/letter/a/919ad9/32.png) [@Alex\_Lexcuk](https://forum.kirupa.com/u/Alex_Lexcuk)
#### Post date: [June 29, 2008, 7:18am UTC](https://forum.kirupa.com/t/loading-params-vars-into-flash-from-html/264687/2 "2008-06-29T07:18:49Z")

</div>

```auto

//first-frame
 
//create reaction from javasctipt function text_for_swf(String)
var newText = ExternalInterface.addCallback("text_for_swf", /*null,*/ func_external_text);
//JAVASCRIPT I AM [SIZE=2]LISTEN YUO[/SIZE]
function func_external_text(newVal) 
{
my_txt.text = newVal;
}

```

[http://dnadillo.dn.ua/fla/js-swf-html/local-connection-flash-var-javascript.html](http://dnadillo.dn.ua/fla/js-swf-html/local-connection-flash-var-javascript.html)

[SIZE=2]IE7.0 - \> ruling button mouse viewing html code[/SIZE]

[http://dnadillo.dn.ua/fla/js-swf-html/js-swf-html.zip](http://dnadillo.dn.ua/fla/js-swf-html/js-swf-html.zip)

---

<div class="post-metadata">

### Author: ![vsiege](https://avatars.discourse-cdn.com/v4/letter/v/db5fbb/32.png) [@vsiege](https://forum.kirupa.com/u/vsiege)
#### Post date: [June 30, 2008, 4:03am UTC](https://forum.kirupa.com/t/loading-params-vars-into-flash-from-html/264687/3 "2008-06-30T04:03:13Z")

</div>

Thanks for your help.
