从CS3.0中的asp.net页面获取变量值

发布于 2024-08-02 20:18:40 字数 215 浏览 4 评论 0原文

我有一个已发布的 Flash 应用程序(CS3.0),我获得了 Flash HTML 并将其放入 asp.net 页面中。 asp.net页面包含一个公共变量,该变量在页面加载时设置我需要在flash代码中获取此变量值以基于此变量执行一些操作,那么我如何在CS3中获取此变量值.0 应用程序驻留在页面中。

希望我的问题很清楚,如果需要任何插图就可以确定它,我会进一步解释它。

提前致谢

I have a flash application (CS3.0) that is published and i got the flash HTML and put it inside asp.net page.
The asp.net page include a public variable which is set in the loading of the page i need to get this variaable value in the code of the flash to do some operations based upon this variable so how can i get this variable value in the CS3.0 aplpication which resides in the page.

Hope that my question is clear if any illustrations needed just determine it and i will explain it more.

Thanks in advance

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

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

发布评论

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

评论(1

一紙繁鸢 2024-08-09 20:18:40

您可以在您的 aspx 页面上执行类似以下代码的操作,特别注意以下行:
'FlashVars', 'PublicProperty=<% Response.Write( PublicProperty ) %>'

<script language="javascript">
    if (AC_FL_RunContent == 0) {
        alert("This page requires AC_RunActiveContent.js.");
    } else {
        AC_FL_RunContent(
        'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
        'width', '100%',
        'height', '100%',
        'src', 'Game',
        'quality', 'high',
        'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
        'align', 'middle',
        'play', 'true',
        'loop', 'true',
        'scale', 'showall',
        'wmode', 'window',
        'devicefont', 'false',
        'id', 'Game',
        'bgcolor', '#ffffff',
        'name', 'Game',
        'menu', 'true',
        'allowFullScreen', 'false',
        'allowScriptAccess', 'sameDomain',
        'movie', 'Game',
        'FlashVars', 'CID=<% Response.Write( PublicProperty ) %>',
        'salign', ''


        ); //end AC code
    }
</script>

You could do something like the following code below on your aspx page, note inparticular the following line:
'FlashVars', 'PublicProperty=<% Response.Write( PublicProperty ) %>'

<script language="javascript">
    if (AC_FL_RunContent == 0) {
        alert("This page requires AC_RunActiveContent.js.");
    } else {
        AC_FL_RunContent(
        'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
        'width', '100%',
        'height', '100%',
        'src', 'Game',
        'quality', 'high',
        'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
        'align', 'middle',
        'play', 'true',
        'loop', 'true',
        'scale', 'showall',
        'wmode', 'window',
        'devicefont', 'false',
        'id', 'Game',
        'bgcolor', '#ffffff',
        'name', 'Game',
        'menu', 'true',
        'allowFullScreen', 'false',
        'allowScriptAccess', 'sameDomain',
        'movie', 'Game',
        'FlashVars', 'CID=<% Response.Write( PublicProperty ) %>',
        'salign', ''


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