apache-flex

Can Flash Builder with Flex mobile drag and drop controls for mobile apps in the design view?

偶尔善良 提交于 2020-01-06 12:43:09
问题 I was investigating Flash Builder 4.5 and using flex for ios and android development. Every demo I have seen uses the source code to demo the product development. I noticed there is a design tab in flash builder. Can you drag and drop controls and then capture events for a mobile app? edit: Why would you not want something like this: http://developer.apple.com/technologies/tools/whats-new.html#interface-builder I don't understand. 回答1: Yes [This space intentionally left blank] 来源: https:/

Can Flash Builder with Flex mobile drag and drop controls for mobile apps in the design view?

99封情书 提交于 2020-01-06 12:43:05
问题 I was investigating Flash Builder 4.5 and using flex for ios and android development. Every demo I have seen uses the source code to demo the product development. I noticed there is a design tab in flash builder. Can you drag and drop controls and then capture events for a mobile app? edit: Why would you not want something like this: http://developer.apple.com/technologies/tools/whats-new.html#interface-builder I don't understand. 回答1: Yes [This space intentionally left blank] 来源: https:/

Flex Charting Trial

大兔子大兔子 提交于 2020-01-06 09:03:08
问题 Why is there a watermark on my Flex charting applications saying 'Flex Charting Trial'? 回答1: There are actually two different licenses for FlexBuilder (and the plug-in): Flexbuilder Standard and FlexBuilder Professional. One is the base version, which will allow you to use most of the components, but there is a more expensive version which is part of the Flex Data Visualization component set. You can tell if something is in this license by looking for (Flex Data Visualization components only)

Can Adobe AIR app communicate with iPhone calendar

五迷三道 提交于 2020-01-06 09:02:44
问题 Hey all, I'm mighty new to Adobe AIR and Flex, Flash etc I've been looking through the Adobe AIR APIs, and could not find a class that will allow a Flex\Flash app to communicate to the calendar, (more specifically, the iPhone calendar via the iPhone packager) am i missing out something here? or has adobe not implemented an API for the Flex apps to communicate to the calendar? Are there other iPhone specific APIs that Adobe has not implemented? Thanks! 回答1: i've found the answer right here:

Flex Charting Trial

家住魔仙堡 提交于 2020-01-06 09:02:32
问题 Why is there a watermark on my Flex charting applications saying 'Flex Charting Trial'? 回答1: There are actually two different licenses for FlexBuilder (and the plug-in): Flexbuilder Standard and FlexBuilder Professional. One is the base version, which will allow you to use most of the components, but there is a more expensive version which is part of the Flex Data Visualization component set. You can tell if something is in this license by looking for (Flex Data Visualization components only)

Adobe AIR to detect URL of active browser/tab

橙三吉。 提交于 2020-01-06 08:47:08
问题 Using Adobe AIR + related technologies, is it possible to detect the URL of the active tab/window of the active browser? For instance, if my user is surfing in IE8 on www.example.com/subdirectory/ , can I retrieve that data for use in my Adobe AIR RIA? 回答1: Not easily. In theory you could use NativeProcess and run some local machine code to figure it out; assuming the browser exposes it via some API. OF course, I'm not sure how you'd trigger that code from AIR if the browser was the active

How to determine the IOS version from within an Flex mobile app (AIR)

心不动则不痛 提交于 2020-01-06 08:37:11
问题 I want to determine whether my Flex mobile app is running on a IOS device with IOS 7. I need to find out because I want to lower the actionbar of the application if it is run on IOS 7 to provide room for the indicators (battery, wifi, etc.). According to documentation the Flex Capabilities class does not provide me with an IOS version number. The only option I can think of is to build a Native extension and query the version using IOS functions. But I do not really look forward to building

How do I make sure that there is always something selected in a Spark List?

佐手、 提交于 2020-01-06 08:33:10
问题 I have a spark list, which is based on a dataProvider. As the application runs, the data in the dataprovider can change, and also the dataProvider can be swapped for a different one What I need to do is make sure that something is always selected in the list (unless it is empty) 回答1: You simply have to set the property requireSelection of your list instance to true . In MXML, it would be: <s:List id="myList" requireSelection="true"> 回答2: After setting its data provider ( or whenever is

BlazeDS Messaging Channel.Connect.Failed Error

随声附和 提交于 2020-01-06 08:21:42
问题 I searched through the internet and any answer for this error could not solved my problem. I have a blazeds server in Openshift and I'm connecting to it via Flash Builder. I want to make an app that will send a message to all other users who are using my app. I mean I have 2 applications. One will send a message to server and this one will be on Desktop, the other one is a mobile project and will receive messages that I sent from desktop app through server. I tried to use BlazeDS messaging

How to create DialogBox in blackberry tabOS & how call next screen after click on button using Adobe flex4.5?

99封情书 提交于 2020-01-06 08:15:06
问题 i am new to Blackberry application development. now i am trying to make new app using adobe flex4.5 for Blackberry TabOS.. can anyone please guide How to create dialog box and how to call another screen by clicking on button????can anyone give sample code for the same...? i am trying this code: private function showLoginDialog():void { login = new LoginDialog(); login.title = "Device is locked"; login.message = "Please enter your username and password:"; login.addButton("OK"); login.addButton