I'm using Flex 4 and Flash Builder 4. I just want to learn to create components and I created an mxml component as follows and included it in my application:
<?xml version="1.0" encoding="utf-8"?>
<s:TextInput xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="libra...
Hi Guys,
I have a flex application, the display of this application is build with many containers.
I have a FlexEvent.UPDATE_COMPLETE on each of the displayObjects.
What do I want to accomplish?
I want to handle the event only on the top level where it occurred, for instance, if I have a grid and the update occurred in a label somewher...
I have a tabbar whose dataprovider is a viewstack and the viewstack contains a group of vbox containers. I am trying to hide one of the vboxes based on a certain condition but the tabbar still shows the corressponding tab for the hidden vbox. I set the visibilty and includeinlayout of the vbox to false but the tab still exists.
Thanks i...
O.K I'm really confused about some resizing behaviour in flex and I'm hoping somebody can explain whats going on to me.
I have a container movieclip 3 movieclips deep.
MC2 is inside MC1 and MC3 is inside MC2.
I have another movieclip that contains a bimap image that is 55 pixels wide and 38 pixels high.
When I add this movieclip to M...
Hi
I need to play a .mov file backwards in my Flex app. Some help??
...
Hi
Is there a video player for Flex which allows me to play videos at slower or faster rates and reverse play it?
...
I'm trying to organise my code better and figured it would be good to place the pop-up logic within the component that's being popped-up. However, I can't seem to do this without causing one error or another. I also need to make the pop-up modal.
I'm doing something along these lines (psuedo code):
<mx:TitleWindow >
<mx:Label id=...
I am embedding a flash file in my flex file and then trying to add it to the stage. IU try addChild to a canvas element and to a container element, but it keeps giving me the error, the symbol "myBtn" is cannot be converted to a IUIcomponent.
I understand that I need to place everything inside some sort of component, but what is the pro...
I have a very large problem. I've written a large app using Flex3/Tomcat/BlazeDS/Spring that has worked very well while developing locally, fine when I deployed to a common dev environment, but then fails very often when deployed to our test environment.
The failures seem to happen most when a remoting request takes a good bit of time ...
I'm looking to create a Flash Map with multiple zoom levels.
Ideally what I'd like is to be able to click onto a 'state' area, and then have the map zoom down to a sub-area (which can then either have a link or zoom down to yet another sub-area). Ideally I would like to be able to define sub-areas recursively (e.g. state area, region ar...
Hello there,
Brief details: I'm using Flex 3.5.
I have a Tree component that's used as a navigation menu between different 'pages'.
When the user clicks a certain option in the menu, I switch the 'page' by switching between State components in my application.
The thing is that when the user indeed clicks an option in the menu, I want t...
I have a combobox with values;
ONE
TWO
THREE
And I am using labelFunction to display it as formatted value;
SELECT ONE
SELECT TWO
SELECT THREE
So when I use selectedItem from the combo I get SELECT ONE as a value instead of just ONE
What would be the proper way to use the labelFunction just to display dat...
Hi
I know that in C# when you pass an object (non primitive) to a method the following is true:
A reference to the object is passed
Changes made to the object in the method are reflected outside of the method.
Also, you can pass a reference to a reference in C# e.g this.changeObject(ref myObject);, in which case:
Changes to the ...
Hello stackOverFlowers,
I'm creating an flex 3 application with 3 togglebuttonbars.
What i would like to do is disable the tooltip of the buttons on one togglebuttonbar.
Does anybody know how i can access the buttons on the togglebuttonbar to disable the tooltips?
I don't want to disable all the tooltips off the total application(Tool...
Hi,
I'm building from scratch a web application that is not trivial (have some algorithms and calculations in the backend) but not too complex (it doesn't have to process lots of records during runtime.)
We thought about using Django for the backend in order to be able to develop the application fast with flex based GUI.
I'm a Java dev...
Users of my Flex application report that sometimes the application is freezed when the browser window is minimized or they select another active tab over it. In this suspended state, the application receives no CPU share and all network connections it uses are closed. When the browser window is restored, the application is resumed. This ...
I have an editable datagrid, and whatever change I made it gets automatically saved.
Is there a possibility to disable this automatic save, and only save it when I click a button. And is it possible that at the button click I save data even if I have modified it in multiple rows, so the complete changes get saved?
...
how can i get a title window with all rounded courners, so that i may make it whole round or circular shape ?
i want shape like circle..
...
Is it possible to change the width of an insert TAB character in a Flex TextArea?
I'm capturing FocusEvent.KEY_FOCUS_CHANGE events and manually inserting a "\t" into a text area styled with an embedded monospace font. By default, the TABs are being displayed two and a half monospace characters wide... I need them to display five monospa...
I use an item renderer to display a checkbox in my datagrid like;
<mx:DataGridColumn headerText="Visible" dataField="visibleInd" width="48"
itemRenderer="mx.controls.CheckBox"
rendererIsEditor="true"
editorDataField="selected"
/>
And that works fine, but the checkbox is aligned left like;
How can I align it in the middle?
I hav...