flash-cs5

What is the address of my Flash debugger?

本秂侑毒 提交于 2019-12-21 06:01:00
问题 I packaged my SWF for iPad and exported to debug. I installed the .ipa on my iPad. When I tapped on the icon, nothing happened for a few minutes. Then, I got a UIAlertView asking for the address of my Flash debugger. Does anyone know what that address might be, or what to do with that UIAlertView? 回答1: On Adobe's website, I've found the answer: Debugging the application on the iPhone To debug the application on the iPhone: Compile the application with debug support: In Flash Professional CS5,

Error #2031: Socket Error. URL: 127.0.0.1

不想你离开。 提交于 2019-12-20 03:52:13
问题 So i am playing around with some exmaples that come with the tuio as3 library and i am getting an error on launch that i have never encountered before and don't know how to fix. it compiles with no errors however on launch i get this output: ioErrorHandler: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2031: Socket Error. URL: 127.0.0.1"] does anyone know how to fix this? 回答1: An IOErrorEvent object is dispatched when an error causes input or output

Is Flash or Flex better to build a user interactive ordering “wizard” website?

烈酒焚心 提交于 2019-12-19 23:27:11
问题 i want to see if these "build a . . ." flash sites (to support a user customized ordering process) are done using regular flash or Flex? Site 1 Site 2 Site 3 Site 4 All of these "walk a user" through a customized ordering process and capture all of their selection and showing them all of their customizations (and ultimately bring them to a final ordering screen). What's going on under the hood on these sites and are built in flash or flex? Is the person creating a separate image for every

Flash AS3 Getting Security sandbox violation when trying fetch an external swf

偶尔善良 提交于 2019-12-19 19:44:51
问题 Hii, I'm tring to load swf file to my flash application from a different server. When i try to load it on flash IDE (crl+enter) everything is working fine, but when i run the swf as an independent swf file or by debugging it, i'm getting this error: SecurityError: Error #2121: Security sandbox violation: LoaderInfo.content: file:///C|/Users/something/Desktop/blablabla/myplayer.swf cannot access http://www.somedomain.com/blablabla/lalalala/abc.swf. This may be worked around by calling Security

How to get control on security privacy pop up in flash

拥有回忆 提交于 2019-12-19 11:59:07
问题 We are working on flash camera project. We want to ask user to allow or deny camera access first on page load. then after few seconds we want to start camera and take photo. If User deny camera (or flash) access, we do not want to start camera. and If user allows permission for camera (or flash) access, we want to start camera and take photo. For this, We are using "Security.showSettings(SecurityPanel.PRIVACY);". This code is user for ask permission to user about their camera access. So, it

Arrange (z) order of objects in Flash with ActionScript 3?

ぃ、小莉子 提交于 2019-12-19 05:59:36
问题 Is it possible to arrange (z) order of objects in Flash with ActionScript 3? e.g. I have 3 symbol instances on a given layer, and I want to perform the equivalent of 'Bring to Front', 'Bring Forward', and/or target a certain z position. 回答1: You can change the z-index (stacking order) of a movie clip within a same layer using action script like this. parent.setChildIndex(childObject, i) Change childObject to the name of the movie clip you want to change the z-index, change i to an integer

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

CS3 Flash - Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found

泄露秘密 提交于 2019-12-13 21:12:32
问题 The .swf files are in my library and on my hard drive, why is it saying it can't find them? import flash.display.Loader; import flash.events.MouseEvent; import flash.net.URLRequest; var myLoader:Loader=new Loader(); myLoader.x = 0; myLoader.y = 100; btn1.addEventListener(MouseEvent.CLICK, movie1); function movie1(myevent:MouseEvent):void{ var myURL:URLRequest=new URLRequest("Phase1IP.swf"); myLoader.load(myURL); addChild(myLoader); } btn2.addEventListener(MouseEvent.CLICK, movie2); function

How do I use AS3 to embed an SWF file and control is using .play()?

只谈情不闲聊 提交于 2019-12-13 18:01:10
问题 I have a folder "/assets/animations" filled with .swf files. I would like my AS3 script to embed all these assets so they can be later called to play or stop. I hear a lot about the Loader class but it looks like it doesn't embed all the files at compile time but rather grab them from a url when needed. Basically these assets are cut scenes for a flash game. I would like all of them to be present in one final .swf so its easy to play on any machine without an internet connection. 回答1: [Embed

Using Squiggly in Flash CS5

假装没事ソ 提交于 2019-12-13 09:26:13
问题 This is going to seem quite a lame question - basically we have downloaded a package called Squiggly - http://labs.adobe.com/technologies/squiggly/ - and we are trying to implement it into Flash (using AS3, CS5). And none of us are very good at flash, and have no clue how to do it, the actionscript in the .as is as follows: package { import flash.display.Sprite; import flashx.textLayout.container.ContainerController; import flashx.textLayout.elements.TextFlow; import flashx.textLayout