有关Adobe用于将动画,视频和交互式应用程序嵌入网页的跨平台多媒体运行时的问题。有关内存的问题,请使用标签[flash-memory]。
我正在编写一个简单的Flash游戏,只是为了学习Flash并提高我的数学能力,但我对Radians感到非常困惑,因为这对我来说是新的。 到目前为止我所做的是使用鼠标(单击&a...
我一直在为我正在考虑构建的游戏进行一些快速原型设计。我想做的主要事情之一是生成瓦片类型地图的地图。在生成地图时,我最终使用了大
我已经实现了复制到剪贴板功能。它在 IE 上的所有版本上都能正常工作,但在 FireFox 上却无法工作。请帮我解决这个问题。 详细信息有 <p>我已经实现了复制到剪贴板功能。它在 IE 上的所有版本上都能正常工作,但在 FireFox 上却无法工作。请帮我解决这个问题。 详细有</p> <pre><code><script src="../../Scripts/JQPlugins/jquery.clipboard.js" type="text/javascript"></script> <script src="../../Scripts/JQPlugins/jquery.clipboard.pack.js" type="text/javascript"></script> <script type="text/javascript"> $.clipboardReady(function() { $("input#buttonid").bind('click', function() { var text = $("#url").attr("href") + "\n" + $("#pwd").html(); $.clipboard(text); alert("hi"); return false; }); }, { swfpath: "../../Scripts/JQPlugins/jquery.clipboard.swf", debug: true }); </script> </code></pre> <p>我的代码文件结构是</p> <pre><code>Project > Scripts > JQPlugins > 1. jquery.clipboard.js 2. jquery.clipboard.pack.js 3. jquery.clipboard.swf </code></pre> </question> <answer tick="true" vote="11"> <p>将文本复制到剪贴板的方法是 jQuery 剪贴板插件;它使用 IE 的本机功能将文本复制到剪贴板,但在非 IE 平台上使用 Flash 插件。我敢打赌,您的机器上有 Flash 10,或者至少在您测试 Firefox 的机器上有 Flash 10 - Flash 10 不再允许在没有明确用户请求的情况下进行剪贴板操作,这可能就是您看到它无法运行的原因火狐。 (甚至在插件的发行说明<a href="http://bradleysepos.com/projects/jquery/clipboard/" rel="noreferrer">中提到了这一点。)</a> </p>话虽这么说,人们已经找到了安全限制的解决方法;解决方法包括将不可见的 Flash 影片放置在您选择的 DOM 元素之上,这意味着当用户单击或以其他方式调用该元素来提交数据时,Flash 影片会注册用户采取了显式操作,并允许剪贴板操作。 <p>Zero Clipboard<a href="http://code.google.com/p/zeroclipboard/" rel="noreferrer"> 就是一个提供解决方法的库,但是如果您寻找它们,还有其他库。</a> </p> </answer> <answer tick="false" vote="0"><code>please try the below script for all browsers: chrome/Edge/Firefox </code><pre> </pre>将 id 传递给函数: selectElementContents(document.getElementById("printtext"));<h2> </h2><code> function selectElementContents(el) { var body = document.body, range, sel; $(el).attr("contenteditable", true); if (document.createRange && window.getSelection) { range = document.createRange(); sel = window.getSelection(); sel.removeAllRanges(); try { range.selectNodeContents(el); sel.addRange(range); } catch (e) { range.selectNode(el); sel.addRange(range); } } else if (body.createTextRange) { range = body.createTextRange(); range.moveToElementText(el); range.select(); } document.execCommand("Copy"); window.getSelection().removeAllRanges(); $(this).removeAttr("contenteditable"); $(el).attr("contenteditable", false); </code><pre> </pre>}<p> </p> </answer></body>
如何全屏嵌入 Google 网站上的 Ruffle flash 播放器
我不知道如何在 Google 网站上全屏显示我的嵌入式荷叶边播放器。 作为背景,我正在尝试制作一个个人畅通的游戏网站,供我在学校玩 Flash 游戏,因为...
未压缩的 Adobe Flash XFL 格式仍然保留了大量压缩内容。有人知道这些二进制 *.dat 文件的规范吗?
当我在舞台上播放影片剪辑并分配人员时,如下所示: mv_mc._visible = true / false 它显示或隐藏影片剪辑。我在舞台上只有一个图形元素和 Visib...
我尝试将 youtubetune 播放器包含到社交网络中,但由于某种原因它不会播放它应该播放的 xml 文件。 我通过上传
我正在使用 BalenaEtcher 将 Jetson Nano 图像写入 Pendrive。但我收到以下错误并且闪存失败: 将 JetsonNano.img.xz 写入 VendorCo 时出现问题
我无法访问 ruffle.js 上的代码,当我尝试使用其他方法时,它说扩展已被阻止,但 ruffle 已在这台计算机上运行,有人帮忙吗? “我的”代码是: 我无法访问 ruffle.js 上的代码,当我尝试使用其他方法时,它说扩展已被阻止,但 ruffle 已在这台计算机上运行,有人帮忙吗? “我的”代码是: <!DOCTYPE HTML> <html> <head> <meta charset='utf8'> </head> <body> <div id='ruffle'></div> <script> window.RufflePlayer = window.RufflePlayer || {}; window.addEventListener("DOMContentLoaded", () => { let ruffle = window.RufflePlayer.newest(); let player = ruffle.createPlayer(); let container = document.getElementById("container"); container.appendChild(player); player.load("movie.swf"); }); </script> <script src="https://flash-games.penguinbotcoder.repl.co/ruffle/ruffle.js"></script> <object width="600" height="400"> <param name="movie" value="https://flash-games.penguinbotcoder.repl.co/flashgames/thinice.swf"> <embed src="https://flash-games.penguinbotcoder.repl.co/flashgames/thinice.swf"> </embed> </object> <script src="path/to/ruffle/ruffle.js"></script> </body> <div class=ruffle> </div> <p>This is a test page for flash content</p> </html> 正如我在上面所说的,它只是不起作用:( 我不太明白到底是什么问题,但这是我从你的代码中注意到的: 您正在尝试通过 id container 获取元素,但 HTML 中没有该元素,我认为您尝试使用 id ruffle 的元素。 window.addEventListener("DOMContentLoaded", () => { let ruffle = window.RufflePlayer.newest(); let player = ruffle.createPlayer(); let container = document.getElementById("ruffle"); container.appendChild(player); player.load("movie.swf"); }); 更新: 如果仍然无法正常工作,请尝试此示例代码并查看它是否加载 Flash 内容... <!DOCTYPE HTML> <html> <head> <meta charset='utf8'> </head> <body> <script src="https://flash-games.penguinbotcoder.repl.co/ruffle/ruffle.js"></script> <div id='ruffle'></div> <p>This is a test page for Adobe Flash content</p> </body> <script> window.RufflePlayer = window.RufflePlayer || {}; window.addEventListener("DOMContentLoaded", start_Ruffle, false ); function start_Ruffle() { let ruffle = window.RufflePlayer.newest(); let player = ruffle.createPlayer(); let container = document.getElementById("ruffle"); container.appendChild(player); player.load("https://flash-games.penguinbotcoder.repl.co/flashgames/thinice.swf"); } </script> </html> 确保您的 Ruffle 脚本路径和 Flash 文件可访问,因为我https://flash-games.penguinbotcoder.repl.co/ruffle/ruffle.js和path/to/ruffle/ruffle.js无法访问它们。 当前 Ruffle 的屏幕截图,位于 https://flash-games.penguinbotcoder.repl.co/ruffle/ruffle.js 返回 308 永久重定向 您可以尝试将 Ruffle 路径更新到位于 https://unpkg.com/@ruffle-rs/ruffle 的 CDN 版本或自行托管。 你的代码应该是这样的 <!DOCTYPE HTML> <html> <head> <meta charset='utf8'> </head> <body> <div id='ruffle'></div> <script> window.RufflePlayer = window.RufflePlayer || {}; window.addEventListener("DOMContentLoaded", () => { let ruffle = window.RufflePlayer.newest(); let player = ruffle.createPlayer(); let container = document.getElementById("container"); container.appendChild(player); }); </script> <script src="https://unpkg.com/@ruffle-rs/ruffle"></script> <object width="600" height="400"> <param name="movie" value="https://flash-games.penguinbotcoder.repl.co/flashgames/thinice.swf"> <embed src="https://flash-games.penguinbotcoder.repl.co/flashgames/thinice.swf" /> </object> <p>This is a test page for flash content</p> </body> </html> 请注意,我无法访问您的 Flash 文件。
Adobe CONNECTNOW 如何加载和运行 acaddin?
我正在寻找从我的 Flash 电影下载、安装和运行自定义插件/附加组件(exe 或安装程序)的选项,类似于 connectnow 的做法? 当我们启动屏幕共享时...
我正在使用 SVG 图像加载精灵图像,以便它们可以平滑缩放以匹配设备分辨率。目前我正在天真地渲染每个精灵的 SVG 数据,但我想减少内存...
jffs2(mtd-utils 版本 1.5.0,mkfs.jffs2 修订版 1.60)的最小擦除块大小似乎是 8KiB: 擦除大小 0x1000 太小。最小增加到 8KiB 不过我运行的是 Linux 3.1...
我想从 swf 文件中提取视频并从中制作视频以加载到 youtube(我丢失了原始视频)。 swf是用flash 5-8创建的(不确定是哪一个。我如何检查它是否重要...
ActionScript 2.0:.swf 文件中的输入数据无法将变量正确保存在 .txt 文件中。错误:未定义
我有一个实时聊天系统,是使用 ActionScript 2 在 Flash CS6 中构建的。除了一个实例名称/变量在 .sol 中一直显示为“未定义”之外,一切都运行良好
我试图在随机位置绘制两个圆圈,并在这两个圆圈之间画一条线 - 但flash似乎没有在我的代码中注册圆圈的xy坐标。 我该怎么做? ...
我试图在 vimeo 视频上浮动一个 div,我认为这很简单,但事实似乎并非如此。这是 HTML: <p>我试图在 vimeo 视频上浮动一个 div,我认为这很简单,但事实似乎并非如此。这是 html:</p> <pre><code><div id="wrap"> <iframe id="video" src="http://player.vimeo.com/video/15888399" width="100%" height="100%" wmode="transparent" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> </div> </code></pre> <p>这里还有一个 js 小提琴:<a href="http://jsfiddle.net/wfX55/" rel="nofollow">http://jsfiddle.net/wfX55/</a> <br/> 我已经尝试过 <pre><code>wmode="transparent"</code></pre> 技术,如图所示,但似乎不起作用。是否可以将 div 浮动在 vimeo 视频的顶部?</p> </question> <answer tick="true" vote="4"> <p>您必须将 <pre><code>z-index</code></pre> 与 <pre><code>position: absolute or relative;</code></pre></p> 一起使用 <p><a href="http://jsfiddle.net/wfX55/2/" rel="nofollow">小提琴</a></p> </answer> <answer tick="false" vote="1"> <p>您的 div 是视频的父级,因此位于视频的“下方”。如果你想在视频上浮动一个 div,你最好使用这样的东西</p> <pre><code><div class="parent"> <iframe></iframe> <div class="floatedDiv"></div> </div> </code></pre> <p>使用这个CSS:</p> <pre><code>.parent { position: relative; } iframe { position: relative; } .floatedDiv { position: absolute; z-index: 2; } </code></pre> <p>您还需要设置 Flash 对象的 wmode </p> </answer> <answer tick="false" vote="0"> <p>您似乎对您的 z 索引有点困惑。试试这个...</p> <pre><code><style> #wrap { position: relative; width: 400px; height: 250px; background-color: silver; } #video { position: absolute; z-index: 99999; } </style> <div id="wrap"> <div class="video">Something here I guess</div> <iframe id="video" src="http://player.vimeo.com/video/15888399" width="100%" height="100%" wmode="transparent" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen> </iframe> </div> </code></pre> </answer> </body></html>
CodeIgniter、set_flashdata 重定向后不起作用
set_flashdata 仅在一次重定向后无法直接工作。 我在此过程中使用一个控制器 - Profilers 控制器。它处理会员确认过程,并且还
用于将访客帐户数据从 Adobe AIR 传输到 Unity 的唯一 ID
我正在将我的应用程序从 Adobe AIR 迁移到 Unity。我有许多用户在我当前的 AIR 应用程序中以访客身份登录。当我发布新的 Unity 应用程序时,他们的进度和数据将会丢失。有什么办法
我正在使用 Ruffle 将我的旧版 swf 转换为我的博客。我使用的代码运行良好,但我想让 swf 在加载时自动播放。你能帮助我吗?谢谢。 <p>我正在使用 Ruffle 将我的旧版 swf 转换为我的博客。我使用的代码运行良好,但我想让 swf 在加载时自动播放。你能帮助我吗?谢谢。</p> <pre><code><script src="https://www.sinapsi.org/public/ruffle/ruffle.js"></script> <object width="750" height="550"> <param name="movie" value="https://www.sinapsi.org/public/espressione01.swf"> <embed src="https://www.sinapsi.org/public/espressione01.swf"> </embed> </object> </code></pre> </question> <answer tick="false" vote="0"> <p>谢谢,但我宁愿不碰 ruffle.js。我按照另一位用户的建议使用这些行:</p> <pre><code><script> window.RufflePlayer = window.RufflePlayer || {}; window.RufflePlayer.config = { "warnOnUnsupportedContent": false, "autoplay": "on", "unmuteOverlay": "hidden" }; </script> <script src="https://www.sinapsi.org/public/ruffle/ruffle.js"></script> <object width="750" height="550"> <param name="movie" value="https://www.sinapsi.org/public/mygame.swf" /> <embed src="https://www.sinapsi.org/public/mygame.swf" /> </object> </code></pre> </answer> <answer tick="false" vote="0"> <p>我昨天刚刚解决了这个问题! 您可以向褶边添加许多配置,但文档不太容易理解(或查找!)。 打开 ruffle.js 文件并添加:</p> <pre><code>window.RufflePlayer = window.RufflePlayer || {}; window.RufflePlayer.config = { "autoplay": "on", "splashScreen": false, "unmuteOverlay":"hidden", }; </code></pre> <p>如果您在所有网页上调用 ruffle,那么 swf 将自动播放。</p> </answer> </body></html>
我想要朋友们,当我的MC得到一个确定的内部QUANDRO时,执行以下操作,它会触发另一个MC的功能。例如,当球撞到墙上时,一个人去搜索 - 啦,我有......