Adobe Flex is a software development kit (SDK) released by Adobe Systems for the development and deployment of cross-platform rich Internet applications based on the Adobe Flash platform.
0
votes
2answers
4k views
how to change the bar color in bar charts
how to change the bar chart color in bar charts?
Thanks,
AravindakumarThangaraju
0
votes
4answers
2k views
Flex: errors in generated *WatcherSetupUtil?
If the planets are not correctly aligned when I run a Flex 3.5 build, the .swf produced immidiatly throws a null-object error from the _MyAppWatercherSetupUtil:
TypeError: Error #1009: Cannot access ...
0
votes
2answers
3k views
Bindable combobox - selected item/index
I am trying to bind a datagrid item to a combox, so that when the user selects the item in the datagrid the form displays the selected data for editing, however one of my items is a combobox using a ...
0
votes
4answers
534 views
Do you know any good actionscript / flex 3 obfuscators?
Now I do know that obfuscation is never 100% safe, but it's better than nothing when attempting to avoid others from decompiling your .swf files.
I googled and found one which only changed variable ...
0
votes
1answer
14 views
how to handle change in checkbox in ACtion Scripit FLEX?
protected function inital():void
{
var _cb:CheckBox;
var _formitem:FormItem;
for( var i:int =0;i<program.list.length;i++)
{
...
0
votes
1answer
9 views
how to assign value of an dynamically array collection to check box?
protected function inital():void
{
var _cb:CheckBox;
var _formitem:FormItem;
for( var i:int =0;i<program.list.length;i++)
{
_formitem = new ...
1
vote
2answers
1k views
flex URLLoader get Location header
I'm sending POST request using URLLoader and URLRequest with XML data. Then API sends response with redirect page(Location header) and i want to get this URL. How do I catch this response?
UPD:
...
1
vote
1answer
36 views
addition in flex 3
I recently was working on a checkout system based in flex 3 and had an order total that didn't make sense to me. I was adding a subtotal, shipping cost, and tax. All 3 of those values were rounded to ...
1
vote
1answer
24 views
Flex event bubbling/capturing mode
can some one pls give a simple example where we can use flex event capturing mode rather than bubbling mode?
Most of the time we are using bubbling mode and we keep use_capture to false ...
0
votes
0answers
8 views
Flex 3 - Is it possible inspect page fields value and click stream events in Adobe Flex from outside of Adobe Container
I have an old Flex 3 based application, which has quite some tabs and text fields that I want to inspect using 3rd party tools. By term "inspect", I mean to see through the runtime value of certain ...
0
votes
1answer
33 views
How to move a flex page from bottom to top?
I have a Flex component that is very long. I want to add a save button in the bottom of component. when i click on save button i am changing the state where it displays another component. Do anyone ...
1
vote
1answer
36 views
how to pass value from java to flex?
I have a code of JDBC which connects to database,returns the result in ResultSet which fetches two columns emp_id and emp_name with different rows every time. So rows can not be constant at all. I ...
0
votes
2answers
43 views
set focus in button when open popup in flex
I'm having problem to set the focus on a button to open a popup.
The button gets the focus, but it does not get the appearance that focu.
It is as if no component was the focu.
My source ...
2
votes
5answers
4k views
Flex 3 focusManager.getNextFocusManagerComponent() returns null
I have an app where I am looking to make the enter key act like a tab key. I can easily capture the keypress event and setFocus to a textinput field. The problem is figuring out which textinput field ...
0
votes
1answer
22 views
how to fullscreen with keyboard input enable on flex 3.6a sdk? theres no class on StageDisplayState.FULL_SCREEN_INTERACTIVE?
i tried using fullscreen interactive using 4.6a sdk but i need to run my application on 3.6a sdk ..can somebody tell how can i solve this..i cannot change my flex application because some class are ...
5
votes
3answers
2k views
Is there a good way to get a tri-state checkbox in flex?
I've had a good rummage around the interweb and can't seem to find any examples of a tri-state checkbox. It doesn't look to be supported in the SDK and I can't find any examples online.
I would ...
1
vote
1answer
43 views
How to get the Full stack trace of all the methods executed while rendering?
In my Flex application i need to get the stack trace of the methods executed from the creation of my application and need to check how much time spend for rendering a particular component or ...
0
votes
0answers
23 views
Flex do not detect chenage in mx:TextInput when pasting data
I am using Flex 3.5 in my application (for this version I have licence).
I noticed some problem when using Windows version of FlashPlayer (on Linux debug version all is working fine).
I have form ...
0
votes
0answers
32 views
Need suggestion to display XML in Flex Advanced Data Grid
I have xml like this,
<Manager>
<name>AAA</name>
<empid>111</empid>
<age>45</age>
<Reportees>
<Reportee>
...
1
vote
2answers
3k views
Flex 3 - Send a HTTP Get request from Flash and want Firefox to show Open With Box
I am a newb developer as far as Flex and Flash is concerned. This is what I'm trying to do:
1) Send a HTTP request to our server (with a custom made URL). The URL basically tells the server to send ...
0
votes
5answers
3k views
How to reset/reload a flex application with out refreshing the html page or reloading the SWF file?
I have a flex application that has a home button. I need to reset the application when this button is clicked. I can't use navigateToURL or ExternalInterface.call("window.location.reload"); as its not ...
0
votes
2answers
305 views
How to create and write data into a file using flex3?
I want to create a file and write some data (userid) into the file at first run of my application, during the second run all the operation (will go to the next state) based on the file data, is it ...
0
votes
0answers
29 views
Showing warning on my Flex 4.6 Project give me the details of this Warning
I am using Flash Builder 4.6. Creating Flex Application, i am showing warning on my code the Warning is. 'This compilation unit did not have a factoryClass specified in Frame metadata to load the ...
0
votes
1answer
11 views
How to change the defalut Roll over color of LinkBar
I am using link bar and by default when I click on the links it shows the blue color in the link background. I want to change this blue color to green color.
How do i do that?
Thank's in advance
2
votes
1answer
63 views
Populating combobox with data from a datagrid, receiving data from a sqlite database
I'm still a newbie to Adobe Air/Flex, and still fairly new with SQL.
I've downloaded this (http://coenraets.org/blog/2008/11/using-the-sqlite-database-access-api-in-air…-part-1/) code and have been ...
0
votes
0answers
30 views
How to load a swf file using preloader in flex
I need to add a swf file along with preloader.
How can I do that? I have gone through http://blogagic.com/14/the-blogagic-custom-flex-preloader#comments this example.This one is quite good, but how ...
0
votes
1answer
35 views
Flex Regular expression help needed
I have created the regexp which allows me to enter == > (digit(0-9)).(digit(0-9) - for 2 decimal)
I am not sure how do I stop, to allow entering "0" more than once.
This is what i have tried:
...
0
votes
1answer
54 views
Unable to Align data in Datagrid
Hi I have issue with alignment of data in the spark datagrid column after Rendering. All the headers are aligned towards left, however i would like to do the following
1. Middle the column header ...
0
votes
1answer
4k views
Flex 3 error: “Can not resolve a multiname reference unambiguously”
I'm quite new at flex and have been following a game tutorial. I've created a class named Bounce (Bounce.as) but when I try to compile, I get the above error. I've been searching forums and help, but ...
0
votes
2answers
43 views
here is the code to fetch username and password from the xml file but it does't fetch the the data?
Here is the code to fetch username and password from the xml file but it does't fetch the the data?
private var myXML: XML = new XML();
private function connect(event: Event): void {
var str1: ...
1
vote
1answer
91 views
how to handle external links in HTML component in adobe Air?
I have an AIR Project which has a HTML component. This HTML component Load a URL. Once specified page is loaded, there are some links on the page that need to be open in separate HTML tabs.
My ...
0
votes
1answer
25 views
Cannot force IDEA to work with maven created Flex project
I am using IDEA 10.5.4 (I have licence for that version of IDEA)
I have maven project which part are Flex mxml files.
Application compiles with maven and works properly when target war is deployed in ...
0
votes
0answers
8 views
as3xls > abrupt data truncation
One problem with the as3xls library is that text larger than 257 characters gets abruptly truncated.
I checked out here ,
the original author doesn't seem to have updated the library yet.
Are there ...
0
votes
2answers
122 views
Using checkbox filtering data in datagrid
on selecting a checkbox data in datagrid must filter and on deselecting checkbox the default data in datagrid must appear .
0
votes
2answers
30 views
Not able to print some characters(e.g. €) in flex
I have tried to print some characters(e.g €) on screen dynamically from an external XML. All I got on screen is small rectangle. If I set a €(euro symbol) of a Label's text property in code(i.e. ...
1
vote
1answer
942 views
Building Flex project with Ant. “The class not found in jar file: mxmlc.jar”
We've been tirelessly working on trying to catch up on our deployment that was due on Tuesday, so now that we have reached a point of deploying our application, Ant seems to be having difficulties ...
0
votes
1answer
17 views
How to manage Two WindowedApplication in Flex?
Case:
1) There are two .mxml files (Windowed Application): one is Log-in(Active Window/ Start up Window) and other is Main Window.
2) Main Window has viewstack
3) On log-in successful, ...
0
votes
1answer
11 views
How to get horizontal center position of hslider in flex?
i want to user horizontal position of hslider instead of x position. so how to get horizontal center of any component in flex? please help me out.
thanks in advance
0
votes
2answers
56 views
Changing color of datatatip in column chart in Flex3.0
I have a column chart in flex3.0. I am not able to change the font color or the background skin color of the the Datatip. I have datatip set as true and not getting any function to change for Datatip.
...
1
vote
0answers
25 views
Proper Flex 3 control (example would be great too) to display dynamic array
I need to display a table represented by the 2-dimensional array object (typed Object), with column headers and row headers coming from two separate Array objects. Size of the Array objects ...
0
votes
1answer
38 views
Redirect from mxml to another mxml
I am very new to Flex & Action script and here is my requirement:
if user click on Login button (on login.mxml) it redirects to success.mxml page which is already implemented in my project. As ...
0
votes
0answers
4 views
Unified Styling of components using swc file?
We have couple of applications developed in flex across the org, but all components look and feel is different though components are same.we wanted to apply the unified styling for all , meaning if i ...
0
votes
1answer
106 views
how to change background color of PopUp window in flex
I have developed a application where it contains few PopUp windows. whenever popup comes the background of the popup is little brighter, is there any way that i can make PopUP Background little ...
0
votes
1answer
39 views
Edit mxml code from other class in actionscript in Flex
I've got one class, that describes UI in mxml and another that holds logic in as.
Is there some way, how to change UI via changing mxml based on the value of some variable in my actionscript class?
...
0
votes
1answer
42 views
direction property in Flex 3.6 is not working
According to the documentation:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/controls/Label.html
property direction is avaliable from flex 3 but you have to use it from ...
-1
votes
1answer
88 views
How to refresh itemrenderer in flex
I have developed a flex application where it contains a itemrenderer which displays list of items. The problem is if i select a item the background gets highlighted and if i go to another page and ...
0
votes
1answer
33 views
ObjectUtil.copy won't copy any ArrayCollection
For a while now in my app I've used ObjectUtil.copy to copy array collections. Recently we've been making a lot of changes to the app and its started breaking on any of my copy commands. I originally ...
-1
votes
1answer
52 views
Are dispatch events not necessary in Flex/ AS 3.0 [closed]
I am creating a application, in which i am calling many functions, But some say, its not the right way to right the functions, you need to dispatch the events for better results. Please can anyone ...
9
votes
5answers
10k views
Fastest way to delete one entry from the middle of Array()
What is the fastest way to delete one specific entry from the middle of Array()
Array is large one having Strings.
I dont want just to set Array[5] = null, but instead array size should be reduced ...
0
votes
1answer
43 views
Hide Cursor in Text Input of Numeric Stepper on Mouse Roll Out in Flex
How can I hide cursor in the text input field of Numeric Stepper on Mouse Roll Out Event in Flex?





