active questions tagged flex3 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:53:01Zhttp://stackoverflow.com/feeds/tag/flex3http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1287792/drop-in-an-hbox0drop in an HBoxMaurits de Boer2009-08-17T12:50:46Z2009-11-26T16:14:33Z
<p>I have this HBox with drop functionality:</p>
<p>SCRIPT:</p>
<pre><code>// The dragEnter event handler for the HBox container enables dropping.
private function dragEnterHandler(event:DragEvent):void
{
if (!event.dragSource.hasFormat("items"))
return;
var dropTarget:Box = Box(event.currentTarget);
dropTarget.setStyle("borderStyle", "outset");
DragManager.acceptDragDrop(dropTarget);
DragManager.showFeedback(DragManager.MOVE);
}
private function dragExitHandler(event:DragEvent):void
{
if (!event.dragSource.hasFormat("items"))
return;
var dropTarget:Box = Box(event.currentTarget);
dropTarget.setStyle("borderStyle", "inset");
}
</code></pre>
<p>MXML</p>
<pre><code><mx:HBox id="invoiceHBox" borderStyle="inset" borderThickness="3"
height="40" width="260"
dragEnter="{dragEnterHandler(event);}"
dragExit="{dragExitHandler(event);}"
dragDrop="{dragDropHandler(event);}">
<mx:VBox>
<mx:Image source="{MailIcon32}" visible="{Boolean(invoiceEmail)}" />
<mx:Label text="{invoiceEmail.name}" styleName="heading4" />
<mx:Text text="{invoiceEmail.description}"
width="100%" selectable="false" />
</mx:VBox>
</mx:HBox>
</code></pre>
<p>When the mouse enters the HBox, it works fine. The data can be dropped into the HBox and the function dragDropHandler (a very long function) does its work.</p>
<p>However, when the mouse hovers over the VBox, the drop functionality is lost. Can the VBox container somehow inherit from the HBox? or is there another solution to this problem?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/780951/flex3-custom-item-renderer-does-not-listen-to-events-dispatched-by-parent0Flex3: Custom Item Renderer does not listen to events dispatched by parentMaurits de Boer2009-04-23T09:26:26Z2009-11-26T16:13:52Z
<p>I have a List with a custom ItemRenderer. The ItemRenderer contains a Checkbox and a Label.
The component with the List has a 'select all' checkbox.
When the 'select all' checkbox is checked, it dispatches an event that each item should listen to in order to select its own checkbox.
The eventlistener is added on creationComplete of each item, and the event is dispatched correctly when the 'select all' checkbox is selected, but the listener in the custom ItemRenderer does not listen.</p>
<p>How do I make the ItemRenderer listen to an event that is dispatched in its parent??</p>
<p>I'll add some code examples to clarify:</p>
<pre><code>------- container ----------
<mx:VBox>
<mx:Script>
<![CDATA[
public var user1 = new User(1, "Jack");
public var user2 = new User(2, "John");
public var user3 = new User(3, "Mary");
[Bindable]
public var users:ArrayCollection = new ArrayCollection([user1], [user2], [user3]);
public static const SELECT_ALL_USERS:String = "selectAllUsers";
private function selectAllChangeHandler():void
{
if (selectAll.selected)
dispatchEvent(new Event(SELECT_ALL_USERS,true));
}
]]>
</mx:Script>
<mx:CheckBox id="selectAll" change="{selectAllChangeHandler()}" />
<mx:List dataProvider="{users}" itemRenderer="myRenderer" />
</mx:VBox>
------- renderer ----------
<?xml version="1.0" encoding="utf-8"?>
<mx:HBox creationComplete="{init()}">
<mx:Script>
<![CDATA[
private function init():void
{
addEventListener (Container.SELECT_ALL, selectAllHandler, false, 0, true);
}
private function selectAllHandler():void
{
checkbox.selected=true;
}
private function selected(id:int):Boolean
{
return id==1 || id==3;
}
]]>
</mx:Script>
<mx:CheckBox id="checkbox" selected="{selected(data.id)}" />
<mx:Label text="{data.name}" />
</mx:HBox>
</code></pre>
<p>Please note that the users ArrayCollection or its containing user objects cannot be changed because I need the values later on.
So when 'selectAll' is clicked, each checkbox in the list should also be checked.</p>
http://stackoverflow.com/questions/1770799/flex3-combobox-doesnt-display-itemrenderer-when-closed1Flex3 Combobox doesn't display itemRenderer when closed.Maurits de Boer2009-11-20T14:31:29Z2009-11-26T16:13:20Z
<p>I have a combobox with a custom itemRenderer. The ItemRenderer displays some images and a label.
When the combobox opens, the items in the dropdown list display perfectly, but when its closed, the combobox doesn't use the ItemRendere, but shows "[object MyItem]". Do I need another attribute to indicate that the ItemRender also needs to be used when closed?</p>
<p>This is my tag:</p>
<pre><code><mx:ComboBox dataProvider="{myItems}" id="itemsCombo" itemRenderer="org.test.myComboBoxItemRenderer" />
</code></pre>
http://stackoverflow.com/questions/1803339/flex3-type-casting0flex3 type castingMaurits de Boer2009-11-26T12:12:40Z2009-11-26T16:12:42Z
<p>Does anyone know the real difference between the two ways of type casting in Flex 3?</p>
<pre><code>var myObject1:MyObject = variable as MyObject;
var myObject2:MyObject = MyObject(variable);
</code></pre>
<p>I prefer to use the second method because it will throw an Error when type cast fails, whereas the first method will just return null. But are there any other differences? Perhaps any advantages to using the first method?</p>
http://stackoverflow.com/questions/1802811/adobe-flex-and-air-connecting-to-a-network0Adobe Flex and Air Connecting to a network.Pennf0lio2009-11-26T10:17:22Z2009-11-26T10:17:22Z
<p>What Approach can you use to Connect Adobe Air Application to a Local Network? Examples of function is send a message to other computer that is connected to a network, sending files or viewing their desktop.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/461649/fluid-layout-of-text-in-flex32Fluid layout of text in Flex3Ian Dickinson2009-01-20T15:00:55Z2009-11-26T06:00:03Z
<p>In my Flex3 app I have some floating windows which contain variable amounts of text. The windows are meant to be user-resizable. Currently, while I can resize the windows OK, I can't get the text in a TextArea in the window to re-flow when the window is resized. I've come across blog postings that there's a size bug in TextArea that means that setting the text content does not re-size the TextArea properly, together with suggested workarounds. In my case, the content stays the same but the geometry of the container changes. What seems to be happening is that the TextArea adopts a fixed size when it is first rendered, and no amount of resizing the container changes that. Can anyone suggest a means of creating a fluid text area in Flex?</p>
<p>Ian</p>
http://stackoverflow.com/questions/760838/flex-3-send-a-http-get-request-from-flash-and-want-firefox-to-show-open-with-bo1Flex 3 - Send a HTTP Get request from Flash and want Firefox to show Open With Box.Kash2009-04-17T15:16:01Z2009-11-25T16:00:04Z
<p>Hi all,</p>
<p>I am a newb developer as far as Flex and Flash is concerned. This is what I'm trying to do:</p>
<p>1) Send a HTTP request to our server (with a custom made URL). The URL basically tells the server to send data in a CSV format.
2) The server sends a 200 OK response, which has Content-Type: application/csv and the payload is pure CSV data.</p>
<p>What I wish to do is, when firefox gets this 200 OK response, I want it to show the standard Open with box (the one that shows up when you download some file). </p>
<p>I tried doing this with HTTPService. I have a "Export to CSV" button on the flash component. Upon clicking that, the flash component is able to succesfully send the HTTP request. I however don't want Flash component to handle the response, so I don't have the 's "result" tag defined. But nothing happens. Any suggestions on how to do this.</p>
http://stackoverflow.com/questions/1793927/play-a-sound-for-a-certain-duration1Play a sound for a certain durationtit2009-11-25T00:28:29Z2009-11-25T00:46:37Z
<p>Hi,</p>
<p>I have a mp3 file and I would like to play it from one position and for a certain duration.
I have first used the Sound class, the play method where I can specify the start but not the duration.</p>
<p>I have looked then at SoundEffect class where you can specify a duration and a startTime.
However I do not know how to play it from a AS3 class not from MXML : there is a play method ... but I get no sound !! Help!</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1079404/flex-3-focusmanager-getnextfocusmanagercomponent-returns-null0Flex 3 focusManager.getNextFocusManagerComponent() returns nullKevin2009-07-03T13:39:55Z2009-11-24T16:35:31Z
<p>I have an app where I am looking to make the enter key act like a tab key. I can easily capture the keypress event and setFocus to a textinput field. The problem is figuring out which textinput field to give focus to. I have this code</p>
<pre><code>
trace(this.window.focusManager);
//returns TheWindow86.focusManager
trace(this.window.focusManager.getNextFocusManagerComponent());
//returns null
//This is what I was hoping would work
this.window.focusManager.getNextFocusManagerComponent().setFocus();
</code></pre>
<p>The code is in a controller class and "this.window" references an instance of a nativeWindow mxml file "TheWindow.mxml". The first trace works as expected, but the second one gives null. The last line is the code that I am wanting to work.</p>
http://stackoverflow.com/questions/1527743/manually-setting-max-and-min-on-a-verticalaxis0Manually setting max and min on a verticalAxis.Lochdonan2009-10-06T19:56:31Z2009-11-24T16:00:18Z
<p>I have a candlestick chart that is working great when the numbers being dealt with are large but when the numbers are small the vertical axis starts at the very top of my data and ends at the very bottom. For example if my max number in my XML is 12 and my min is 11 the charts top is 12 and the charts bottom is 11 with 11.2, 11.4, 11.6, 11.8 in between. How can I force the chart to do 22 to 1 on the vertical axis <code>({maxgraph+10} and {mingraph-10})</code>.
Please help.</p>
http://stackoverflow.com/questions/1785002/how-do-i-create-a-bidirectional-data-binding-in-flex-32How do I create a bidirectional data binding in Flex 3?Chris R2009-11-23T18:18:40Z2009-11-24T13:06:54Z
<p>I need to bind a property to an edit control and have the control write its value back to the same property. The problem is, I'm setting the source value <em>before</em> the control is created:</p>
<pre><code><mx:Panel>
<mx:Script>
<![CDATA[
[Bindable] public var editedDocument: XML;
]]>
</mx:Script>
<mx:TextInput id="docLabel" text="{editedDocument.@label}"/>
<mx:Binding source="docLabel.text" destination="editedDocument.@label"/>
</mx:Panel>
</code></pre>
<p>I call this like so:</p>
<pre><code>var xmlDoc: XML = <document label="some label" />;
var myPanel: MyPanel = new MyPanel();
myPanel.editedDocument = xmlDoc;
parent.addChild(myPanel);
</code></pre>
<p>What happens is this:</p>
<ul>
<li>the docLabel text field ends up blank (equal to "")</li>
<li>the xmlDoc's @label attribute is set to ""</li>
</ul>
<p>What I <em>want</em> is this:</p>
<ul>
<li>the docLabel text field should contain "some label"</li>
<li>the xmlDoc's @label attribute should change only when the docLabel's text property changes.</li>
</ul>
<p>How do I accomplish this, using Flex 3?</p>
<p><strong>Edit</strong></p>
<p>I have also tried this:</p>
<pre><code><mx:Panel>
<mx:Script>
<![CDATA[
[Bindable] public var editedDocument: XML;
]]>
</mx:Script>
<mx:TextInput id="docLabel"/>
<mx:Binding source="editedDocument.@label" destination="docLabel.text"/>
<mx:Binding source="docLabel.text" destination="editedDocument.@label"/>
</mx:Panel>
</code></pre>
<p>The result is the same.</p>
http://stackoverflow.com/questions/1759467/lcds-vs-blazeds0LCDS Vs BlazeDskalyaniRavi2009-11-18T22:06:10Z2009-11-24T08:30:07Z
<p>Hi Any one can explain the difference between the LCDS and BlazeDs. Both are supporting HTTPService,Webservice,Remoting service. So why we need BlazeDs or LCDS?</p>
http://stackoverflow.com/questions/470815/use-the-same-validator-on-several-controls-in-flex0use the same validator on several controls in FlexAssaf2009-01-22T21:08:58Z2009-11-24T08:04:00Z
<p>Say I have a phone-number validator in flex and I have two TextInput controls for phone numbers. I don't want to have two separate validator controls defined that have essentially the same attributes... but each validator has only one "source" attribute. How can I use the same validator on multiple control? (or any equivalent solution)</p>
http://stackoverflow.com/questions/959585/flex-tree-with-dotted-horigental-and-vertical-lines0flex tree with dotted horigental and vertical linessatish2009-06-06T12:23:27Z2009-11-24T00:00:05Z
<p>i need code for flex tree with dotted horigental and vertical lines</p>
http://stackoverflow.com/questions/1784241/editing-an-xml-document-in-adobe-flex0Editing an XML document in Adobe Flex?Chris R2009-11-23T16:22:52Z2009-11-23T20:35:02Z
<p>I am building a custom structured editor for an XML document in Flex. What I need is a way to do list operations on an XMLList with a minimum of fuss, using either an editable datagrid or a popup form (UI-wise, it doesn't matter which. Please don't focus on that). What is a good idiom for doing this?</p>
<p>Here is an example structure, with operations that I may want to do:</p>
<pre><code><itemList>
<item id="1"/>
<item id="2"/>
</itemList>
</code></pre>
<p>I might want to:</p>
<ul>
<li>add a new item at the end of the list.</li>
<li>remove an existing item</li>
<li>edit an item in such a way as to be able to cancel the edit (presumably, this means making a copy of the item, editing it, and replacing its source with the edited copy?)</li>
<li>re-order the items</li>
</ul>
<p>How should I go about doing this?</p>
http://stackoverflow.com/questions/1781534/flex-4-mxcomponent-could-not-resolve0Flex 4 <mx:Component> could not resolveBin Chen2009-11-23T07:10:22Z2009-11-23T19:23:26Z
<p>Hi, I am using flash builder 4 to run sample application from "Getting Started with FLEX 3", but the code can't run because there is one place that FB4 can't resolve, I guess this is because the library has been obsolete but after a tons of search I can't find the solution.</p>
<p>Thanks.
Bin</p>
http://stackoverflow.com/questions/1779523/adobe-flex-3-list-control-selection-and-change-event-problem0Adobe Flex 3 List Control Selection and Change Event ProblemRaza2009-11-22T18:32:29Z2009-11-23T04:33:35Z
<p>Hi</p>
<p>I created a list control at runtime as following:</p>
<pre><code>var myList:List = new List();
ListArea.addChild(myList);
myList.percentHeight = myList.percentWidth = 100;
myList.itemRenderer = new ClassFactory (components.renderers.myRenderer);
myList.dataProvider = myDataArray;
myList.addEventListener(EVENT.CHANGE, historyBarClickHandler);
//Where myDataArray is an ArrayCollection consisting of my Custom ValueObjects.
</code></pre>
<p>When i execute the code it displays my list with custom item renderer, which is fine.</p>
<p>But when bring my mouse over it, it doesn't give any colour highlight which means it is not selecting.
Secondly, when i click on any of the list item, it doesn't dispatch any change event.</p>
<p>I tried a lot but couldn't understand it.
Please Guide</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1770029/embedded-font-alignment-issue-in-flex-30Embedded font alignment issue in Flex 3Phillip Hodges2009-11-20T11:55:55Z2009-11-20T12:04:54Z
<p>Hi guys, I'm trying to fix an issue I have with Flex and some embedded fonts... To explain...</p>
<p>I have a small Flex video player that displays a text message at the end of the video. The text is dynamically loaded when the player starts... I had originally embedded the font like this:</p>
<pre><code>[Embed(source='fonts/times.ttf', fontFamily='Times New Roman', mimeType='application/x-font', advancedAntiAliasing='true', unicodeRange='englishRange')]
private var _times_str:String;
</code></pre>
<p>It rendered the text fine... However we now want to load the font dynamically also... I have done this with the CSS to SWF function and it loads the style swf fine... The only issue is the layout is now all screwed up... Here is the code that draws the TextField:</p>
<pre><code>// Configure the TextFormat object
textFormat = new TextFormat();
textFormat.font = GetFontName(slice.font);
textFormat.size = slice.size;
textFormat.align = slice.align;
textFormat.color = slice.color;
// Configure the TextField
textField.multiline = false;
textField.selectable = false;
textField.antiAliasType = AntiAliasType.ADVANCED;
textField.width = slice.width;
textField.height = slice.height;
textField.x = slice.x;
textField.y = slice.y;
textField.alpha = slice.alpha;
textField.embedFonts = true;
textField.text = slice.text;
textField.setTextFormat(textFormat);
</code></pre>
<p>As you can see in the images below, with textField.embedFonts set to true the text is pushed off to one side, however when it is set to false it looks fine...</p>
<p><a href="http://philliphodges.co.uk/temp/images/player.jpg" rel="nofollow">http://philliphodges.co.uk/temp/images/player.jpg</a></p>
<p>Anybody have an idea on how to fix this...</p>
<p>Thanks in advance,</p>
<p>Phil</p>
http://stackoverflow.com/questions/1660172/how-to-export-a-datagrid-to-excel-file-in-flex2How to export a datagrid to Excel file in Flex?Angeline Aarthi2009-11-02T09:16:06Z2009-11-20T10:48:29Z
<p>How do I export data in my datagrid to an <a href="http://en.wikipedia.org/wiki/Microsoft%5FExcel" rel="nofollow">Excel</a> file in <a href="http://en.wikipedia.org/wiki/Adobe%5FFlex" rel="nofollow">Flex</a>?</p>
<p>Can anyone provide some examples for that? I am browsing but couldn't find out a single example of that kind.</p>
<p><strong>EDIT</strong></p>
<p>Browsed a lot and found out how to convert datagrid data to csv format. Now How to convert that to excel? Is there a way to do that without using any server script ? Can't it be done in Flex alone?</p>
http://stackoverflow.com/questions/1743308/tile-inside-accordion-does-not-resize-correctly0Tile inside Accordion does not resize correctlyTWith2Sugars2009-11-16T16:35:46Z2009-11-20T06:44:52Z
<p>In a Flex application I'm building I have an Accordion with a Tile component as shown:</p>
<pre><code><mx:Accordion id="accordionShoppingBasket" width="100%" resizeToContent="true">
<mx:VBox width="100%" height="100%" >
<mx:Tile id="tileOutNow" width="100%" height="100%" horizontalGap="12" verticalGap="30" paddingLeft="20" paddingRight="20" paddingBottom="20" paddingTop="20" verticalScrollPolicy="off" />
</mx:VBox>
<mx:VBox width="100%" height="100%">
<mx:Tile id="tileThisWeek" width="100%" height="100%" horizontalGap="12" verticalGap="30" paddingLeft="20" paddingRight="20" paddingBottom="20" paddingTop="20"/>
</mx:VBox>
<mx:VBox width="100%" height="100%">
<mx:Tile id="tileFutureRelease" width="100%" height="100%" horizontalGap="12" verticalGap="30" paddingLeft="20" paddingRight="20" paddingBottom="20" paddingTop="20"/>
</mx:VBox>
</mx:Accordion>
</code></pre>
<p>The items I'm adding to the tiles are a canvas with an image inside that.</p>
<p>The data for the tile is added via the addChild method; and this works for the first 4 rows of children, the accordion control resizes to accommodate the tile control. After the first 4 rows the children are still being added but the accordion no longer resizes to fit the content. </p>
<p>I'm not 100% sure what's causing this, any ideas?</p>
<p>Cheers
Tony </p>
http://stackoverflow.com/questions/1759270/why-is-iconfield-ignored-for-branch-nodes-with-the-flex-tree-component1Why is iconField ignored for branch nodes with the Flex Tree component?Marplesoft2009-11-18T21:41:31Z2009-11-19T19:31:05Z
<p>I'm using the iconField property of the Flex Tree to dynamically set the icon that a node should use. This works fine for leaf nodes but for branch nodes it doesn't seem to respect my iconField and instead just shows the default folder node. </p>
<p>Here's a simple repro:</p>
<pre><code><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
[Embed("assets/icon1.png")]
public var icon1:Class;
[Embed("assets/icon2.png")]
public var icon2:Class;
]]>
</mx:Script>
<mx:XML id="dp">
<node label="Sales" icon="icon1">
<node label="East" icon="icon2"/>
<node label="West" icon="icon2"/>
</node>
</mx:XML>
<mx:Tree dataProvider="{dp}" labelField="@label" iconField="@icon"
width="100%" height="100%" />
</mx:Application>
</code></pre>
<p>What happens is that icon2 shows for the East and West nodes but icon1 doesn't show for the Sales node. How can I get this to work?</p>
http://stackoverflow.com/questions/1400458/why-are-some-of-my-assets-0-byte-in-size-when-i-build-a-component-using-compc0Why are some of my assets 0-byte in size when I build a component using compc?Chris R2009-09-09T15:40:23Z2009-11-19T16:56:23Z
<p>I'm building a flex .swc library using Ant, and many of the assets that are supposed to be in the file are not being copied, instead creating 0-byte entries in the .swc.</p>
<p>Here is the ant compc target that is doing the creation. I've tried both compiler.include-libraries and compiler.library-path here, which is why the latter is still present and commented out. Neither worked.</p>
<pre><code><compc headless-server="true"
default-frame-rate="${flex.default-frame-rate}"
debug="${flex.compiler.debug.mode}"
directory="false"
output="${project.swc.dir}/${project.swc.name}.swc">
<source-path path-element="${project.src.dir}"/>
<source-path path-element="${FLEX_HOME}/frameworks"/>
<compiler.include-libraries dir="${FLEX_HOME}" append="true">
<include name="*.swc"/>
<include name="bundles/{locale}/*.swc"/>
<include name="libs/*"/>
</compiler.include-libraries>
<!-- List of SWC files or directories that contain SWC files.
<compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
<include name="libs" />
<include name="../bundles/{locale}" />
</compiler.library-path>-->
<include-sources dir="${project.src.dir}">
<include name="**/*.as" />
<include name="**/*.mxml" />
</include-sources>
<include-file name="package/assets/error.png" path="${project.src.dir}/package/assets/error.png" />
<include-file name="package/assets/folder.png" path="${project.src.dir}/package/assets/folder.png" />
<include-file name="package/assets/success.png" path="${project.src.dir}/package/assets/success.png" />
</compc>
</code></pre>
<p>The output of this is a .swc file like this:</p>
<pre><code>Archive: flex/package/bin/package.swc
Length Date Time Name
-------- ---- ---- ----
0 10-16-08 12:59 mx/controls/NumericStepper.png
4741 10-16-08 12:59 locale/en_US/rpc.properties
1222 10-30-08 22:27 locale/en_US/core.properties
1130 10-30-08 22:27 locale/en_US/formatters.properties
0 10-16-08 12:59 mx/containers/ControlBar.png
6460 10-16-08 12:59 locale/en_US/messaging.properties
0 10-16-08 12:59 mx/controls/Spacer.png
3170 10-30-08 22:27 locale/en_US/controls.properties
641 10-30-08 22:27 locale/en_US/effects.properties
962 10-16-08 13:00 locale/en_US/logging.properties
0 10-16-08 12:59 mx/controls/List.png
0 10-16-08 12:59 mx/controls/Tree.png
0 10-16-08 12:59 mx/containers/HBox.png
0 10-16-08 12:59 mx/controls/Button.png
334062 09-09-09 09:34 catalog.xml
0 10-16-08 12:59 mx/controls/VScrollBar.png
0 10-16-08 12:59 mx/containers/Box.png
638 10-30-08 22:27 locale/en_US/containers.properties
1091 10-30-08 22:27 locale/en_US/SharedResources.properties
0 10-16-08 12:59 mx/controls/HScrollBar.png
0 10-16-08 12:59 mx/controls/TextArea.png
518 10-30-08 22:27 locale/en_US/skins.properties
0 10-16-08 12:59 mx/controls/ProgressBar.png
5251 09-08-09 12:44 package/assets/success.png
847017 09-09-09 09:34 library.swf
1572 10-30-08 22:27 locale/en_US/collections.properties
0 10-16-08 12:59 mx/controls/Label.png
315 09-08-09 12:44 package/assets/folder.png
0 10-16-08 12:59 mx/controls/TextInput.png
504 10-30-08 22:27 locale/en_US/styles.properties
0 10-16-08 12:59 mx/containers/TitleWindow.png
5316 09-08-09 12:44 package/assets/error.png
0 10-16-08 12:59 mx/controls/DataGrid.png
0 10-16-08 12:59 mx/controls/CheckBox.png
0 10-16-08 12:59 mx/containers/Panel.png
-------- -------
1214610 35 files
</code></pre>
<p>However, the Flex Builder output is this:</p>
<pre><code>Archive: ./bin/package-flex_base.swc
Length Date Time Name
-------- ---- ---- ----
463 03-04-09 12:58 mx/controls/NumericStepper.png
4741 03-04-09 12:57 locale/en_US/rpc.properties
1222 03-19-09 02:43 locale/en_US/core.properties
1130 03-19-09 02:43 locale/en_US/formatters.properties
510 03-04-09 12:58 mx/containers/ControlBar.png
6460 03-04-09 12:57 locale/en_US/messaging.properties
405 03-04-09 12:58 mx/controls/Spacer.png
3170 03-19-09 02:43 locale/en_US/controls.properties
641 03-19-09 02:43 locale/en_US/effects.properties
962 03-04-09 12:58 locale/en_US/logging.properties
382 03-04-09 12:58 mx/controls/List.png
373 03-04-09 12:58 mx/controls/Tree.png
555 03-04-09 12:58 mx/containers/HBox.png
483 03-04-09 12:58 mx/controls/Button.png
337860 09-09-09 09:22 catalog.xml
425 03-04-09 12:58 mx/controls/VScrollBar.png
649 03-04-09 12:58 mx/containers/Box.png
638 03-19-09 02:43 locale/en_US/containers.properties
1091 03-19-09 02:43 locale/en_US/SharedResources.properties
372 03-04-09 12:58 mx/controls/HScrollBar.png
409 03-04-09 12:58 mx/controls/TextArea.png
518 03-19-09 02:43 locale/en_US/skins.properties
313 03-04-09 12:58 mx/controls/ProgressBar.png
5251 09-08-09 12:44 package/assets/success.png
868260 09-09-09 09:22 library.swf
1572 03-19-09 02:43 locale/en_US/collections.properties
401 03-04-09 12:58 mx/controls/Label.png
315 09-08-09 12:44 package/assets/folder.png
374 03-04-09 12:58 mx/controls/TextInput.png
504 03-19-09 02:43 locale/en_US/styles.properties
542 03-04-09 12:58 mx/containers/TitleWindow.png
5316 09-08-09 12:44 package/assets/error.png
397 03-04-09 12:58 mx/controls/DataGrid.png
670 03-04-09 12:58 mx/controls/CheckBox.png
537 03-04-09 12:58 mx/containers/Panel.png
-------- -------
1247911 35 files
</code></pre>
http://stackoverflow.com/questions/1759719/create-components-dynamically0create components dynamicallykalyaniRavi2009-11-18T22:52:45Z2009-11-19T10:11:45Z
<p>Hi,</p>
<p>I have requirement in AdvancedDataGrid.</p>
<p>In Advanced Data Datagrid with columns checkbox,textfield, textarea,button,radiobutton. and ADD Button and SUBMIT Button. When i click on ADD Button, those above all fields are need to add dynamically in next row.If i click 10 times on ADD Button, 10 rows with all above fileds need to be added.</p>
<p>If Have any sample code please forward to my gmail id:rkcy000@gmail.com. </p>
http://stackoverflow.com/questions/1755986/flex-image-scale-stopped-working-after-deploy-to-server0Flex: image scale stopped working after deploy to serverTong Wang2009-11-18T13:32:33Z2009-11-18T13:36:12Z
<p>I have some code to scale an image's width according to its height after the image is being loaded. It works fine on my development PC if I point to the wrapper html using local file system path. However, after I deploy the web application to JBoss AS 5.1, it stopped working - it always sets the image width to 0, causing it to disappear. Anyone else experience similar issues?</p>
<p>Code for scale image side:</p>
<pre><code>private function scaleImage():void {
img.width = img.contentWidth;
}
<mx:Image id="img" updateComplete="callLater(scaleImage)" height="100%" />
</code></pre>
http://stackoverflow.com/questions/1378382/creating-dynamically-flex-custom-itemrender-constructor0Creating Dynamically Flex Custom ItemRender (Constructor)Javier Rodriguez2009-09-04T10:16:23Z2009-11-18T12:00:02Z
<p>Hi,</p>
<p>am creating some Advanced Datagrid with actionscript.</p>
<p>I have created an actionscript class where I extend the VBox object:</p>
<p>package core
{
import mx.containers.VBox;
import mx.controls.TextInput;</p>
<p>public class customItemRender extends VBox
{
public function customItemRender(_TextInput:TextInput, _TextInput2:TextInput)
{
//TODO: implement function
super.addChild(_TextInput);
super.addChild(_TextInput2);<br />
}
}
}</p>
<p>The problem comes up when I declare de itemrender property on the data grid:</p>
<p>AdvancedDataGridColumn.itemRenderer = new ClassFactory(customItemRender(_TextInput1,_TextInput2));</p>
<p>The compiler wont let me instanciate my customItemRender.</p>
<p>Does any one know if there is an alternative solution to solve the problem?</p>
<p>Thanks in advance for you helps,</p>
<p>Regards Javier</p>
http://stackoverflow.com/questions/1747467/hidding-file-browser-when-using-download-method0Hidding file-browser when using download methodMohdShebab2009-11-17T09:00:14Z2009-11-18T11:20:42Z
<p>Hi all
I want to hide the pop-up dialog box when I invoke the download method and set the download destination path to be constant constant , in other words, I want to set the location where I wanna the file to be saved in advance .</p>
<p>Is this possible , any help in extremely appreciated.
thanks in advance </p>
http://stackoverflow.com/questions/566682/sharedobject-flex-3-2-behaving-unexpectedly-when-query-string-present-in-url0SharedObject (Flex 3.2) behaving unexpectedly when query string present in URLrhtx2009-02-19T19:01:22Z2009-11-18T06:21:50Z
<p><strong>Summary:</strong> The behavior detailed below seems to indicate that if your app at www.someplace.com sets/retrieves data via a SharedObject, there is some sort of .sol collision if the user hits your app at someplace.com, and then later at someplace.com?name=value.</p>
<p>Can anyone confirm or refute this?</p>
<p><hr></p>
<p>I'm working on a Flex web app that presents the user with a login page. When the user has logged in, he/she is presented with a 'room' which is associated with a 'group'.</p>
<p>We store the last-visited room/group combination in a SharedObject - so when a given user logs in, they are taken into the most recent room in which they were active.</p>
<p>That works fine, but we also have an auto-login system which involves the user clicking on a link to the app url with a query string attached. There are two types of these links. </p>
<p>1) the query string includes username, groupId, and roomId</p>
<p>2) the query string includes only the username</p>
<p>Because we are working fast and have only a few developers, the auto-login system is built on the last-vist system. During the auto-login process, the url is inspected and if groupId and roomId values are found in the query string, the SharedObject is opened and the last-visit group/room id values are overwritten by the param values.</p>
<p>That works fine, also, when the app is hit with a query string of the second type (no groupId and roomId params), the app goes to the SharedObject to get the stored room and group id values, as it normally would. And here's the problem:</p>
<p>The values it comes back with are whatever the last room/group param values were, not whatever the last last-visit room/group values are.</p>
<p>And if the given user has never hit the app with query string that included group and room id values, the app gets null values from the SharedObject.</p>
<p>It took some digging around, but what it looks like is happening is that a second set of data is being stored/expected in the SharedObject if a query string is present in the URL.</p>
<p>Looking at the .sol file in a text editor I see more untranslated code, and additional group and room values, once I've hit the app with URLs that contain query strings.</p>
<p>I'm not finding anything on the web about this, but that may just be due to a lack of necessary search skills.</p>
<p>Has anyone else run into anything similar? Or do you know how to address this?</p>
<p>I've tried setting Security.exactSettings to false, already - was really hoping that was going to work.</p>
http://stackoverflow.com/questions/1495521/how-create-a-flash-custom-button-and-use-it-in-flex1How create a Flash custom button and use it in FlexEran Betzalel2009-09-29T23:57:59Z2009-11-18T05:18:11Z
<p>I'm using Flash CS4 and Flex 3.4.0. I'd like to create a <strong>vector-graphic</strong> button in Flash and use it in Flex.</p>
<p>I'd tried to install the <strong>Flex Component Kit</strong>, but it won't add me the 2 commands I need for the conversion as stated <a href="http://help.adobe.com/en%5FUS/Flash/10.0%5FUsingFlash/WSFD77A256-0DE1-46c7-86FB-CC4A8AE2EAA6.html" rel="nofollow">here</a>.</p>
<p>Anyone has seen/dealt with this problem before?</p>
http://stackoverflow.com/questions/1673295/sandbox-violation-on-second-socket-send2Sandbox violation on second socket sendSimon2009-11-04T11:44:30Z2009-11-18T03:08:46Z
<p>Hi, </p>
<p>I have a Flex client using a Flash binary (TCP) socket for communication with a Java server. I have a localhost (Apache) server providing a crossdomain.xml file which is wide open just while I am testing.</p>
<p>My code successfully loads the policy file on startup.</p>
<p>I then connect the socket to the server without any difficulty and send a message and get a response. All good so far. </p>
<p>However, when I send a second message through the same socket I get a pause of about 12 seconds then a sandbox violation error:</p>
<pre><code>Security Error: Error #2048: Security sandbox violation: file:///C:/apache_root/ttt1/ttt1.swf cannot load data from localhost:45455.
</code></pre>
<p>This is the same port and socket through which the first message succeeded. </p>
<p>I tried re-loading the policy file before every send, but I get the same result. </p>
<p>Any idea why this might be happening? I clearly have an open socket at one point. I am flushing the socket after each send and I tried doing that after each read as well, but the same result.</p>
<p>Thanks in advance</p>
<p><strong>EDIT:</strong><br>
If I recreate the socket prior to every call my code works. I am struggling to believe that this is correct, but maybe there is a Socket setting I am missing.</p>
http://stackoverflow.com/questions/853868/mxtext-wrap-inside-of-mxlist0mx:Text wrap inside of mx:ListKevMo2009-05-12T17:18:44Z2009-11-17T22:50:34Z
<p>I have a mx:Text tag with some text I would like to display in a list. The code is below.</p>
<pre><code><mx:List id="projectList"
width="100%"
height="100%"
dataProvider="{project.projectRequirements}"
borderThickness="0">
<mx:itemRenderer>
<mx:Component>
<mx:HBox height="100%"
minHeight="20"
paddingBottom="0"
paddingLeft="0"
paddingRight="0"
paddingTop="0"
width="100%"
horizontalScrollPolicy="off"
verticalScrollPolicy="off">
<mx:Text width="100%"
fontSize="12"
text="{data.requirement.requirementText}"/>
</mx:HBox>
</mx:Component>
</mx:itemRenderer>
</mx:List>
</code></pre>
<p>If I manually set the height of the mx:HBox to something i know will allow for several lines, then the text will wrap. I was really hoping each component in the list could be a different height, determined by the amount of text. Some of the text is 1 line, some is 4 or 5.</p>