Hi,
Looking for a little help if anyone has any experience with this.
I have a flash app sitting in domainA which needs to load a swf which comes from an Amazon S3 bucket.
On load I get the following error. "Error #2044: Unhandled securityError:. text="
I have put a crossdomain file in the bucket and presumed that would do the trick.
A...
I am building a website of songs library using flex, I have made an mxml file for each page, for example the home page, albums listing page, album details page, search result page and so on. I want to know how would I link them all together, for example on the home page there will be some featured albums when I click on an album am suppo...
Recently i worked in a project where i used 5 radio button to select a page number. Now the clients wants a big radio button. how can i increase the size of radio button in flex?
...
Hello,
i want to populate a horizontalList component from a xml file, the width value will be inside the xml file as well with all the data.
actually i have this code:
<mx:Model id="epg" source="epg.xml" />
<mx:Component id="customRend">
<mx:Label text="{data.description}" width="{data.width}"/>
</mx:Component>
<mx:HBox x="82"...
HI All,
Can any one please tell me the difference between target and currenttarget in flex
...
I'm using Claus Wahlers' AIR Remote Updater class (codeazur.com.br/lab/airremoteupdater/). All works fine and an update is triggered if the remote version is newer. The newer file is downloaded and the update starts. However I then get "an error has occured" message: "This application cannot be installed because this installer has been m...
I have a game with a big raster map
Now we are using jpeg (4900x4200)
And durring the game we need to scroll through this map.
We use the following:
Class Map extends mx.containers.Canvas
and mx.controls.Image on it
In constructor we have:
public function Map() {
super();
image.source = ResourceManager.interactiveM...
Hi there!
I want to use one data source (e.g. an Array) for multiple Datagrids that have different filterFunctions attached and show different columns.
First, I thought I use a very straight forward apporach:
create the Array
create an ArrayCollection for every DataGrid and set the "source" property to the Array
create the DataGrids an...
Hi!
I have a portlet. Inside of this portlet I have Flex application that displays some stats using charts. Flex recognize what stats it needs to display, by a parameter provided in flashVars. I need to create one page for each kind of stats and so every page must contain before mentioned portlet. My problem is that I can't find a way t...
OK I am trying to make it so that when a user launches my air app, it positions itself and sizes itself to whatever it was the last time it was opened.
Here is my code:
private function init():void
{
gotoLastPosition();
this.nativeWindow.addEventListener( Event.CLOSING, saveAppPosition );
}
private function saveAppPosition(e:E...
Hi I am developing my application in flex and JSP, so when I am passing values through HTTP Service Post method with request object but these values are tracing and modifying by testing team so I am planning to encrypt values in flex and decrypt it in jsp.so is there any algorithms like SHA or MD5 more secure algorithms, so please send a...
So I had a requirement to add an undo function to my app and I discovered this nifty ChangeWatcher class, but it's not doing exactly what I want and I'm hoping someone knows how.
ChangeWatcher seems to monitor assignments to the variable reference. So when I say:
myXML = <xml/>
it fires off it's function just fine and dandy, but wh...
This question extends beyond the Facebook library and is really a general architecture question. I am using the Facebook AS3 lib which has a FacebookSession class. The class contains data for a facebook session so that I can make authenticated calls to the Facebook API.
I am using the Facebook API all over my Flex app and I am tempted...
Hi,
Why we need to use event Propagation?
Thanks,
Ravi
...
Hi,
How to embed the Flex Grid in ExtJs framework.
Thanks,
Ravi
...
I created a component that is multiple datagrids side by side that share the same columns (each datagrid is the same as the one before but with different data).
Problem
The header text only shows up on the last datagrid. How can I get the text to show up on all the datagrid headers?
Here is how I instantiate the component. ...
quick question.. I'm trying to make two variables appear in one text box but I'm not sure how to do so
Here's what I have.
title1.text = dg_post.selectedItem.post_title;
date1.text = dg_post.selectedItem.post_date;
I'd like to have post_title and post_date appear in the title1 box and remove the date1 box altogether.
...
I'm not sure exactly where this is happening, but what I'm trying to do is make a scrolling ticker using flex, and it works fine when there is one of them on the screen, but when there are two, strange things happen.
The way I have designed this for live updating, when the child of my hbox goes off the screen, I remove it and add anoth...
Can't seem to bind to data from within a custom component. I've tried BindUtilis and {} but can't seem to fathom it out. Here's what I've got:
I have a class DataModel which has been made bindable
Within Mainn.mxml I have two components: DataGrid (used for testing) & CustomComponent (which extends Canvas)
When the data within DataMod...
How to get the values of a selected row in the Advanced DataGrid control in Flex ?
thanks
...