flex3

How Do I Programmatically Dispatch an Itemclick Event in Flex 3?

Hi, I need some help with programmatically dispatching an itemclick event in Flex 3. For example, I've got a popupmenubutton as follows: <mx:PopUpMenuButton id="myPopUpMenuButton" label="Neighborhoods" dataProvider="{myNeighborhoodList}" itemClick="myPopUpMenuButtonClickHandler(event)" /> Let's say that the myNeig...

flex combobox arrow custom image

Hi all, In my Flex AIR application I have to customize the Combobox with custom arrow icon. I got the properties to change its color but didn't get any property to change the icon itself. After Googling I got some links of skinning the combobox but they were for FLASH CS4, but I am on Flex. Not getting any solution. Please help. Thank...

cairngorm 3 architecture

I heared the cairngorm is not a framework and parsely framework is inbuilt(IOC container). So we here no need to use the frontcontroler to control the request to respose. Can any one please send ma clear architecture of the cairngorm3. I had searched documents for cairngorm 3 architecture but not found anywhere. Is it necessary to know...

How to read the Dynamic form Child data in Flex ?

i created a form dynamically by adding each component in action script, now i want to get back the text/data entered in to that each component dynamically? private function loadAllComponents():void { var formItemArray:Array = new Array(); for(var i:int=0; i< Application.application.designList.lengt...

event phase -Capture phase in flex

Hi, I read a document, capture phase is check for the event from target to root node. means buttoncontrol to panel container like.... Application Panel TitleWindow Button But i have 2 panels under the same application container and 2 panels have a button controls and events. So now the flash playe...

Flex: Load PDF into Sprite for printing

I have pre-existing PDF files which I would like to send to a PrintJob in Flex 3. I can load the files fine with UrlRequest, but I need to somehow get the data into a Sprite to be included into a PrintJob. Is there a way to do this, or should I go another route? (I've seen the hidden iFrame example, but I was hoping for a way to do thi...

[flex3] google maps w/o maps api key?

New to the Google Maps API, so this may be a simple question. I've got a Flex application that uses the Google Maps component. Is it possible to configure the component to use the v3 API (no maps api key)? If not, is there a workaround to use the Javascript API? Or a timeline for providing swc using v3? I currently perform client-si...

Flex RSL throws NULL exception

Hi I am implementing RSL. Currently only converting framewrok.swc as RSL. I compile it with the desired build script. The application compils well but when I load the app, it throws NULL exception the moment I any interaction which initializes a panel. Setting statis-rsl="true", makes the app run smoothly. Any pointers? Thanks in ad...

Two-way data binding in actionscript causes stack overflow

Hi - I'm binding two AutoCompleteModified objects to one another; meaning you type in one and it selects the correct object in the other. It works fine when I define it in MXML: However, a user can add a new row to a Grid and then I set up the binding and objects via actionscript and it gives an 'undefined' error: ChangeWatcher lin...

Upload and download in flex

Hi i had a problem with file uploading and download i am using the example code from the adobe site my problem is when running from flex ide it works fine but when running on sever it fails to get the file iam using flex3,jboss server and maven to build the war file Could any pleae help me .............. Thank you ...

flex builder 3 problem

i am using flex builder 3.I have this simple practice app.it's a whenever I click the green button at the top of the IDE, ofcourse it will pop out the window of the app..I canged the tag to , when i clicked the green button, it didn't pop out the window....now the problem is, when i reverted it back to the former, the window doesn't po...

Can I add a disabledIcon to a Flex Menu for use in PopUpButton

I am using the Flex PopUpButton & data binding a Menu object to the popup. I successfully added an icon to a menu item; however, it does not look like Menu supports the disabledIcon property common in many other elements for use when enabled: false for that menu item. Is it possible to extend the Flex Menu class to use disabledIcon? Sho...

Hidden Features of cairngorm

Hi, I found a lot of interesting info in the 'hidden features of...' series. I am very new to cairngorm . What are some of the hidden features of cairngorm. ...

flex radar chart

here is the the radar chart for that chart the data provider is subject = ["A", "B", "C", "D", "E", "F"]; var ac:ArrayCollection = new ArrayCollection(); var ac1:ArrayCollection = new ArrayCollection(); for (var i:Number = 0; i<subject.length; i++) { Alert.show(" the val is"+subject[i]+" val"+i); ac.addItem({subject: subject[i],...

disable datagrid header rollover color and selection collor

how could i remove these two colors for the header.... i could override rollover for the columns and leave the selection, but i want to remove these two effects from the header and i couldn't find a way to do that.... ...

How to drag and zoomin, zoomout a container like maps?

Hi All, I am doing a heatmap project,and want to drap and zoomin,zoomout container google map. whenever we use mousescroll, we have to zoomin and zoomout and whenever we click container able to drag. i find the way to drag, but i need a solution like when we move container to leftside inside another container the unshow part which i...

Flex air Updater problem

Hi I have got a problem in my application while using Flex Air updater. Note that i use Air 2.0.2 on windows 7. Sometimes while updating the process blocks and the update stop. I have to kill my application process to allowed updating process run correctely. I use this methode for updating my application: import flash.fileSystem.File; ...

Flex RSL - IE shows Error #2124: Loaded file is an unknown type.

Implemeting RSL in Flex 3.2 The build comils perfectly but opening it shows Error #2124: Loaded file is an unknown type. URL: Whereas I have confirmed the requisite files are there in the folder. i.e. SWZ/SWF. I also noticed we assetCache does not contains framework swz. Any pointers ? ...

SOAP error, what does this mean?

I'm writing a program in Flex 3 that uses a webservice written in VB to access my company's SQL servers. After compiling the code the first thing the program does is go out to the servers and grab a bunch of data. Most times (not every time) I get this error during one of my webservice calls: [RPC Fault faultString="SOAP Response c...

How to close x number of popups one by one according to their visiblity?

Hi, Lets suppose, there are 4 popups in my application and a viewer presses Escape once. Now i want application to close the popup which is on the top. I dont know how to accompish this because i dont know thich popup is to the front right now. Regards Max ...