flexbuilder

Transitioning from FlexBuilder 3 to FlashBuilder 4 … there and back again

淺唱寂寞╮ 提交于 2019-12-24 10:57:55
问题 It's growing pains time again. Some of our stuff requires FlashBuilder 4 and some still requires FlexBuilder 3. Both are installed OK, and no projects use both IDEs. The trouble is, when I go back to work on a FlexBuilder 3 project it takes freakin' forever to build and I get weird errors like these: This doesn't seem to cause any identifiable problems except to throw up a modal dialog at various points in the build process, forcing user interaction. But I do notice that memory fills up fast

Adding Tomcat Plugin to Flex Builder

[亡魂溺海] 提交于 2019-12-24 02:42:56
问题 Is there anyway we can add the tomcat eclipse plugin to Adobe Flex Builder 3? In other words can we add all eclipse plugins to Flex Builder also? 回答1: Yes you can. And you don't have to download Eclipse. You can do this within Flex Builder. What you have to do is to go to help and then go to find and install. There you have to look for WTP (Web Tools Platform) plus WST ( Web Standard Tools) and once you select it it should say that there are some errors, but what you have to do is to select

Display HTML text in the Spark TextArea

寵の児 提交于 2019-12-23 19:25:28
问题 The Below code is running well... <?xml version="1.0" encoding="utf-8"?> <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" > <fx:Declarations> <mx:HTTPService id="httpRSS" url="http://www.petefreitag.com/rss/" resultFormat="object" /> </fx:Declarations> <s:Panel id="reader" title="Blog Reader" width="500"> <mx:DataGrid width="485" id="entries" dataProvider="{httpRSS.lastResult.rss.channel.item}" click=

Integrating Paypal API in Adobe Flex

江枫思渺然 提交于 2019-12-23 04:56:20
问题 I am writing a Flex project in which I need to communicate with Paypal via their APIs. Really not sure how to start with - this is my first flex/air application. I won't be using any server side technology (no Java, Php, .NET, Coldfusion) - all of the requests have to come from Flex and the response be sent back directly to the flex application. Can someone please give me an example or something to start with. Let's say implementation of RefundTransaction API in Flex. Is it possible? If not,

Flex builder3 is not generating html wrapper when targeting flex 4 sdk

◇◆丶佛笑我妖孽 提交于 2019-12-22 10:07:03
问题 In Flex builder 3 when I create a new flex application targeting the flex 4 sdk, it wont generate a html wrapper file. I have hunted around the web for answers, but no success. I have made sure the box is checked in the project properties to generate html wrapper. The only workaround is to target an older version of the sdk (i.e. 3.2), which will cause the wrapper to be generated. Then I can revert the project to sdk 4. This then means I can never do a clean of my project because this will

how can design picker in android using adobe flex views

随声附和 提交于 2019-12-21 22:50:36
问题 i am implementing adobe flex application in this application i am using picker type view using adobe flex in adobe flex builder how can implement design in this view please forwrad some suggestion i am new in adobe flex development thanks in advance Narasimha 来源: https://stackoverflow.com/questions/7872826/how-can-design-picker-in-android-using-adobe-flex-views

Any advice for speeding up the compile time in Flex Builder 3?

倖福魔咒の 提交于 2019-12-18 10:56:30
问题 I run Flex Builder 3 on a mac and as my project grows - the compile time gets longer and longer and longer. I am using some SWC's and there is a fair amount of code but it shouldn't take minutes to build and crash daily should it? 回答1: In addition to the suggestions already mentioned, close any projects that you have open that you are not using. Rich click on the Project in the Navigator view and select "Close Unrelated Projects". Depending on how many projects you have open, this can lead to

Flex: Any way to use something like htmlText in Spark TextArea?

若如初见. 提交于 2019-12-13 08:25:13
问题 I´m using php services to insert text from MySql, to a TextArea. Ok, with mx textarea is working but how do i manage that with spark!? this is my example with mx: <mx:TextArea htmlText="{links.comment}"/> this is an example with spark: <s:TextArea> <s:textFlow> <s:TextFlow> <s:a href="http://www.google.com/" target="_blank"><s:span color="0xCECB02" textDecoration="none">Something and Something</s:span></s:a> </s:TextFlow> </s:textFlow> </s:TextArea> That works, but how can i take the same "

What is the error :a conflict exists with inherited definition flash.display:DisplayObject.mouseX in namespace public?

一笑奈何 提交于 2019-12-13 06:33:15
问题 This appeared as I was trying to use a mouseEvent to move an object. I placed the variables for mouseX and mouseY in the public class. I did the same for direction X and Y but there was no error message for those. 回答1: If the class you are adding the mouseX to is extending the DisplayObject type (and if it's any kind of Flex component than it does), you already have a variable with that name from that type. As a fix name your variable something else eg. myMouseX . If you don't know what

how to call mxml application from action script

与世无争的帅哥 提交于 2019-12-13 03:45:03
问题 I've one main.mxml which has login button which looks like below - <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundColor="#C4D4EF" layout="absolute"> <mx:HTTPService id="serverCall" method="POST" url="http://localhost:8080/LDAPService/reg" result="on_Result(event)" fault="on_Fault(event)" /> <mx:Script> <![CDATA[ private function on_Result(event:ResultEvent):void { // How to write here } ]]> </mx:Script> <mx:Panel x="414" y="145" width="355" height="200" layout="absolute"