flash-cs6

NetStream http Video not playing on IOS device

社会主义新天地 提交于 2019-12-20 07:22:24
问题 I am trying to play a video on iPad, my code is below : public function init_RTMP():void { videoURL = "http://rest************_iphone_high.mp4"; vid = new Video(); nc = new NetConnection(); nc.addEventListener(NetStatusEvent.NET_STATUS, onConnectionStatus); nc.connect(null); } private function onConnectionStatus(e:NetStatusEvent):void { if (e.info.code == "NetConnection.Connect.Success") { trace("Creating NetStream"); netStreamObj = new NetStream(nc); metaListener = new Object(); metaListener

displayed insecure content from http://fpdownload.adobe.com/crossdomain.xml

江枫思渺然 提交于 2019-12-19 02:03:30
问题 So recently I noticed a flash video player I created started running in to insecure content issues when played through an https URL. I spent quite some time going through all the measures to make sure everything within the source code of my document as well as the embed and video URLS all adapted to the https protocol. Obviously on https URLs it's important to keep the page from loading any insecure content, but I also found for IE7 users the player is unable to load (and sadly I cannot

displayed insecure content from http://fpdownload.adobe.com/crossdomain.xml

╄→гoц情女王★ 提交于 2019-12-19 02:02:54
问题 So recently I noticed a flash video player I created started running in to insecure content issues when played through an https URL. I spent quite some time going through all the measures to make sure everything within the source code of my document as well as the embed and video URLS all adapted to the https protocol. Obviously on https URLs it's important to keep the page from loading any insecure content, but I also found for IE7 users the player is unable to load (and sadly I cannot

Flash CS6 embeded font not visible

空扰寡人 提交于 2019-12-14 03:09:48
问题 If anyone having same problem. I have saved my flash CS5 file to new version CS6 and now the embeded fonts are not showing even in IDE I am selecting the non embed version of that font. Even then they are appearing as invisible selectable area, I opened my notepad and selected the font and they are working fine in it. I tried to save it back in the old version and still having the same problem. Thanks for your time :) 回答1: read this topic http://forums.adobe.com/message/4916465#4916465 I

Create expansion file for AS3 android Air App Flash cs6

倖福魔咒の 提交于 2019-12-13 12:20:03
问题 I have created an AS3 mobile app and exported successfully through flash CS6. In this .apk I have included my video files (going to be a presentation for Android Tablet). The total size of the .flvs alone is 64mb. When I tried to upload to Google play I got the (expected) warning about the file size being >50mb . I have spend two hours trying to find a fix, including using the jobb.bat , zipalign.bat , putting the files into the format of main.1.obb and many other options. The Google website

Can we change stage size dynamically?

隐身守侯 提交于 2019-12-13 10:53:24
问题 Am working on flash cs6 and AIR 14.I developed one app i want to adjust that app to all android and ios devices.for that i want to change my stage size dynamically according to screen resolution of device.Is it possible to do that.if yes how ? 回答1: Yes, It is possible. First thing you need to do is the following: (as soon as your application has access to the stage) stage.scaleMode = StageScaleMode.NO_SCALE; stage.align = StageAlign.TOP_LEFT; This will make your stage not scale and become the

TypeError: Error #1009 in AS3 flash cs6

两盒软妹~` 提交于 2019-12-13 09:23:09
问题 I have got this error while working on my flash: TypeError: Error #1009: Cannot access a property or method of a null object reference. at Options() This is my Options class: package { import flash.display.MovieClip; import fl.managers.StyleManager; import flash.text.TextFormat; import fl.events.ComponentEvent; import fl.events.*; import flash.events.MouseEvent; import fl.controls.*; import flash.net.SharedObject; import flash.events.Event; public class Options extends MovieClip { //DECLARE

Accessing event.target or event.currentTarget beyond the listener Function

对着背影说爱祢 提交于 2019-12-13 05:38:59
问题 Originally I had two functions, the first function being dataLoaded which had an eventListener in it that spawned a new function called itemClicked . But if I wanted to add a delayedFunction and have itemClicked as an intermittent stage between dataLoaded and delayedFunction , how can I access the event.target or event.currentTarget of the original listener when I come to reference it in my delayedFunction ? private function dataLoaded(event:Event):void { //items properties call - add other

Application Loader: Apple's web service operation was not successful

瘦欲@ 提交于 2019-12-12 11:31:43
问题 I'm trying to upload an app with Application Loader but I get following error : Apple's web service operation was not successful Unable to authenticate the package: 54005906.itmsp An unknown error occurred. (2010) What is the problem? I really can't find any info. 回答1: Its was problem with Apples process. Worked the day after! 回答2: I would check following 1. Profile, username, password, certificate 2. Clean Build and Try again. 回答3: I kept getting it for several days until I changed

AS3 using Workers

ぐ巨炮叔叔 提交于 2019-12-12 05:25:43
问题 IDE: FLASH CS6 Professional SDK: AIR 18 for Android I'm trying to use Workers for my app. The problem is, it doesn't work that it suppose to be. public class Main extends Sprite { private var worker:Worker; public function Main() { var ba:ByteArray = this.loaderInfo.bytes; if(Worker.current.isPrimordial){ worker = WorkerDomain.current.createWorker(ba); worker.start(); trace("Created Main"); }else{ trace("Created Worker"); } } } It should output Created Main Created Worker but i'm only getting