Is there a way to select a certain number of nodes using e4x in Flex?
Say for example, I have an XML file with 100 "person" nodes, and I want the first 30. Or possibly 51 - 100. Is there any way to do this with e4x syntax to return an XMLList? ...
Say for example, I have an XML file with 100 "person" nodes, and I want the first 30. Or possibly 51 - 100. Is there any way to do this with e4x syntax to return an XMLList? ...
Are there any way to declare a child component in mxml which is private/protected or even static? Sure we can do this inside a script tag, but are there any other way? ...
I have a task: I need to place about 100 sprites on one canvas (with prepared grid on it). I need to place them as invisible (circles) stones, on the board, and make visible only on mouseover. The problem I come across is following, I can't place those objects accurately into the nodes on the grid. E.g. if I define stones (it's just...
How can i benchmark a website ? i want to define how many user can i handle simultaneously. Can you suggest me any read / tool that helps ? I don't think that matters but the site is a Flex application that consumes some services provided by tomcat's servlet ...
I have some XML structures like this: var struct:XML = <mh> <mi id="1" stuff="whatever"/> <mi id="2" stuff="whatever"/> <mi id="3" stuff="whatever"/> </mh>; I know I can access a subnode by "id", in this way: var stuff:Object = struct.(hasOwnProperty('@id') && @id == '2').@stuff; Now I have some similar ArrayCollection struct...
I have a grid, when i click on the edit button it goes to edit page... but i need the value in the grid also to be passed to the page. this.dispatchEvent(new DepManagementEvent(DepManagementEvent.EDIT_NAVI)); The above code lands in EDIT page... how can i move the values too. My Parent Page code. private function editForm():void { ...
Anybody that happens to know how to do this would really be helping me out. Maybe its simple, I don't know, but it involves embedded SWF's so I imagine it could entail interacting with event handlers or methods in an embedded SWF. But anyway, here it is: I have several embedded SWF's on a canvas (in SWFLoaders) and when one of them ch...
I'm trying to use a BarChart in Flex. I'd like it to order the bars according to the order of the ArrayCollection I fed it. i.e. data at index 0 should be the first bar on top. However, Flex is giving me the exact reverse order. i.e. data at index 0 is not the last bar in bottom. How could I tell the BarChart to reverse the order other...
I have created an application using Adobe Flex. I took all the files from the 'bin-release' folder and put it on the server. Then when someone connected to the server through http it is forwarded to the "index.htm". The "index.htm" page is the HTML page created automagically by Adobe Flex during compile time, I just renamed it to that...
I have a Flex app with a viewport that loads a series of other swfs. I would like to place a context menu over top of the SWFs when the user right-clicks. To that end, I have set up a fairly standard context menu where each item has a ContextMenuEvent.MENU_ITEM_SELECT event handler. One problem: The eventHandler never gets called. I...
The company I am working for has a flash component (using flex and cs4) that crashes intermittently in chrome, FF and IE. (so far only win32 platforms) I submitted a bug report to Adobe but have not heard anything back from them. Their support process seems like a black hole. WE can get a dump from Flash using these steps but after s...
Hello, I have another drag-and-drop question. I'm using DnD on a Tree component and it works fine, when I have up to 50-80 items in the tree. However, when I have 100-300 items, the simple drag-and-drop operation suddenly eats all my CPU capacity and the application freezes for up to 1 minute. I suppose that happens because Flex is tr...
Is there any way to merge cells (vertically and/or horizontally) in a datagrid? At least, for example, is there a way to show that certain datagridcolumns belong to one group. For example, I'll take three columns: column1, column2, column3. All these three should be grouped to the Category cell with a rowspan of 3 -- a "super header" if...
In the most recent release of Adobe Air, what version of the WebKit rendering engine does it use? ...
Hi guys, I am using Flex and with the AS3 libraries. I can make calls etc but when i get values returned in the event, they are in RawResult. I am not sure how to turn that into an arraycollection etc so i can make use of it in flex, or if there is a better way of accessing the data, generally speaking. tried= var friendsDoc : XMLDocu...
Our team is about to start a SAAS web application geared toward small businesses. This is a completely new experience for us; we are a system/linux/php development organization and no experience whatsoever developing client side software except for simple html/php based CRUD support applications. We are evaluating both Adobe Flex and JQ...
Hi, I have an xml file (externally saved) that is similar to the following: [root] [main] [title]...[/title] [content]...[/content] [/main] [main] [title]...[/title] [content]...[/content] [/main] [/root] *All <> is replaced with []. What I like to do is to get what's in [title] tag using HTTPservice, import it...
We'd like to have an app autorun when our clients put in our info CD. Is it possible to do this using Adobe AIR... We were thinking of using the Flash Projector cause it compiles to an .exe which is easily launched, but there's no way to get rid of the ugly window chrome is there? AIR Apps have to be installed right? Thanks ...
Hi, I have a datagrid with different types of columns, like I have checkboxes, combo boxes and text Inputs as the column types. Now I want one of the column type to a link, with the label "view". All the rows in that column are link with the same label "View" and on clicking it, I want a Pop up window to be opened? This is my code: <...
Hi, i am working in Air application in Flex3 , i need know how to set "selectedItem" Property when we have 2 values like(data and label) label property to combobox selection, data value for our input. Like shown below. In (selectedItem="{stylename}") stylename will have "data" value but i need ...