[flexcoders] Re: Flex load testing

2010-04-02 Thread sanjitcs
thanks for your suggestion arutheunicorn. I am looking for open source load testing framework. which can help me to do load testing for messaging on RTMP/RTMPS protocol. Currently I am developing flex client to do load testing. If you can provide me direction how can I build java robot that

[flexcoders] Properties of ControlBar not shown

2010-04-02 Thread secrit.service
Hello all, Normally, when adding a component in FlexBuilder 3, a list with all available properties is shown. I added a ControBar, but it shows nothing. However, if I ignore this and write ControlBar direction=vertical/ it does accept it. Why is this not shown? Is there any way to

[flexcoders] Re: Flex load testing

2010-04-02 Thread Mete Atamel
Are you using LCDS? Because starting in LCDS 3.0, LCDS comes with a Java based load testing tool. It's located under resources/load-testing-tool. We use it internally here at Adobe to do our scalability and performance testing. The latest version which will ship with LCDS 3.1 comes with more

[flexcoders] Re: Flex load testing

2010-04-02 Thread sanjitcs
@Mete thanks you for your reply. Yes, I am using LCDS 3.0. I have seen the Java based testing tool. I have gone through it. I have faced one problem. I want to create a consumer which listen for specific message. In Flex we are using mx:consumer selector property to get specific message for

[flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread md_ars
The XML which I am getting as the Result is given below.The row data is defined in item type=ns1:MTResultTuple xmlns:ns5=http: which has colums value as stringValue/numberValue etc. I am creating XMLList as var myDBXMLLIST:XMLList = myDBXML.mtResult.tuples.item.tuple; where as populating

Re: [flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread Alex Harui
What happens if you just pass the XMLList to the MenuBar? If you use an ArrayCollection, each node must contain an ArrayCollection of its child nodes. On 4/2/10 9:45 AM, md_ars mdar...@gmail.com wrote: The XML which I am getting as the Result is given below.The row data is defined in

[flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread md_ars
How do I define labelField for menu bar when using XMLList? Even though I get the label, it will return all the Menu Labels horizontally whereas I need Parent-Child format. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: What happens if you just pass the XMLList to the

[flexcoders] Dim application while busy cursor is on

2010-04-02 Thread Mike Chang
Hi, I got a couple of questions 1. Is it possible to dim the background application (as in modal dialog) when the busy cursor is set? 2. Instead of a busy cursor, I'd like to have a progress bar in the middle of the screen. HOw is this accomplished? Thanks,

[flexcoders] Re: Dim application while busy cursor is on

2010-04-02 Thread Mike Chang
Sorry one more question - I noticed that when I setbusycursor in a AIR deployed app, the regular cursor appears alongside the busy cursor. Is there a way to remove the regular cursor? On Fri, Apr 2, 2010 at 10:40 AM, Mike Chang mik...@gmail.com wrote: Hi, I got a couple of questions 1. Is it

Re: [flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread Alex Harui
You may need to use labelFunction. On 4/2/10 10:37 AM, md_ars mdar...@gmail.com wrote: How do I define labelField for menu bar when using XMLList? Even though I get the label, it will return all the Menu Labels horizontally whereas I need Parent-Child format. --- In

[flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread md_ars
I used XMLList as the dataprovide and used following function as label function. private function get_label(item:Object):String { return item..stringValue[2]; } It is creating menu bar and displaying all Labels as the top level and each one displaying 6 child(BLANK only Arrows) and each

Re: [flexcoders] Re: Dim application while busy cursor is on

2010-04-02 Thread Alex Harui
Mouse.hide() should hide the system cursor, although that should’ve already been called by CursorManager You can set the alpha or apply a filter to the Application. The Cursor is parented by the SystemManager and won’t be affected. You can show a mx.controls.ProgressBar On 4/2/10 10:45 AM,

Re: [flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread Alex Harui
OK, I think I was having trouble understanding the problem. There is an IMenuDataDescriptor interface that allows you to map flat data to hierarchical data. On 4/2/10 11:04 AM, md_ars mdar...@gmail.com wrote: I used XMLList as the dataprovide and used following function as label

Re: [flexcoders] Flex Certs

2010-04-02 Thread Jochem van Dieten
On Thu, Apr 1, 2010 at 4:14 PM, arutheunicorn wrote: Those who are certted in Flex, can you share your experience with the test? What areas can you recall that were heavily in questions on the exams http://partners.adobe.com/public/en/ace/ACE_Exam_Guide_FlexAIR.pdf Jochem -- Jochem van

[flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread md_ars
Is there any working example for its implementation? --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: OK, I think I was having trouble understanding the problem. There is an IMenuDataDescriptor interface that allows you to map flat data to hierarchical data. On 4/2/10

[flexcoders] Virtualized Item Render - Display Current Row

2010-04-02 Thread Baz
I have an array collection with 1000 items that I display in a virtualized itemrenderer. What is the best way to display the row number of that item as it is in the big source query? That is, if they are looking at items 100-110 it would show 100, 101, 102, ... and not 1, 2, 3...

Re: [flexcoders] Re: How to create XMLListClollection from Flat table data(XMLList) for MenuBar

2010-04-02 Thread Alex Harui
There is a default implementation for simple hierarchical collections. Basically you will need to control what getChildren returns. On 4/2/10 12:08 PM, md_ars mdar...@gmail.com wrote: Is there any working example for its implementation? --- In flexcoders@yahoogroups.com

Re: [flexcoders] Virtualized Item Render - Display Current Row

2010-04-02 Thread Alex Harui
In mx:List you can add verticalScrollPosition. On 4/2/10 12:50 PM, Baz li...@thinkloop.com wrote: I have an array collection with 1000 items that I display in a virtualized itemrenderer. What is the best way to display the row number of that item as it is in the big source query? That

[flexcoders] weird data paging issue

2010-04-02 Thread hgnowhg
I just upgraded to flash builder 4 from the beta version. I imported my project and now my datagrid is acting funny. I have data paging enabled. The one thing I tweaked was on this part: http://sujitreddyg.files.wordpress.com/2009/06/165.png Instead of setting the Count operation to count(),

Re: [flexcoders] Virtualized Item Render - Display Current Row

2010-04-02 Thread Baz
Hey thanks Alex, but I am getting 0 for the value of verticalScrollPosition. I am using a SkinnableDataContainer with s:Scroller defined in it's skin and a custom itemRenderer=views.reports.ReportItemRenderer - perhaps I am doing something wrong? Thanks again, Baz

[flexcoders] Problem with BindingUtils.bindProperty

2010-04-02 Thread Nick Middleweek
Hi, I'm trying to Bind a property on a component to a sub component but it doesn't seem to like binding to a property on this. // Set up Bindings and Watchers... __vendorAgencyOfficeFieldsEnterableChangeWatcher = BindingUtils.bindProperty(agencyOfficeHybridAccordian, enterable, this,

[flexcoders] Re: Problem with BindingUtils.bindProperty

2010-04-02 Thread Nick Middleweek
The same goes for ChangeWatcher... I can't do this... ChangeWatcher.watch( this, boolEditableProperty, callback ); but I can do this... ChangeWatcher.watch( vendorName, editable, callback ); // where vendorName is a TextBox. Apart from binding this.boolEditableProperty to a hidden

[flexcoders] Re: Problem with BindingUtils.bindProperty

2010-04-02 Thread Nick Middleweek
Ok, the property that i'm Binding to must be public, that seems to work and the docs back it up :) On 2 April 2010 23:18, Nick Middleweek n...@middleweek.co.uk wrote: The same goes for ChangeWatcher... I can't do this... ChangeWatcher.watch( this, boolEditableProperty, callback );

[flexcoders] https in flex 4?

2010-04-02 Thread Raymond Brown
can i make a simple call like this? s:HTTPService id=siteID url=https://127.0.0.1:8443/HalDS/hal/siteid; result=siteID_resultHandler(event) fault=siteID_faultHandler(event)/ it should return an xml file like this - dataset hal_info ip=10.1.12.200 latitude=0.0 longitude=0.0 site_id=12/ /dataset

[flexcoders] Flex 4 has radically changed my components

2010-04-02 Thread Raymond Brown
Any suggestions on the two idea's below (In Flex 3 it was easy and there is no samples yet that I have seen.) 1. Create an controlBar that is consisting of a list of 80x50 buttons with images and read in from an xml. i.e. xml document tells them the list of buttons to read in. 2. A list

Re: [flexcoders] Re: Flex load testing

2010-04-02 Thread Robert Emminger
I'll see what I can do about writting up an example. I am a Jr in Flex, Java, I'm swifft. On Fri, Apr 2, 2010 at 10:04 AM, sanjitcs sanjit.f...@gmail.com wrote: @Mete thanks you for your reply. Yes, I am using LCDS 3.0. I have seen the Java based testing tool. I have gone through it. I

[flexcoders] +Re%3A%20Flex%203%20Eclipse%20and%20Java

2010-04-02 Thread Gary Trakhman
Our team has good results with FlashDevelop for the flex side, and eclipse for the java side, and maven scripting to tie it all together.

[flexcoders] Re:Flex 3 Eclipse and Java

2010-04-02 Thread Bruno Fonzi
You might also consider FDT 3.5 now supporting MXML or FDT 4 Beta http://www.fdt4comfort.com Instructions how to install Powerflasher FDT within Eclipse Install Eclipse (www.eclipse.org) Open Eclipse Select Help-Software Updates-Find and install... Select Search for new features to install and

[flexcoders] Re: weird data paging issue

2010-04-02 Thread hgnowhg
just tried it in the beta version and everything works fine. what did adobe do that messed this up? --- In flexcoders@yahoogroups.com, hgnowhg hgno...@... wrote: I just upgraded to flash builder 4 from the beta version. I imported my project and now my datagrid is acting funny. I have data

[flexcoders] Re: weird data paging issue

2010-04-02 Thread hgnowhg
Just a word of caution to anyone thinking of upgrading to Flex 4 from the beta version: You will NOT be able to go back. Once your beta license expires, you're done! My coworker's beta license just ended and he's been searching ALL day for the past 2 days for a way to get around this. Adobe

[flexcoders] Loading Flex sub-applications as sandboxed applications within the same domain

2010-04-02 Thread Deuce
Does anyone know how to load a sub-application as a sandboxed application when on the same domain? i.e.: http://www.xyz.com/HostApplication.swf loads http://www.xyz.com/SubApplication.swf My simple configuration uses a SWFLoader class as such: mx:SWFLoader id=swfLoader