Hi,
Is there a way to display the Vertical Axis outside the graph?
I need the limits of the graph to be displayed between the vertical axis, without overlapping the series over the graph.
See that screenshot of what I have:
I need to get something like:
Or I should create a custom axis renderer component that get data from this graph and…
hi,
the LineSeries is not dynamically added to my CartesianChart...
What's wrong in this code:
...
private function chartComplete():void {
var ls:LineSeries = new LineSeries();
ls.styleName = 'timeline';
ls.dataProvider =…
I'm getting XML input that looks like this
<?xml version="1.0" encoding="utf-8"?>
<data1>this is data 1</data1>
<data2>this is data 2</data2>
<data3>
<3a>this is data 3a</3a>
<3b>this is data 3b</3b>
…
I'm getting stack overflow errors when I'm trying to publish() a NetStream after close()ing it. Pasted below is the error stack:
Error: Error #1023: Stack overflow occurred.
at com.luxideus.facebook.canvas.controllers::StreamsController/onNetStatus()[...]
at…
I have a table "template" which is used in various "instances". All instances have checkboxes in the second column (for record-delete).
What would be the most effective way of traversing the table and check if at least one checkbox is selected (to enable a "delete"…
I can successfully add a validator on an item in my datagrid, by passing in the particular element in the dataProvider to the validator, but I can't get the red border to show up around the cell if the validation fails.
I have stepped through the validator, and…
When a command like play(), pause(), or seek() is called while the videoDisplay is unresponsive it gets put on a queue, how do I flush this queue so the most recent command is the only command processed?
Hello!
I'm having a problem retrieving a XMLList and I don't understand why.
I have an application that is running properly. It uses some data from two xml files called division.xml and store.xml.
I noticed that I have some data in division.xml that should be…
I'm developing two DataGrid with drag and drop support. Multiple items can be selected from the source data grid, and dropped into the target data grid.
I'm using an drag and drop event listener which completes the operation only in certain cases. I'm using…
Hy,
Is it possible to resize the application at the same moment when the Accordion size change, to make effect resize og the last one synchronised with resize of Application ?
In my code,, the Application is resized after the resize of Accordion is…
A component is created at runtime and a mediator is created and registered. All is well.
In a separate view, another instance of that component is created. The mediator is created but onRegister() isn't called the 2nd time. I don't know if this…
I've got a subclass of AdvancedDataGrid showing a tree-like data structure. How can I, given the index returned by calculateDropIndex, get the item at that index?
After reading through reams of code, it seems like the least terrible way is:
var…
I have a combobox that uses a custom itemrenderer to display an image. when scrolling up and down the list the images randomly go out of alignment. How do I stop this?
Acctually
I want to remove Child from VBox , i have id of child , but i don't to have real object that i want to remove using removeChild function of VBox
Is there a way how modules can listen to parent application event? My current solution that works is:
private function directoryRemoteObject_saveCompany_resultHandler(e:ResultEvent):void
{
this.directoryModuleLoader.child.dispatchEvent(new…
Question
Alright, I'm confused by all the buzzwords and press release bingo going on.
What is the relationship between flash and flex:
Replace flash (not really compatible)
Enhance flash
The next version of flash but still basically…
Hi,
I have a component mxml file in which i have a view stack, on click of a button i navigate to the first child, now i need to navigate to the second child during onclick of a button present in the second child. All the childs are…
The following code shows a button that allows you to select a file (should be an image) and display it into an image component. When I select an invalid image (e.g. a word document), I get the following error:
"Error #2044:…
I have a VideoDisplay that is able to connect to a source and play. After the connection times out I want the connection to be re-established when my play button is clicked. Right now when I reset the source and play the…
I have several mxml components in an app, all of which need the same variable called genericX. I've included that variable in the main mxml and made it public
[Bindable] public var genericX:Number = 102;
but I still…
Hi,
I am deploying a desktop application using AIR, and I would like to store some user-specific data on the machine such as a history of his entries. Is this possible? Where can I learn more about this?
Thanks,
Mike
Hi everybody,
I've a custom itemRenderer for my datagrid. To set the actual data I use the following method:
override public function set data(side:Object):void{
...
}
As soon as I use this function the cell…
Am using Checkbox as ItemRenderer in tilelist. Am trying to setting
checkbox selected values through xml. I got the values perfectly.. but
checkbox could not bind the values(could not accept that). It's…