flashvars

KindEditor&ckplayer的简单结合

邮差的信 提交于 2020-04-07 05:01:34
原贴发表在我的 个人博客 haha.tk | Ha?Have a Talk! 上,转载请注明出处,谢谢。 链接   ckplayer 6.7: http://www.ckplayer.com/bbs/forum.php?mod=viewthread&tid=10864   KindEditor4.1.10 (2013-11-23): http://kindeditor.net/down.php   参考教程: 关于kindeditor整合万能的ckplayer视频播放器插件   因项目需要,现将KindEditor与ckplayer相结合,利用ckplayer播放由KindEditor富文本编辑器上传至服务器的视频。 KindEditor   KindEditor的安装与配置这里不做多余介绍,具体参考 《官方文档-编辑器使用方法》 。 ckplayer的配置   上传相关文件到编辑器的插件目录即 editor/plugins/ckplayer ,基本的文件包括 ckplayer.js 、 ckplayer.swf 、 ckplayer.xml 、 language.xml 和 style.css 。 修改格式验证代码   修改kindeditor.js的960行左右的上传功能的格式验证代码,加入需要支持的视频格式: function _mediaType(src) { if (/\

How do I access flashvars in AS3, and add them to an existing text field?

情到浓时终转凉″ 提交于 2020-01-11 08:56:12
问题 Edit: I've come to realize the main problem I'm facing is that I want a text field that already exists in a movieclip or on the stage to take the string from a flashvar. For some reason it will not do that. How do I make a pre-existing text field change to match the flashvar text? Html: <div id="flashContent"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="29px" id="egnewsTicker" align="middle"> <param name="movie" value="egnewsTicker.swf" /> <param name=

How to pass parameters to a Flash projector (Windows)?

不羁岁月 提交于 2019-12-23 18:43:55
问题 Is there any way to pass command line parameters to a Flash projector in Windows? I have another application (in this case, an installer) that will need to communicate to a Flash projector (the same way flashvars work). I wasn't able to find any information online (everything seems to be focused on using FSCommand parameters for executing future projectors, which doesn't help me with calling the original one)... 回答1: I'm fairly sure that standard Flash projectors can not do this. However,

Flashvars to stop flash movie reloading on page reload

家住魔仙堡 提交于 2019-12-20 05:49:42
问题 I have a flash banner on every page in my site. I want it to continue playing rather than reloading when users change pages. Ive read that this can be achieved using flashvars, however, its been quite some time since I did any actionscripting. I've tried looking up tutorials to no avail. Can someone point me in the right direction please. UPDATED Thanks for your comments. I have this on frame 1 of my fla file now: var mySharedObject:SharedObject = SharedObject.getLocal("displayCookie"); if

Passing variable FROM flash to HTML/php

≯℡__Kan透↙ 提交于 2019-12-19 12:06:15
问题 I was hoping maybe someone could provide some insight on a problem I'm having a tough time deciding how to solve. I have a rather simple flash application users can make a quick username when connected, and the username is created inside the flash swf. Now, I have a cron job deleting inactive usernames every ten minutes (on my mysql database where these usernames are all stored and accessed by the other people online) which is fine. But it can still get cluttered up if a bunch of people sign

Passing variable FROM flash to HTML/php

三世轮回 提交于 2019-12-19 12:06:09
问题 I was hoping maybe someone could provide some insight on a problem I'm having a tough time deciding how to solve. I have a rather simple flash application users can make a quick username when connected, and the username is created inside the flash swf. Now, I have a cron job deleting inactive usernames every ten minutes (on my mysql database where these usernames are all stored and accessed by the other people online) which is fine. But it can still get cluttered up if a bunch of people sign

FlashVars QueryString

社会主义新天地 提交于 2019-12-12 23:33:22
问题 I'm unclear on the proper format for passing a QueryString Value using FlashVars, this is what I'm trying <param name="FlashVars" value="part=<%= Request.QueryString["part"] %>" /> but this causes a parse/encode error and the swf doesnt load, same if I use single quotes ie <param name="FlashVars" value="part=<%= Request.QueryString['part'] %>" /> Any takers? Cheers 回答1: If you are working with HTML, use the variable itself: <param name="FlashVars" value="part=valueOfPartGoesHere&anotherPart

passing parameters to a swf via Loader

有些话、适合烂在心里 提交于 2019-12-10 08:00:55
问题 I have a swf (child.swf) that I wish to load into another (parent.swf). I wish to pass a parameter to child.swf through the loader I am using. Note that I am not trying to pass FlashVars that parent.swf already has , but rather I am trying to simply load a swf through another swf with custom arguments. 回答1: In the child swf, write a function (init in the code below) to receive any params. When the Loader signals Event.COMPLETE, call the function from parent.swf as follows: var request

Send POST request with x-amf (Flash) request header

烈酒焚心 提交于 2019-12-08 09:10:36
问题 I'm trying to reproduce a POST request that was captured from WireShark using PHP. This POST request was sent by a Flash (.swf) object, so it's a little bit complicated in configuring the header. It does not print out anything in the end, so there must be something wrong with PHP code that I could not see. Here is what WireShark captured: POST /engine/ HTTP/1.1\r\n Host: abcdef.com\r\n User-Agent: Mozilla/5.0 (X11; Linux i686; rv:2.0) Gecko/20100101 Firefox/4.0\r\n Accept: text/html

passing parameters to a swf via Loader

旧时模样 提交于 2019-12-05 13:40:29
I have a swf (child.swf) that I wish to load into another (parent.swf). I wish to pass a parameter to child.swf through the loader I am using. Note that I am not trying to pass FlashVars that parent.swf already has , but rather I am trying to simply load a swf through another swf with custom arguments. In the child swf, write a function (init in the code below) to receive any params. When the Loader signals Event.COMPLETE, call the function from parent.swf as follows: var request:URLRequest = new URLRequest("child.swf"); var loader:Loader = new Loader(); loader.contentLoaderInfo