将数组值从 html 传递到 flash 数组
有人知道如何将数组值从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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
您想要的是 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 likeflashObj.funcName( myArray );