Questions tagged [flex-mobile]

Questions concerning the mobile classes created in Flex version 4.5 and higher.

Examples of Flex Mobile component classes:

  • ViewNavigatorApplication
  • ActionBar
  • IconItemRenderer
250 questions
1
vote
2 answers

Legend Colors not being displayed in Flex Mobile Project?

I am a beginner in Flex and have recently started with Flex Mobile Projects using Flash Builder 4.6. This project is for Android. I wanted to add effects in my Pie Chart and made the use of :
Siddhant
  • 1,074
  • 12
  • 22
1
vote
3 answers

How to get a view to read data

I need to convert a lot of stuff in my profession - so I'm building a conversion tool for my phone with some of the conversions I use a lot. Now, I want to be able to build this properly. So far, here's my code:
SQLiteNoob
  • 2,958
  • 3
  • 29
  • 44
1
vote
1 answer

Performance of Flex/AIR applications on ios/Android

I want to know what are the limitions/Restrictions and the Performance of an AIR application for iOS/Android devices such as ipad2,galacy tabs. I want to Build an application in AIR which will have charts,a local database i.e, sqlite of size 10MB.…
Gannesh
  • 183
  • 12
1
vote
1 answer

How to move Flex Mobile ActionBar down just a little bit?

I'm trying to simply move the actionBar down 75 pixels so I can squeeze an adMob ad in there. I tried: navigator.actionBar.y=75; But, i'm not seeing anything different visually, it's not moving, it's giving me no errors, but if i do…
brybam
  • 5,009
  • 12
  • 51
  • 93
1
vote
1 answer

flex mobile sqlite database connection across views

I am relatively new to flex mobile environment. I'm using sqlite in flex mobile. I have a basic app which has a welcome screen and registration. In the welcome screen, tables are created if they dont exist in the local db (sqlite) in welcome…
Dhiraj
  • 33,140
  • 10
  • 61
  • 78
1
vote
2 answers

Volume control for ios in flex mobile 4.5 or phone gap

I am trying to develop an application for IOS in which the application needs to have control over the phone's volume. Please do suggest if flash 4.5 mobile or phonegap is suitable for the following requirements. Increase/decrease volume Mute Play…
Dhiraj
  • 33,140
  • 10
  • 61
  • 78
1
vote
1 answer

Updating a Flex Mobile Application

Is updating a Flex Mobile Application done in the same way an Air application is updated? Can't seem to find information specifically for mobile on this. Apparently, if I trace out Updater.isSupported, it gives back false. From the Adobe…
Lieven Cardoen
  • 25,140
  • 52
  • 153
  • 244
1
vote
2 answers

PDF in a Flex mobile application

Is it possible to open a pdf file in a Flex Mobile application?I have searched but I didn't find anything. Thank you
Snote
  • 955
  • 3
  • 19
  • 36
1
vote
3 answers

List Bullets in Flex 4.5

Is it possible to add bullets to a Label in Flex 4.5 mobile development? something like this: .Item .Item .Item
Capiono
  • 210
  • 2
  • 8
  • 17
1
vote
3 answers

Flex Mobile data security

I had a search around but I have not really found what I am looking for. I am developing a flex application for mobile devices. This application will sync customer data down from an api to the mobile device. but once on the device I plan to hold it…
JaChNo
  • 1,493
  • 9
  • 28
  • 56
1
vote
1 answer

Adobe flex mobile application

I need to develop wallpaper app using adobe flex with adobe flash builder so that I need help after I complete user interface and I downloaded wallpaper manager native cod please help me where i write native cods to set image as wallpaper on the…
1
vote
1 answer

ERROR ITMS-9000: Invalid Code Signing

For an Adobe AIR app (which is published since over a year in Apple App Store) I'm trying to submit an update using Application Loader, but get the following error: ERROR ITMS-9000: "Invalid Code Signing. The executable 'Payload/XXX.app/XXX' must…
Alexander Farber
  • 21,519
  • 75
  • 241
  • 416
1
vote
1 answer

Passing extras from ANE to Flex app

I have a flex mobile application with an ANE. This ANE has a broadcast receiver that starts the flex mobile application when it receives an event: public class BroadcastEventHandler extends BroadcastReceiver{ @Override public void onReceive(Context…
EoD
  • 357
  • 1
  • 3
  • 11
1
vote
1 answer

Android starts my Service before the Air native extension calls it

I'm developing an Air (Flex) Mobile application for Android, which uses Air Native Extension (ANE) to take advantage of some platform functions that otherwise could not be used (at least to my knowledge). One of the platform functions that I want to…
1
vote
0 answers

Switching between Flex mobile applications using Air Native Extentions for Android

I'm building two different Flex Mobile applications for Android. Those two applications should be able to call each other by presseing a button (one each app), meaning that those buttons would allow a sort of switch between these applications. My…