flash-builder

Flash Builder 4 + Red5 IDE Plugin

寵の児 提交于 2019-12-11 10:01:28
问题 Anybody know how to install Red5 IDE Plugin for Adobe Flash Builder 4? Adobe Flash builder 4 comes with an integrated installation of Eclipse, but If I follow the instructions on Red5 site I get: Cannot complete the install because one or more required items could not be found. Software being installed: Red5 Feature 0.2.0 (org.red5.feature.feature.group 0.2.0) Missing requirement: Red5 Feature 0.2.0 (org.red5.feature.feature.group 0.2.0) requires 'org.eclipse.jst.server.core 0.0.0' but it

1046 type not found on [spark.skins]::IHighlightBitmapCaptureClient

落爺英雄遲暮 提交于 2019-12-11 08:42:26
问题 I've made an ActionScript Mobile project in Flash Builder 4.5 and am getting this error that I can't fix. 1046: Type was not found or was not a compile-time constant [spark.skins]::IHighlightBitmapCaptureClient. The error does not link to any source. The project is basically the source to Flixel's FlxCollisions demo, but trying to compile it for iOS. Using the same src folder (flxCollisions and Flixel 2.5) in a plain Actionscript project does not cause this error and runs as expected. I've

How do you play a local flv video file in flex mobile project?

时光总嘲笑我的痴心妄想 提交于 2019-12-11 07:56:21
问题 Good afternoon, I trying to play a flv file in a flex mobile (flex 4.6) The files will all be locally stored and on the device. Would it be better to use the video even if it is not supported or can i use a movieClip? I am going to try and fade out a picture and then play the video with out any user controls and then fade back to the picture. The this will all be on a tablet. I am using Flash Builder 4.6. If I can use a movieClip would someone please give me a tutorial or a snippet of code on

Error #2025 AS3

怎甘沉沦 提交于 2019-12-11 07:41:38
问题 I'm trying to build game like chicken invaders and i get this eror : ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller. at flash.display::DisplayObjectContainer/removeChild() at superstudent7_fla::MainTimeline/moveBullet() this problem occurs when my space ship shoots. to solve this , i need to know 2 things: my bullets are defined as MovieClip s ,and they are not on stage.. so i brought them to the stage like this: function shooting(e:Event):void { var

Flash Builder 4 Release Build multiple files

坚强是说给别人听的谎言 提交于 2019-12-11 07:29:50
问题 When i make a release build the folder is populated with a number of swfs. Are all these swfs necessary? Is there a option to generate one swf? Thanks in advance EDIT The files I see are: framework_4.5.0.18623.swf osmf_1.0.0.16316.swf rpc_4.5.0.18623.swf spark_4.5.0.18623.swf sparkskins_4.5.0.18623.swf textLayout_2.0.0.200.swf playerProductInstall.swf 回答1: I assume you're using Flash Builder 4 and/or Flex 4 SDK and see a bunch of SWZ files is that correct? These are framework files which can

Is it possible to create (good) flash animations in flash builder?

这一生的挚爱 提交于 2019-12-11 07:04:03
问题 I know that all the cool animations are created in Flash (the program) unfortunately, I am not very good with it. However I like flash builder, because you can use a markup language and because it is better optimized for large projects. Can you create animations that are as good in flash builder? 回答1: Flash Builder and Flash each have their appropriate uses. While you technically can make good applications with Flash and good animations with Flash Builder, it's much harder than using the

Changing individual tab style in flex

霸气de小男生 提交于 2019-12-11 06:57:13
问题 I have figured out a way to change the style of tabs at run time with following logic: var cssStyle:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".MyTabs"); cssStyle.setStyle("borderColor", "red"); But here ".MyTabs" class is applicable to all the tabs between first and last tab. As per getStyleDeclaration javadoc, it only accepts "class selector" and "type selector" not the id selector. How can I change the individual tab style at run time? 回答1: Another user pointed out a method

How to use a relative path for a swc library in Flash Builder 4.6

时光怂恿深爱的人放手 提交于 2019-12-11 06:49:11
问题 I'm using Flash Builder 4.6 and in one of my ActionScript projects, I have a referenced .swc library file. The way I added it was Project > Properties > Flex Library Build Path > Library Path tab > Add SWC... Here a popup occurs and I must select a .swc file by browsing through my machine and selecting one. Once I do that, it'll display the added library like this: somelibrary.swc - /Full/Path/to/the/swc/here/lib/somelibrary.swc What I want to be able to do is use a relative path instead,

Update total value datagrid when drag drop values - Adobe Flex

隐身守侯 提交于 2019-12-11 06:19:52
问题 I have two datagrid, and each has total label. This label sums all the values of each datagrid. When I drag and drop a value from one datagrid to another, the two label total must be updated according to the values of each datagrid. However, a sum is delayed. The code: <?xml version="1.0"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" width="650" creationComplete="initApp();"> <fx:Script> <![CDATA

Actionscript 3 - How can i convert from XMLList to XML?

流过昼夜 提交于 2019-12-11 05:43:42
问题 My function is returning XML, so i do: return xml.blah.blah.blah It tells me it can't convert XMLList to XML so i'm guessing xml.blah.blah.blah is a XMLList. How can i do this (convert XMLList to XML)? the simpliest way possible? 回答1: You should be able to just cast the XMLList to XML. Either: XML(xml.blah.blah) or (xml.blah.blah as XML) 回答2: You can access items of an XMLList like you would an array: var booksXML:XML = <Books> <Book ISBN="0000000000"> <title>Title 1</title> <author>Author 1<