active questions tagged flex3 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:53:01Z http://stackoverflow.com/feeds/tag/flex3 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1287792/drop-in-an-hbox 0 drop in an HBox Maurits de Boer 2009-08-17T12:50:46Z 2009-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>&lt;mx:HBox id="invoiceHBox" borderStyle="inset" borderThickness="3" height="40" width="260" dragEnter="{dragEnterHandler(event);}" dragExit="{dragExitHandler(event);}" dragDrop="{dragDropHandler(event);}"&gt; &lt;mx:VBox&gt; &lt;mx:Image source="{MailIcon32}" visible="{Boolean(invoiceEmail)}" /&gt; &lt;mx:Label text="{invoiceEmail.name}" styleName="heading4" /&gt; &lt;mx:Text text="{invoiceEmail.description}" width="100%" selectable="false" /&gt; &lt;/mx:VBox&gt; &lt;/mx:HBox&gt; </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-parent 0 Flex3: Custom Item Renderer does not listen to events dispatched by parent Maurits de Boer 2009-04-23T09:26:26Z 2009-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 ---------- &lt;mx:VBox&gt; &lt;mx:Script&gt; &lt;![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)); } ]]&gt; &lt;/mx:Script&gt; &lt;mx:CheckBox id="selectAll" change="{selectAllChangeHandler()}" /&gt; &lt;mx:List dataProvider="{users}" itemRenderer="myRenderer" /&gt; &lt;/mx:VBox&gt; ------- renderer ---------- &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:HBox creationComplete="{init()}"&gt; &lt;mx:Script&gt; &lt;![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; } ]]&gt; &lt;/mx:Script&gt; &lt;mx:CheckBox id="checkbox" selected="{selected(data.id)}" /&gt; &lt;mx:Label text="{data.name}" /&gt; &lt;/mx:HBox&gt; </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-closed 1 Flex3 Combobox doesn't display itemRenderer when closed. Maurits de Boer 2009-11-20T14:31:29Z 2009-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>&lt;mx:ComboBox dataProvider="{myItems}" id="itemsCombo" itemRenderer="org.test.myComboBoxItemRenderer" /&gt; </code></pre> http://stackoverflow.com/questions/1803339/flex3-type-casting 0 flex3 type casting Maurits de Boer 2009-11-26T12:12:40Z 2009-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-network 0 Adobe Flex and Air Connecting to a network. Pennf0lio 2009-11-26T10:17:22Z 2009-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-flex3 2 Fluid layout of text in Flex3 Ian Dickinson 2009-01-20T15:00:55Z 2009-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-bo 1 Flex 3 - Send a HTTP Get request from Flash and want Firefox to show Open With Box. Kash 2009-04-17T15:16:01Z 2009-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-duration 1 Play a sound for a certain duration tit 2009-11-25T00:28:29Z 2009-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-null 0 Flex 3 focusManager.getNextFocusManagerComponent() returns null Kevin 2009-07-03T13:39:55Z 2009-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-verticalaxis 0 Manually setting max and min on a verticalAxis. Lochdonan 2009-10-06T19:56:31Z 2009-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-3 2 How do I create a bidirectional data binding in Flex 3? Chris R 2009-11-23T18:18:40Z 2009-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>&lt;mx:Panel&gt; &lt;mx:Script&gt; &lt;![CDATA[ [Bindable] public var editedDocument: XML; ]]&gt; &lt;/mx:Script&gt; &lt;mx:TextInput id="docLabel" text="{editedDocument.@label}"/&gt; &lt;mx:Binding source="docLabel.text" destination="editedDocument.@label"/&gt; &lt;/mx:Panel&gt; </code></pre> <p>I call this like so:</p> <pre><code>var xmlDoc: XML = &lt;document label="some label" /&gt;; 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>&lt;mx:Panel&gt; &lt;mx:Script&gt; &lt;![CDATA[ [Bindable] public var editedDocument: XML; ]]&gt; &lt;/mx:Script&gt; &lt;mx:TextInput id="docLabel"/&gt; &lt;mx:Binding source="editedDocument.@label" destination="docLabel.text"/&gt; &lt;mx:Binding source="docLabel.text" destination="editedDocument.@label"/&gt; &lt;/mx:Panel&gt; </code></pre> <p>The result is the same.</p> http://stackoverflow.com/questions/1759467/lcds-vs-blazeds 0 LCDS Vs BlazeDs kalyaniRavi 2009-11-18T22:06:10Z 2009-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-flex 0 use the same validator on several controls in Flex Assaf 2009-01-22T21:08:58Z 2009-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-lines 0 flex tree with dotted horigental and vertical lines satish 2009-06-06T12:23:27Z 2009-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-flex 0 Editing an XML document in Adobe Flex? Chris R 2009-11-23T16:22:52Z 2009-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>&lt;itemList&gt; &lt;item id="1"/&gt; &lt;item id="2"/&gt; &lt;/itemList&gt; </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-resolve 0 Flex 4 <mx:Component> could not resolve Bin Chen 2009-11-23T07:10:22Z 2009-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-problem 0 Adobe Flex 3 List Control Selection and Change Event Problem Raza 2009-11-22T18:32:29Z 2009-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-3 0 Embedded font alignment issue in Flex 3 Phillip Hodges 2009-11-20T11:55:55Z 2009-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-flex 2 How to export a datagrid to Excel file in Flex? Angeline Aarthi 2009-11-02T09:16:06Z 2009-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-correctly 0 Tile inside Accordion does not resize correctly TWith2Sugars 2009-11-16T16:35:46Z 2009-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>&lt;mx:Accordion id="accordionShoppingBasket" width="100%" resizeToContent="true"&gt; &lt;mx:VBox width="100%" height="100%" &gt; &lt;mx:Tile id="tileOutNow" width="100%" height="100%" horizontalGap="12" verticalGap="30" paddingLeft="20" paddingRight="20" paddingBottom="20" paddingTop="20" verticalScrollPolicy="off" /&gt; &lt;/mx:VBox&gt; &lt;mx:VBox width="100%" height="100%"&gt; &lt;mx:Tile id="tileThisWeek" width="100%" height="100%" horizontalGap="12" verticalGap="30" paddingLeft="20" paddingRight="20" paddingBottom="20" paddingTop="20"/&gt; &lt;/mx:VBox&gt; &lt;mx:VBox width="100%" height="100%"&gt; &lt;mx:Tile id="tileFutureRelease" width="100%" height="100%" horizontalGap="12" verticalGap="30" paddingLeft="20" paddingRight="20" paddingBottom="20" paddingTop="20"/&gt; &lt;/mx:VBox&gt; &lt;/mx:Accordion&gt; </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-component 1 Why is iconField ignored for branch nodes with the Flex Tree component? Marplesoft 2009-11-18T21:41:31Z 2009-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>&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"&gt; &lt;mx:Script&gt; &lt;![CDATA[ [Embed("assets/icon1.png")] public var icon1:Class; [Embed("assets/icon2.png")] public var icon2:Class; ]]&gt; &lt;/mx:Script&gt; &lt;mx:XML id="dp"&gt; &lt;node label="Sales" icon="icon1"&gt; &lt;node label="East" icon="icon2"/&gt; &lt;node label="West" icon="icon2"/&gt; &lt;/node&gt; &lt;/mx:XML&gt; &lt;mx:Tree dataProvider="{dp}" labelField="@label" iconField="@icon" width="100%" height="100%" /&gt; &lt;/mx:Application&gt; </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-compc 0 Why are some of my assets 0-byte in size when I build a component using compc? Chris R 2009-09-09T15:40:23Z 2009-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>&lt;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"&gt; &lt;source-path path-element="${project.src.dir}"/&gt; &lt;source-path path-element="${FLEX_HOME}/frameworks"/&gt; &lt;compiler.include-libraries dir="${FLEX_HOME}" append="true"&gt; &lt;include name="*.swc"/&gt; &lt;include name="bundles/{locale}/*.swc"/&gt; &lt;include name="libs/*"/&gt; &lt;/compiler.include-libraries&gt; &lt;!-- List of SWC files or directories that contain SWC files. &lt;compiler.library-path dir="${FLEX_HOME}/frameworks" append="true"&gt; &lt;include name="libs" /&gt; &lt;include name="../bundles/{locale}" /&gt; &lt;/compiler.library-path&gt;--&gt; &lt;include-sources dir="${project.src.dir}"&gt; &lt;include name="**/*.as" /&gt; &lt;include name="**/*.mxml" /&gt; &lt;/include-sources&gt; &lt;include-file name="package/assets/error.png" path="${project.src.dir}/package/assets/error.png" /&gt; &lt;include-file name="package/assets/folder.png" path="${project.src.dir}/package/assets/folder.png" /&gt; &lt;include-file name="package/assets/success.png" path="${project.src.dir}/package/assets/success.png" /&gt; &lt;/compc&gt; </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-dynamically 0 create components dynamically kalyaniRavi 2009-11-18T22:52:45Z 2009-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-server 0 Flex: image scale stopped working after deploy to server Tong Wang 2009-11-18T13:32:33Z 2009-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; } &lt;mx:Image id="img" updateComplete="callLater(scaleImage)" height="100%" /&gt; </code></pre> http://stackoverflow.com/questions/1378382/creating-dynamically-flex-custom-itemrender-constructor 0 Creating Dynamically Flex Custom ItemRender (Constructor) Javier Rodriguez 2009-09-04T10:16:23Z 2009-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-method 0 Hidding file-browser when using download method MohdShebab 2009-11-17T09:00:14Z 2009-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-url 0 SharedObject (Flex 3.2) behaving unexpectedly when query string present in URL rhtx 2009-02-19T19:01:22Z 2009-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-flex 1 How create a Flash custom button and use it in Flex Eran Betzalel 2009-09-29T23:57:59Z 2009-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-send 2 Sandbox violation on second socket send Simon 2009-11-04T11:44:30Z 2009-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-mxlist 0 mx:Text wrap inside of mx:List KevMo 2009-05-12T17:18:44Z 2009-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>&lt;mx:List id="projectList" width="100%" height="100%" dataProvider="{project.projectRequirements}" borderThickness="0"&gt; &lt;mx:itemRenderer&gt; &lt;mx:Component&gt; &lt;mx:HBox height="100%" minHeight="20" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0" width="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off"&gt; &lt;mx:Text width="100%" fontSize="12" text="{data.requirement.requirementText}"/&gt; &lt;/mx:HBox&gt; &lt;/mx:Component&gt; &lt;/mx:itemRenderer&gt; &lt;/mx:List&gt; </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>