Questions tagged [flex4.5]

Flex 4.5 is an iteration of the ActionScript and MXML based RIA SDK focused on expanding support for mobile / tablet platforms.

Notable areas of focus compared to version 4:

  • Developing mobile and multiscreen applications
  • Accelerated coding for Flex and ActionScript projects
  • Support for an improved designer/developer workflow (Flash Builder <-> Flash Catalyst)
  • Updated platform support and improved performance
  • Expanded set of Spark components replacing MX versions, including:
    • DataGrid
    • Form
    • Image
    • formatters
    • validators

The initial 4.5 release in April 2011 provided support for Android devices. A subsequent release in June 2011 (Flex SDK 4.5.1) added functionality to target both iOS and BlackBerry Tablet OS platforms.

References

Introducing Adobe Flex 4.5 SDK

Flex Blog Announcement of Flex SDK 4.5 Release

Flex Blog Announcement of Flex SDK 4.5.1 Release

1372 questions
0
votes
1 answer

itemclick event in spark tabbar?

Hallo tabbar supports item click event. However spark tabBar doesnot supports itemClick event. is there way to listen itemclick event in SPARK TABBAR thanks all
flex
  • 185
  • 5
  • 19
0
votes
1 answer

Adobe Flex : how to have data shared between 3 tabs on a TabNavigator

I have a tabbed dialog that has 4 tabs. The parent component is an mx:TabNavigator and each of the tab's views are custom MXML components inside an s:NavigatorContent. The data for 3 of the tabs has to be sent as one unit to a back end service. …
fred basset
  • 9,774
  • 28
  • 88
  • 138
0
votes
2 answers

AS3 Sprite Handler

I want to use Object Handler for Sprite but any of the Handler not working for Sprite Please any one suggest me how can i Handle Sprite Component with Object Handler
Manan
  • 257
  • 1
  • 10
0
votes
3 answers

How to change font size of the flex application dynamically?

I would like to change font size of the application dynamically on button click. Any idea ? Please guide us Thanks all
flex
  • 185
  • 5
  • 19
0
votes
1 answer

how do I access image height & width, image resolution, file size using adobe flash builder 4.6?

My desktop AIR app has an area for drag n drop images. The images are assumed to be from the Local Disk where the app is running on. The drag n dropped images will be zipped up into a zip file and then uploaded to a server. The images are usually…
Kim Stacks
  • 10,202
  • 35
  • 151
  • 282
0
votes
1 answer

mobile Spark list does not show the last registers

i have a list with 41 registers( i can see only 10 at once on the mobile screen) and when i scroll down with my finger, i can only reach to the register 38. I can see the other register if i move my finger slowly, but when i release the finger, the…
0
votes
1 answer

Buttonbar selected issues, when toggling is disabled?

I have disabled toggling in button bar. this works fine. However previously selected button bar remains selected. Here is the code: if(event.newIndex == -1) { ButtonBarButton(event.target.dataGroup.getElementAt(event.oldIndex)).selected =…
flex
  • 185
  • 5
  • 19
0
votes
1 answer

Flex deserialization issue with List of Maps

I have a problem with BlazeDS to Flex mobile deserialization, so that I try to send back list of maps List> with different Objects in every Map, but when I receive this list in flex code: hastalarim = event.result as…
Zaur Guliyev
  • 4,254
  • 7
  • 28
  • 44
0
votes
1 answer

Is deep copy possible in flex?

Is deep copy possible in flex 4.5?
Sushant
  • 635
  • 2
  • 8
  • 19
0
votes
0 answers

How do you update the root view title in Flex

Is there a way to update at runtime the root view title in Flex? I tried something along the lines of:
ina
  • 19,167
  • 39
  • 122
  • 201
0
votes
2 answers

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:
Alexander Farber
  • 21,519
  • 75
  • 241
  • 416
0
votes
1 answer

Need some help in creating XML log in Adobe Air

I need to create XML log file in Adobe Air. My first thought was to use some kind of automated serialization. And I've found FlexXB library. I've created simple logger and marked the class with annotations in the following way package…
Eugene
  • 5,353
  • 6
  • 27
  • 37
0
votes
3 answers

What is the best way to open and read an excel file from a Flex Application

What is the best way to open and parse and excel file from a Flex Application built using Adobe Flash Builder 4.5. I have done tons of research, most lead me to external libraries, I could deal with that if that is the best approach, but prefer a…
0
votes
1 answer

Class Diagram from mxml - flex file

So i am building an application on flex for a client and he asked me if i can provide him with a class diagram. I was wondering if there is a simple way to do it with a program (like visio or something) as done in java. Thanx
leokan
  • 662
  • 5
  • 22
0
votes
1 answer

Flex 4.5: Custom component doesn't get visible in custom ItemRenderer

I'm developing a dynamic ItemRenderer to edition in line for Spark DataGrid. With the Click event on Edit button (first column), I'm refreshing the cell's row using grid.invalidateCell(x,y); inside this custom ItemRenderer, in the function prepare,…