1
vote
1answer
61 views

How do I completely exit a Flex 4.6 Air mobile Android app?

Ive been trying to add a button to properly exit an Android app, built using Flex 4.6. I have used the command NativeApplication.nativeApplication.exit(); which seems to work on the emulator, and ...
0
votes
1answer
75 views

Vertical and horizontal center properties don't update after device orientation change

I have a button/image that I want centered. Code below works as expected in vertical mode: pauseButton.source = pause; // embedded image pauseButton.verticalCenter = 0; pauseButton.horizontalCenter = ...
1
vote
1answer
64 views

Can not able to download image from web in flex mobile app

I want to download an image from URL to my Mobile using Flex Mobile. I have found This and tried this: <?xml version="1.0" encoding="utf-8"?> <s:View ...
2
votes
1answer
143 views

Dragging in spark List does not work in Flex mobile app? Test case and screenshot attached

I would like to reorder items of a List in a Flex mobile app by dragging them around with a finger. As a first step I have copied the example from Adobe document Using drag-and-drop with list-based ...
0
votes
1answer
85 views

How to get Mobile number using Flex 4.6 Mobile Application?

This is Bhanu Teja. I am new to Flex mobile application. Can any one let me know, "How to get the mobile number in our flex mobile application". I am using Flex 4.6. Thanks & Regards Bhanu Teja ...
0
votes
1answer
375 views

Spark List in Flex mobile app: Pull down to refresh - with test code and screenshot

Trying to implement "pull down to refresh" I've created the following simple test code (please just add to a new Flash Builder project, with "blank" template, i.e. without navbar): Screenshot: ...
-1
votes
1answer
107 views

Inheritance with Flex mxml files - screenshot attached

In a Flex mobile app I have 5 Views, handling OAuth logins through 5 different social networks - including Google+ and Facebook. The Views are being selected through the menu shown below: The ...
0
votes
1answer
303 views

Display 3 pie charts in a Flex mobile View - test case and screenshots attached

I display 3 pie charts for every user of a game in a very simple View (the source code is pasted below). The charts represent opinions of other players - if the displayed user plays good, fair, ...
1
vote
1answer
201 views

Enable Button only when 2 TextInput fields are not empty - code and screenshot attached

In a Flex mobile app (or any Flex 4 application) - how can you enable/disable a button depending on the contents of 2 other fields? I am pasting my very simple test code below and the problem with ...
1
vote
1answer
76 views

How to detect the click in the middle of a SpinnerList control? With test case and screenshot

How do you detect the click at the item in the middle of a SpinnerList control? I.e. the typical situation - when user scrolls the SpinnerList, until the needed item is in the middle and after that ...
0
votes
1answer
38 views

Call a function in the parent View from the inline Callout (acting as confirmation Alert)

I'm trying to add an inline Callout to my networked flex mobile app which would ask the user - if she is really sure, that she wants to leave a chat room. However I get the compiler error - because ...
0
votes
1answer
84 views

Flex PersistenceManager isn't retrieving my object, even though I can see it in debugger

I've just changed an app from a ViewNavigatorApplication to a TabbedViewNavigatorApplication and my persistence manager appears to have stopped working properly. Here's the offending code: protected ...
1
vote
1answer
260 views

How to differ between phones and tablets while developing in Flex mobile?

I use applicationDPI in a Flex mobile card game: <?xml version="1.0" encoding="utf-8"?> <s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009" ...
0
votes
0answers
90 views

flex mobile: cameraRoll works on android but on on iphone/ipa

This code works perfectly on my android, but not on ipad/iphone. I am using flex4.6 On ipad: I can browse for images, select one but then image1 is not set and remains blank. private function ...
0
votes
1answer
128 views

Setting text color in a StyleableTextField

Please advise me, how to set the text color in a StyleableTextField. The following doesn't work for me (the color stays black): tf.setStyle('color', 0xFF0000); And this too: ...
0
votes
1answer
239 views

flex mobile: how to use skinClass and softKeyboardType?

My flex 4.6 mobile application uses a customized skinClass. Trouble is the softKeyboardType seems not to work anymore when using skinClass differant than the default one. Any idea how to combine both ...
0
votes
3answers
410 views

flex mobile : textInput does not clear prompt on focus

a simple <s:TextInput x="163" y="117" prompt="hello"/> Does not clear the prompt on focus, but clears the prompt when user first type in a letter. This is the behaviour on flex mobile ...
0
votes
1answer
79 views

Restore search string and visible List index when popping a View

In a mobile Flex game I have a View listing a weekly top of players. It works well enough :-) On the top I have a search field. Also when you click a player name in the list, another View is pushed - ...
0
votes
1answer
257 views

flex mobile validation: how to remove red error border?

I use validators in my flex mobile application. I want to remove the red border when validator has triggered an error. <mx:EmailValidator id="emailV" source="{login_txt}" property="text" ...
1
vote
0answers
100 views

How to get flex 4.6 mobile application as SWF?

I am running a flex mobile application. The goal is to create a SWF file from the same project without having to rewrite a new project. I followed this tutotial mobile flex to swf But this gave me a ...
1
vote
1answer
448 views

drag image over image and positioning dynamically in flex mobile

I'm using Flash builder 4.6 for mobile applications. I need to drag an image over another image in a container and I have to initially position the draggable image with dynamic positioning by getting ...
0
votes
1answer
87 views

Screen dimensions not updating in time for bindings, Flex Mobile

I have an app that is displaying images. It resizes them based on screen rotation, usually setting "picwidth = screen.width", where "picwidth" is an attribute that the width of each picture is bound ...
0
votes
1answer
554 views

how to read SD card data in android mobile application?

I am building an android mobile application in Flex 4.5, Which will read some data from SD card and display data in container like image. But i am not able to access SD card in flex mobile ...
0
votes
0answers
187 views

how to write data in SD card in flex mobile application?

I want to copy a file/folder from app-directory to SD card when application initialize. I used all three ways of writing data in flex. Please follow the code below: var sFile:File = ...
1
vote
1answer
345 views

Flex Mobile Tab Not Working

I am trying to make an mobile flex application that has tab order enabled. I am trying the following simple app and I am not getting any functionality from the tab key both in an emulator and on an ...
0
votes
3answers
1k views

Push notification for Iphone App using Flex mobile developement

Iam working with a flex mobile project which requires push notifications for both android and ios .Already done the android part using flex native extensions adding ane file. Interested to know about ...
0
votes
2answers
434 views

Select an FXG file at the runtime - by its name

I have a test case demonstrating my problem. It runs instantly, when you add the following 4 short files into a new Flex Mobile project in Flash Builder 4.6: src/TestFXG.mxml: <?xml ...
0
votes
1answer
672 views

Using FXG graphic in a Flex mobile app works with MXML, but not with ActionScript

I have read the Adobe's docs Using FXG and Embedding application assets, but can only embed the FXG through MXML - MyStars.mxml: <?xml version="1.0" encoding="utf-8"?> ...
1
vote
3answers
464 views

Flex Mobile : How to skin view?

I would like to know if it's possible to skin view for my Flex mobile application : My ActivityView.as public class ActivityView extends View My ActivityViewSkin.mxml (It skin associated) ...
5
votes
2answers
136 views

Flex mobile AIR app: can not see the content at the bottom

In Flash Builder 4.6 I've created a Flex Mobile AIR Project. Why is there neither the 2 buttons nor a scroll bar to see? And why can't I swipe down to see more text and the 2 buttons? Here is my ...