Questions tagged [flash-builder4.5]

Adobe Flash Builder4.5 is an Eclipse based IDE for Flex application development.

This IDE helps developers to develop Flex based application for Web,iphone and Android.Licenses can be obtained for Flash builder 4.5 from Adobe. It is also bundled with Adobe Creative Suite 5.5 Web Premium and Adobe Creative Suite 5.5 Master Collection.

172 questions
0
votes
1 answer

How do you format (align) labels made of multiple parts (e.g., p1, p2, p3) in a grid like fashion?

The data provider for the chart contains an array of facility objects. A facility object is made of several parts indicating the installation ID, facility number and facility name as shown below: { installationID:1000, facilityNum:529, …
Ryan Taylor
  • 8,740
  • 15
  • 65
  • 98
0
votes
2 answers

local variable in Flash Builder 4.5

I have two scripts in a View, one script is inside a Component. In the Component script I need to add numbers from data as they are added to a list and then display the total in a label placed in the View. If I declare the variable in the first…
Kim HJ
  • 1,183
  • 2
  • 11
  • 37
0
votes
2 answers

getting Json in to a list in flex flash builder mobile

I using Flash builder 4.5 and calling my own webservice which return a json with four fields, but many records. I use the Data/Service to create the service and when I use the "Test Operation" I get the first record with the four fields, if I change…
Kim HJ
  • 1,183
  • 2
  • 11
  • 37
0
votes
1 answer

How to run a mobile Flex application in BlackBerry BB STORM 9530?

I am developing mobile Flex Google Map related application. This application Android device working fine. I am using tools Flashbuilder 4.5 integrated to Eclipse. Android device working fine. I am test to BlackBerry device (BB STORM 9530) connect…
Narasimha
  • 3,802
  • 11
  • 55
  • 83
0
votes
1 answer

how can launcher icon image name in mobile flex project using eclipse indigo?

I am building an mobile flex app in eclipse indigo and have my app worked almost to completion and about ready for deployment. Unfortunately, I cannot find how to change the app icon and title for the system to read, so my app still shows up as…
Narasimha
  • 3,802
  • 11
  • 55
  • 83
0
votes
2 answers

ArgumentError: Undefined state 'normalAndInactive'

I have a webapp that works great. I am now trying to make a desktop version for our internal use. I've converted it and changed the tag to a "WindowedApplication". When I try to run the Air app I get the error: ArgumentError: Undefined state…
user_78361084
  • 3,538
  • 22
  • 85
  • 147
0
votes
1 answer

Flash Builder iPhone app size

I have a mobile Flex project which I am deploying to iPhone/iPod and Android. I'm having an issue getting my app under the 20 MB 3g size limit. I am including some images and a video which amount to 1.5 MB. The swf for the build is 2.8 MB and the…
embinder
  • 183
  • 1
  • 7
0
votes
2 answers

After exporting a flex project, the images are broken

After completing building a flex project in Flash Builder 4.5, the project was exported using the File -> Export Flash Builder Project. After which some of the images stopped working (get the broken image icon). This has left me clueless and even…
Vivian Lobo
  • 583
  • 10
  • 29
0
votes
1 answer

Securing Flex App on Shared Hosting

I'm not an expert and don't want to make a mistake, so please forgive me if the answer is obvious (better safe than sorry). I finished a Flex app using FB4.5 and uploaded and tested it fine to a shared host. I'm now in the process of securing the…
wellplayed
  • 943
  • 8
  • 16
0
votes
2 answers

How to get an ActionScript Mobile Project to close?

I have a project that was written using ACtionScript 3 in the Flash Builder Burrito preview IDE, with Adobe AIR 2.5 SDK. The way I was closing down the application was with.... stage.nativeWindow.close(); Now I've taken this same project and I'm…
0
votes
3 answers

Flex - Source Size vs. Compile Size

Could you explain why a Flash Builder source folder - no larger than 2 MB - compiles into a SWF exceeding 15 MB with debugging turned off (exported release build)? There is only 1 embedded image at about 93k - no other images. The application is not…
wellplayed
  • 943
  • 8
  • 16
0
votes
1 answer

Why flash embeded in flex mobile project runs slowly on iPad but not in simulator?

Following is the line of code which embeds the flash swf file. It runs as original swf file on simulator but not great in iPad2. The speed of the animation decreases and animation breaks while running on iPad2.
Ravi Nalawade
  • 37
  • 2
  • 7
0
votes
0 answers

Garbage Collection in Flash Player

I build a simple Flex view state based video application on Flash Builder 4.5. There are 4 states. Everytime I go from State1->State2->State3 or State1->State2->State4, the memory in internet explorer increases, but is not released. What am I not…
iceman
  • 4,211
  • 13
  • 65
  • 92
0
votes
1 answer

Flashbuilder 4.5. Parse results of HTTP Service Call

I'm making an HTTP Service Call using Flash Builder 4.5. My web service returns a string. I'm having trouble understanding how to read in the returned string. LoginResult.token = login.Login(Username.text, Password.text); Here is what I have so…
mscccc
  • 2,190
  • 6
  • 25
  • 39
0
votes
1 answer

Using Static and dynamic components in same view FB 4.5 Mobile App

I am in the process of recreating our desktop app for Android Tablets. The app has various views accessed via an actionBar: Module 1 | Module 2 | Module 3 | Module 4 Each of these is obviously a view. However here is my issue. In the desktop version…