Hi,
I have some software classes(library) to run commands on any mxml file.
These classes(library) are wrapped in a SWC file. This SWC file is referenced by any sample mxml application (by adding as SWC file).
My problem is that I want to test these software classes(library) against my sample mxml file using FlexUnit. That is, I should ...
What is the difference between normal datagrid and advance datagrid.Sorting,draging columns,resizing columns are supported even in normal datagrid.
I want to add footer details like summery,average etc of each column,does AdvanceDataGrid supports these features?
...
hi to all,
I have imported a Html text into textarea using Textconverter and it works well, but I have a problem
I need to mark with "image not found" if and image inside into imported html isn't more online or simply don't exist, so if anybody can help me...
Thanks
es.
var string:String = '<img src="elvis.gif" />';
...
Hi,
I was going through this article by David Tucker (http://www.davidtucker.net/2007/10/29/cairngorm-part-3/) in which he talks about Cairngorm Events.
There are two things that I want to ask in this-
What is the significance of calling the constructor of the parent class with the event arg? super(LOGIN) in the example
Why do you ne...
I've following XMLList ,
<party/>
<party/>
<party/>
<party>A</party>
<party>B</party>
<party>C</party>
<party>A</party>
<party>B</party>
<party>C</party>
<party>D</party>
<party>E</party>
<party>D</party>
<party>A</party>
<party/>
<party>C</party>
I would like eliminate blank node and to make an ArrayCollection like ( with count of ind...
Hello,
I'm creating my first web application and I'm really confused as to what technology to go for.
My application needs to look serious (like an application), it doesn't need many colorful graphical interfaces. It only needs a toolbar, a tab bar, a split panel (preferably 3 columns), an easily-formatable text field, and a status bar...
Is there a set of open standards technologies that I can use to achieve the same way of development as in Flex and Sivlerlight? I am talking about componentization, separation of concerns, rich graphics, states and effects . Please point out some tutorials and other resources if possible.
P.S. I KNOW that this is technically possible, s...
hi,
I'm using a Repeater object in Flex. Would be possible to stop the repeater after 50 iterations.. even if my dataProvider is bigger ?
I want to display only the first 50 items. I'm using MXML to implement the repeater.
thanks
...
<?xml version="1.0"?>
<!-- This module loads an image. -->
<mx:Module width="100%" height="100%"
xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Image source="trinity.gif"/>
</mx:Module>
I have such 10 modules. Is there any Method in Module Class where i can hide and show based on user login.
...
Hi, I I have a view in Flex 3 where I use a tab navigator and a number of views inside the tab navigator. I need to be know which view was clicked because of it's one specific view then I need to take action, i.e. if view with id "secondTab" is clicked then do something.
I have set it up to be notified, my problem is that I need to be a...
So I have a s:DropDownList with data from service. When an Item from recived list is selected I perform some action (lets call it Action A) I want to add an item visible in list so that when user selects that one item I'll perform another action (lets call it Action B).
Toda when I use such code to fill my list:
<s:DropDownLi...
My project allows users to create custom css for our flex app.
In regards to compiling the CSS into SWFs on the server side:
Should I use the flex2.compiler.css.Compiler class in mxmlc-3.5.0.12683.jar?
Or
Should I invoke mxmlc from Runtime.getRuntime().exec()?
The css.Compiler class is not very well documented. Does anyone have any...
I have to undertake a project which is to make a video chat application.
The video has to be streamed from one location and can be viewed by multiple people spread out over the globe. Performance is really an issue and a delay of more than 2-3 seconds is unacceptable.
From what i gather, this can be done in Flex and also in JAVA. Any p...
We have to deploy a flex app through a series of development tiers. We are not using Blaze_DS or LCDS. My data/service urls are tier specific and are currently embedded in AS files. We'll be building the project on each tier. I'd like to make them environment variables, but am not sure what the best way to do at compile/build.
Is ther...
I am trying to create a bar char in action 3 script.
But for some reason I am getting 2 y-axis and no x axis.
Can some one help spot the error.
I have said "placement " bottom.
The chart creation method is "getBarChartData",
this method when invoked creates a barchart and adds it to a canvas.
This section is visible completely and ca...
I opened up an old project in Flex Builder 3 which runs on Adobe AIR 1.0. I believe it was originally written in Flex Builder 2. When I try to run the Adobe Air application, nothing happens. When I try to export a release build, I get this error:
If I change the main-app.xml file to use the 1.5 version of the namespace, it builds fin...
How do i decrypt an aes encryted column when using flash/flex to display the table data?
adobe flex connected using php connection class to mysql
for php, we would use aes_decrypt()
however i am not sure how i can get flex to do this.
...
Hi Everyone,
I use this pattern to test for undefined and null values in ActionScript/Flex :
if(obj) {
execute()
}
Unfortunately, a ReferenceError is always thrown when I use the pattern to test for child objects :
if(obj.child) {
execute()
}
ReferenceError: Error #1069: Property child not found on obj and there is no defau...
hello, i get this error when i retrieve an XML that only has 1 node (no repeating nodes) and i try to store in an ArrayCollection. -When I have MORE than 1 "name" nodes...i do NOT get an error. My test show that XMLListCollection does NOT work either.
TypeError: Error #1034: Type Coercion failed: cannot convert "XXXXXX" to mx.collectio...
I have a requirement where a web service call should be fired from the flex side and this web service is an async web service which would return more than one response.
In current Flex environment that I have worked in , when we call a webservice - we get a single response corresponding to that web service, but how take ma...