将数组值从 html 传递到 flash 数组

发布于 2024-12-11 08:01:26 字数 326 浏览 1 评论 0原文

有人知道如何将数组值从 HTML 传递到 flash 中吗?好吧,首先我将讨论我在做什么。我编辑了一个 Twitter 小部件 javascript,它根据我需要的主题标签搜索推文,然后将其传递到每条推文的数组上,然后使用每 5 分钟更新一次的

显示它。现在我想在 Flash 上以动态文本显示这些推文。假设我将在我的 Flash 文件中放置 5 个动态文本;我希望每个动态文本都能随机显示基于 HTML 数组的推文。

为了更好地理解(我认为?):

HTML:Var Array --> Flash:Var 数组(如何?)

anyone knows how to pass an array values from an HTML into flash? Well, to begin I'll discuss what am I doing. I edited a twitter widget javascript which search tweets based on the hashtag I needed then passing it on an array per tweet and then displaying it using a <div> it updates once every 5 minutes. Now I want to display those tweets on a dynamic text on Flash. Let's say I will have 5 dynamic text placed on my flash file then; I want each of those dynamic text to have the tweets I have based on on my HTML arrays to be displayed in random.

For better understanding (I think?):

HTML: Var Array --> Flash: Var Array (How to?)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秉烛思 2024-12-18 08:01:26

您可以使用 flash vars 或 php-page 来读取数组。请查看以下链接以获取更多信息:

http://www.actionscript.org /forums/showthread.php3?t=181683

You can use the flash vars or a php-page to read the array from. Have look at the following link for more information:

http://www.actionscript.org/forums/showthread.php3?t=181683

奶茶白久 2024-12-18 08:01:26

您想要的是 AS3 代码中的 ExternalInterface.addCallback( 'funcName', callBackFunc) 函数。然后在 JavaScript 中您可以执行类似 flashObj.funcName( myArray ); 的操作

What you want is the ExternalInterface.addCallback( 'funcName', callBackFunc) function in the AS3 code. Then in your JavaScript you can do something like flashObj.funcName( myArray );

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文