flexbuilder

flex mobile TabbedViewNavigatorApplication back button part2

谁说胖子不能爱 提交于 2020-02-06 06:34:06
问题 Refer back to : flex mobile TabbedViewNavigatorApplication back button I have 2 Tabs. Tab1 has 2 sub Views: Tab1 Tab1subViewA Tab1subViewB Tab2 subview... In Tab1 (Tab1SubViewA is the first View), -> I navigate to Tab1SubViewB (still under Tab1). How can I go back to previous view (Tab1SubViewA)? Note: it's not moving from Tab to Tab but moving from View to View all in the same Tab. code for Tab1SubViewA: <?xml version="1.0" encoding="utf-8"?> <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"

flex mobile TabbedViewNavigatorApplication back button part2

ぃ、小莉子 提交于 2020-02-06 06:33:53
问题 Refer back to : flex mobile TabbedViewNavigatorApplication back button I have 2 Tabs. Tab1 has 2 sub Views: Tab1 Tab1subViewA Tab1subViewB Tab2 subview... In Tab1 (Tab1SubViewA is the first View), -> I navigate to Tab1SubViewB (still under Tab1). How can I go back to previous view (Tab1SubViewA)? Note: it's not moving from Tab to Tab but moving from View to View all in the same Tab. code for Tab1SubViewA: <?xml version="1.0" encoding="utf-8"?> <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"

Managing web services in FlexBuilder - How does the manager work?

末鹿安然 提交于 2020-01-25 13:00:13
问题 In FlexBuilder 3, there are two items under the 'Data' menu to import and manage web services. After importing a webservice, I can update it with the manage option. However, the webservices seems to disappear after they are imported. The manager does however recognize that a certain WSDL URL was imported and refuses to do anything with it. How does the manager know this, and how can I make it refresh a certain WSDL URL? 回答1: In your src folder of the flexbuilder project you should see the

How to make an object network serialize to a file, not a SharedObject?

若如初见. 提交于 2020-01-17 08:34:31
问题 Currently, I do serialize my model object to the SharedObject instance : try { var mySo:SharedObject = SharedObject.getLocal("sig"); mySo.clear(); mySo.data.model = _model; mySo.flush(); } catch ( e:Error ) { Alert.show( 'Leider konnte kein Modell geladen werden.' ); } Likewise, I load the saved model using the SharedObject instance. Works great. Ultimately, I'd like to serialize it to a file - which fails. Here is how: var fp: File = File.applicationStorageDirectory; fp = fp.resolvePath(

flex line chart with variable colored line

≡放荡痞女 提交于 2020-01-15 04:26:46
问题 Ive got a rather simple need to create a line chart. The data that I would like to chart is based on a single daily datapoint. xml example of data: <?xml version="1.0"?> <dataset> <data> <date>01/14/2013</date> <number>80.6</number> <indication>G</indication> </data> <data> <date>01/15/2013</date> <number>74.6</number> <indication>A</indication> </data> <data> <date>01/21/2013</date> <number>79.4</number> <indication>G</indication> </data> <data> <date>01/22/2013</date> <number>67.7</number>

flex line chart with variable colored line

喜欢而已 提交于 2020-01-15 04:26:29
问题 Ive got a rather simple need to create a line chart. The data that I would like to chart is based on a single daily datapoint. xml example of data: <?xml version="1.0"?> <dataset> <data> <date>01/14/2013</date> <number>80.6</number> <indication>G</indication> </data> <data> <date>01/15/2013</date> <number>74.6</number> <indication>A</indication> </data> <data> <date>01/21/2013</date> <number>79.4</number> <indication>G</indication> </data> <data> <date>01/22/2013</date> <number>67.7</number>

Are Flex charts available in the free Flex SDK?

只谈情不闲聊 提交于 2020-01-13 19:22:23
问题 Hmmmm... It appears that charts are only available through the Flex SDK that comes built-in with Flex Builder. This is a problem, since I want to use Flex 3.3, and Flex Builder came with 3.2. Eclipse is also ticking me off, and I prefer to use a different IDE (FlashDevelop). Any way around this? And is there anything else that isn't included the the free SDK that I should be aware of? 回答1: The charts are only available with the professional Flex Builder plugin. If you have a FB license,

Building Flex projects in ant/nant

不问归期 提交于 2020-01-12 17:35:27
问题 We have a recurring problem at my company with build breaks in our Flex projects. The problem primarily occurs because the build that the developers do on their local machines is fundamentally different from the build that occurs on the build machine. The devs are building the projects using FlexBuilder/eclipse and the build machine is using the command line compilers. Inevitably, the {projectname}-config.xml and/or the batch file that runs the build get out of sync with the project files

separating data in an array for display in Flex

不问归期 提交于 2020-01-06 08:48:09
问题 I'm new to flex/flash builder, i need to read in data from a text document, then slice it into pieces i set out in my custom class. all of this so far worked var theCustomer:Customer=new Customer(name,address,phoneNo,comment,custNo); custArray.addItem(theCustomer); So now what i want to do is display only the name from each entry of the array into a combobox - and then on close it will display all the details into a list box If i just bind the custArray to the combobox it displays name

How can I debug an Actionscript project in Flex builder?

霸气de小男生 提交于 2020-01-06 06:50:45
问题 I am trying to use Flex builder for the first time in years. I haven't used the "Run Application" option before, and when I do that now it tells me "Errors exist in required projects" and whether I should proceed. I would like to debug those errors. Does anyone know how I can do that? PS: When I click the "Debug" button, it does exactly the same thing. I don't see error output in the console views. 回答1: Ensure the Problems view is open (Window -> Show View -> Problems). That will show you