I use amf calls in flex application.
I've created actionscipt class with RemoteObject metatag for synchroinzation with PHP server class.
The PHP-actoinscript class conversion works well, but I've specially tested invalid case when actionscript class doesn't have field which exists in PHP class. I've got ReferenceError message in my outp...
I have a bar chart with three data points - $10, $0, $1.
Flex 3 does not display the $0 bar at the zero point (i.e "x: 0px"). Instead it is showing a 15px bar as if it is relative or weighted with the other values. This is visually deceptive because at first glance it appears that the middle bar has a positive value.
Does anyone know h...
I am trying to debug the Flex application. I am able to set breakpoints in mxml file, and application breaks on those breakpoints. But when I set breakpoint in as files, I don't see the breakpoint marker, though in breakpoints window I am shown the line no. And when I start my debugging session, the application does not break at that poi...
Hey,
I have a panel with absolute layout which has clipContents disabled. Now I want to have a component that always floats at the bottom of this container, so I set it's bottom property to the negative value of it's height
This works too, except for that when the application starts the height of legend appears to be zero, so instead...
Hello,
I have a certain behavior that i want from my screen to implement in Flex.
My screen is devided to 2 areas: Navigator pane and content pane.(from left to right)
When I shrink the browser, i want the content-pane show scroll bars and the components stay the same size originally.
When I expand the browser to right(like in wide scree...
I've been using ExternalInterface up until now in the rare cases I needed to communicate with HTML.
Is FlashVars considered a better/worse or newer/older practice?
or when do you use one or the other? What's the logic that I should follow to help me decide which one to use?
...
Using Flex, what is the recommended way of taking a webcam snapshot picture?
Something along the lines of:
var camera:Camera = Camera.getCamera();
var image:Image = /* magic goes here */
...
I have an httpservice object instantiated and have defined an event listener to handle the result.
e.g.
http.addEventListener(ResultEvent.RESULT,function (event:ResultEvent):void {
// handle result
// ...
//should I remove this anonymous event listener?:
event.currentTarget.removeEventListener(event.type, arguments.callee);
}...
Could you confirm me that:
Flex 4 is compatible and only compatible with Flash 10
Flex 3 is compatible and only compatible with Flash 9 & 10
...
Hi,
I have around 20,000 records in my grid and i have to export it to in excel sheet. Problem is it's giving error that can't have more than 5 MB in excel. Please help
...
Here's what works with ant build.xml:
<mxmlc file="${module.main.dir}/main.mxml" keep-generated-actionscript="false" output="${module.output.dir}/main.swf" fork="${flex.fork}">
<load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
<source-path path-element="${FLEX_HOME}/frameworks"/>
<compiler.the...
Hi,
I've followed the Flex in a week example, with the drop down menu that pairs the XML data to the XML node set.
For the project I am creating, I am just pulling through ONE XML file containing just one node into my application.
So my question is, How do I achieve this?
I am using HTTPService and pulling the data through, but at ...
In Flex 3, when I use
Alert.show("some text");
I will get an alert message along with the OK button. When I press the OK button I get another alert message. I have tried the following code, but it's not working.
Alert.show(" Simulation for " + id_formulator.nme + " Campaign", null, mx.controls.Alert.OK, this, alertListener, null, mx....
Hi guys,
I have created a custom column header renderer for my AdvancedDataGrid which has a text and a little button inside. Everything works just fine, until a moment when I have to return a headerText by the button click.
Since my custom renderer is an extention of AdvancedDataGridHeaderRenderer it has inherited property label which ...
I am having trouble wiring up an event listener to a fl.transitions.Transition.
Is it possible to somehow view all the events an object fires? That way I could check I am using the correct event (and possible view better ones to use).
...
Hi,
I have implemented application client-server with spring blazeDs message services using JMS message destination.
The idea is a producer declared in Java send message using activeMQ and consumer declared in Flex receives them.
I have configured the AMFChannel with a polling interval 0, but I have seen when the consumer subscribes t...
Hi,
I've already asked about getting specific XML Node data. Now I need to pull through the full XML that is parsed.
The XML is as follows
<videos>
<video>
<id>1</id>
<title>Video 1</title>
<thumbnail>1.jpg</thumbnail>
</video>
<video>
<id>2</id>
<title>Video Number 2</title>
<thumbnail>1.jpg</thumbn...
I'm porting an app from Flex SDK 3 to 4, and .swf -images are turning out to be my major obstacle.
The old app uses Canvas and .swf -files as backgroundImage. Canvas no longer supports backgroundImage, so I'm trying to use BorderContainer instead. However, when I pass the .swf as backgroundImage to the BorderContainer, it renders white...
I have a flex application being developed in Spanish, and I'd like to build it using a Spanish locale. However, the only locales installed in my SDK are en_US and ja_JP. Is there a site or resource where I can get other sets of locale files?
...
This button is basically hosted on a html page and used trough an iframe.
I believe flex does not have iframes out of the box. Are there are any good iframe components i can use?
...