flash

Is SWFUpload still alive?

筅森魡賤 提交于 2019-12-20 17:29:44
问题 I'm considering using SWFUpload on my site, but I saw that the last release was in March 2010, and it was a beta. It looks like the SWFUpload people stopped there development. Is this project still alive? Is there an alternative? 回答1: In my opinion, SWFUpload looks pretty dead... No Issue updates since June 2010 at Google Code... http://code.google.com/p/swfupload/issues/list There IS lots of recent activity at the official SWFUpload discussion forum. Have you asked there yet? http://groups

swfobject play/pause/stop

霸气de小男生 提交于 2019-12-20 15:32:13
问题 Good day. Code: <object id="ItemEditAnimationObject" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="580" height="370"> <param name="movie" value="./6.swf"> <!--[if !IE]>--> <object id="ItemEditAnimationObject" type="application/x-shockwave-flash" data="./6.swf" width="580" height="370"> </object> <!--<![endif]--> </object> <div id="PlayPause" class="Play"></div> <div id="Stop"></div> Js: function OnePlay(){ swfobject.getObjectById('Object').Play(); } function OnePause(){

Why is Flash so hard on the CPU?

浪尽此生 提交于 2019-12-20 14:05:11
问题 Recently I hear Steve Jobs citing this as a main reason to not have Flash on IPADS 回答1: In the general case, Flash isn't hard on the CPU, Flash contents are hard on the CPU. People don't usually use Flash to display static text and bitmaps, they use it for vector animations and video and RIAs with custom-skinned components, and compositing all those vectors and gradients and alpha channels takes CPU - regardless of whether you use Flash or HTML5 or Silverlight or JavaFX or whatever. Feel free

Play video from local file using Adobe AIR

别说谁变了你拦得住时间么 提交于 2019-12-20 11:33:11
问题 I'd like to play videos, as well as display images and possibly other flash content using adobe air, and reading from the local file system. I've been searching APIs and I have not yet been able to connect the dots. I know of flash.filesystem.File and flash.filesystem.FileStream and have experimented with loading and reading files. I believe I can load images this way but haven't tried. As for video: mx.controls.VideoDisplay - seems to accept a file:// URI for source, but I can't get it to

Reverse Engineering Flash [closed]

前提是你 提交于 2019-12-20 09:59:44
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I have some Flash SWF files that I need some insight into how they are working. Are they any good tools out there to reverse engineer

touch events vs mouse click events using actionscript 3

让人想犯罪 __ 提交于 2019-12-20 09:42:16
问题 Just wanted to ask if there is any advantage for either using mouse click event or touch tap events, when writing apps for mobiles or tablets (for the iphone especially)? I know that both of them should work fine, but in term of performance, is anyone better? Are there any things I should be aware of when choosing either? By the way am using actionscript3 to implement the app. 回答1: This is probably the best documentation on Adobe AIR touch support: http://help.adobe.com/en_US/as3/dev

How to add link to flash banner

这一生的挚爱 提交于 2019-12-20 09:25:54
问题 I am primarily a developer and dont know to use Adobe Flash CS4. Is there a simple way to add link to flash banner. I have .flv file with some items in Library and two layers. Please, give me step by step instructions. Edit: I find simple solution, by steps: Go to File -> Publish settings and set ActionScript version to ActionScript 2.0 Insert new layer Create a square with Rectangle tool , that is larger than banner Right click on square and chose Convert to symbol... In popup windows chose

How to best convert Flash compatible mp4 files with FFMPEG?

陌路散爱 提交于 2019-12-20 08:05:31
问题 I am trying to convert different files to a flash compatible .mp4 file with ffmpeg, but I can't seem to get it to work. Of course the objective is to get the greatest quality with the smallest file size. So far I have this, which works, but it doesn't play in a flash player for some reason. The result isn't that great, how can I improve this conversion? This is the command I'm using: ffmpeg -i input.file -f mp4 -vcodec mpeg4 -r 25 -b 560000 -s 610x340 -acodec aac -ac 2 -ab 64 -ar 44100 output

ActionScript 2 Moving an object

六月ゝ 毕业季﹏ 提交于 2019-12-20 07:37:41
问题 I have very little knowledge of ActionScript. I have a movie clip. I want it to move along the x-axis when i press down on a button(button or movie clip) I do not know what code to use as it needs to be Action Script 2. Is there a Tutorial or something that can accomplish this? I have found a tutorial that moves the object around when you press a button. I am trying to get the same effect when you click down on a button: http://www.kirupa.com/developer/actionscript/xymove.htm Thank you for

How to prevent Event.Resize to trigger twice on displayState change to FULL_SCREEN?

女生的网名这么多〃 提交于 2019-12-20 07:37:05
问题 I have an application with an fullscreen button, when that button is clicked I change the displayState of stage to StageDisplayState.FULL_SCREEN_INTERACTIVE . That makes Event.RESIZE fire twice if stage.scaleMode = StageScaleMode.NO_SCALE . The event is only fireing once if i change back to stage.displayState = StageDisplayState.NORMAL . Anyone know a good way to prevent the Event.RESIZE from fireing twice except calling the onResize function directly or implementing a custom event? Sample