RE: [flexcoders] Re: Crash while using MenuBar from a module.

2009-08-19 Thread Alex Harui
Might be worth filing a bug with a small test case. I don't think that should've been required. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rajkumar

RE: [flexcoders] Singletons and Modules - Application domain problem

2009-08-19 Thread Alex Harui
When you optimize a module, classes are removed from the module and must be found in the parent applicationdomain. For me, if I then load the module into an app that doesn't supply the missing classes, I see verify errors, but some folks seem to see nothing, just silent failure. So first, you

[flexcoders] Re: Flex UI and NT Login

2009-08-19 Thread Wesley Acheson
Whats your server technology? On Wed, Aug 19, 2009 at 6:58 AM, ballofmagic ballofma...@yahoo.com wrote: Thank you! I tried to download the project.zip to work with the code and I received a decompression failure. Any other recommendations? Would it be difficult to use the wizard login then

Re: [flexcoders] Flex 3.3 SDK and DataVisualization

2009-08-19 Thread Tom Chiverton
On Tuesday 18 Aug 2009, Annette Spooner wrote: Is it possible to use the Flex 3.3 SDK on its own, without Flex Builder 3, and use the Data Visualization components such as AdvancedDataGrid? Absolutely ! $FLEX_HOME\frameworks\libs\datavisualization.swc. However, when I try to compile some

Re: [flexcoders] Re: Advanced Data Grid + ILOG

2009-08-19 Thread Tom Chiverton
So this is fixed in the DV classes that ship with Builder 4 ? Is that available as a stand alone download, just like the older ones are ? -- Helping to greatly pursue fine-grained e-business as part of the IT team of the year, '09 and '08

[flexcoders] Hi, I have some questions about the olapgatagrid.

2009-08-19 Thread riteshyadav14
Hi, I have some questions about the olapgatagrid. -IS there any way to add two values of Olap data by looping through data and display the total value as final total on the grid . This is kind of functionality we can achieve on XML Data is this possible for OLAP Data also . - Can we use

[flexcoders] Regarding Customizing column chart

2009-08-19 Thread preethamhegdes
Hi All, I have requirement, which needs customizing column chart. My Requirement is, For a given column chart, 1) change the column color according to data( i could do this, used degrafa.swc to style the column ) 2) display a image on top of the column for some condition ( say have to display a

[flexcoders] Re: Instant messaging example

2009-08-19 Thread Andrew
Ok cool thank you. How do I go about defining one? --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: Well, from that file, there is no channel defined as weborb-rtmp. --- In flexcoders@yahoogroups.com, Andrew roly445@ wrote: Hi valdhor, thanks for any help you can

[flexcoders] Click Datagrid row - Custom class popup window showing database values?

2009-08-19 Thread ballofmagic
I appreciate everyone's assistance thus far in answering my questions. We've got a lot of experts in this group! Is there a customized popup window class that databinds with a datagrid row so when a user clicks the row, the pop up window displays not only what's visible in the datagrid

[flexcoders] Re: Connecting to remote JMS: name TopicConnectionFactory not bound

2009-08-19 Thread vermeulen_bas
Okay, I have found the solution to this problem. When I installed LCDS I originally selected the option to install LCDS with tomcat included. That seems to have caused the problem. Now I have selected the install web app option and I've installed it under tomcat myself. The issue is now

[flexcoders] Capturing URL Requests in AIR application (HTML/HTMLLoader/HTMLHost)

2009-08-19 Thread Barry Evans
Hi, This post is quite lengthy, but I really need to explain in detail what it is I'm trying to achieve here. I am developing an AIR application that has an mx.controls.HTML component as the only child; in essence the application is a custom web browser in AIR. I have created a custom

[flexcoders] Keyboard navigation in Advanced Datagrid

2009-08-19 Thread Martin Moschitz
Hi, I am trying to implement an Excel like keyboard navigation in an ADG. Arrow keys move around the cells, and only on pressing enter or starting typing the cell moves to editing mode. Highlighting the currently selected cell would also be nice. Any ideas on this? Thanks! Martin -- Martin

[flexcoders] Re: WebService Payload Truncated (#2006 Out of Bounds Error) on Send in Gumbo

2009-08-19 Thread michaelisraelcaplan
I've been looking at this problem for just about a day straight now, and just can't see why I'm getting an out of bounds error on send. I've tried updated to the latest Gumbo nightly (9377), which no luck. My code to launch the WebService call looks like this: _calibrationData = new

Re: [flexcoders] Capturing URL Requests in AIR application (HTML/HTMLLoader/HTMLHost)

2009-08-19 Thread Wesley Acheson
Is it not the responseHeaders that you need? on the following object http://livedocs.adobe.com/flex/3/langref/flash/events/HTTPStatusEvent.html Regards, Wesley Acheson On Wed, Aug 19, 2009 at 12:54 PM, Barry Evans bazza...@hotmail.com wrote: Hi, This post is quite lengthy, but I really need

[flexcoders] Re: Module and Application Communication.

2009-08-19 Thread valdhor
What are MyCustomMdoule (Spelling?) and moduleContent ? The following works for me: Application: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical creationComplete=onCreationComplete() mx:Script ![CDATA[

[flexcoders] Tree Control Populating from Database via XMLListCollection

2009-08-19 Thread Angelo Anolin
Hi FlexCoders, Am currently working on a Tree control, and being my first time to delve into this, I need your inputs and advice. My tree control is retrieving data from a .NET web service. My .NET webservice returns a string which is parsed from a dataset via the command DataSet.GetXML

RE: [flexcoders] Click Datagrid row - Custom class popup window showing database values?

2009-08-19 Thread Scott
I do this right now and I use the popupmanager. You'll just call another mxml component with the extended information then call the popupmanager using the click() event for the datagrid. http://livedocs.adobe.com/flex/3/langref/mx/managers/PopUpManager.html

Re: [flexcoders] Flex 3.3 SDK and DataVisualization

2009-08-19 Thread Angelo Anolin
Most likely the datavisualization.swc is not being included during the compile of the MXML. I ran across the same problem. What I did was copied the datavisualization.swc to a folder where the MXMLC compiler is located and when I run the compiler, I include the folder as library in the

[flexcoders] Re: Instant messaging example

2009-08-19 Thread valdhor
It looks like you are referencing services-config.xml instead of weborb-services-config.xml in your compilere settings. weborb-rtmp should be defined in that file. --- In flexcoders@yahoogroups.com, Andrew roly...@... wrote: Ok cool thank you. How do I go about defining one? --- In

[flexcoders] Re: degrafa capacity indicator resizing

2009-08-19 Thread valdhor
From looking at the source code for that application, the width of the indicator bar is bound to the value of the capacityWidth slider. Try adding the following button to the controls HBox to see what happens: mx:Button label=Change Width click={capacityWidth.value += 50}/ --- In

[flexcoders] Re: WebService Payload Truncated (#2006 Out of Bounds Error) on Send in Gumbo

2009-08-19 Thread valdhor
I wonder if you have hit a windows limitation. This article may give you some ideas... http://blogs.msdn.com/drnick/archive/2006/03/10/547568.aspx --- In flexcoders@yahoogroups.com, michaelisraelcaplan mcap...@... wrote: I've been looking at this problem for just about a day straight now,

[flexcoders] Flex Datagrid -Extract non formatted (raw) value onItemEditBegin

2009-08-19 Thread Martin Moschitz
Hi there, I have an Advanced Data Grid (Flex) and I am showing numeric values. I am formatting each value by using a labelFunction, which returns a currency formatted value (using a currency formatter). Let's say the dataprovider holds the value 1000 for the first element. The first cell

[flexcoders] Re: Capturing URL Requests in AIR application (HTML/HTMLLoader/HTMLHost)

2009-08-19 Thread Barry Evans
Yes your kind of right, what i think i really need to do is extend the HTMLLoader class so that i can override the load(urlRequestToLoad:URLRequest) method. I have tried this and get similar results to the user from this post (http://tech.groups.yahoo.com/group/apollocoders/message/2900), the

[flexcoders] Re: WebService Payload Truncated (#2006 Out of Bounds Error) on Send in Gumbo

2009-08-19 Thread michaelisraelcaplan
Interesting point. I tried truncating my byte array down to 60KB, I still got the out of bounds fault. However, if i drop the byte array down to 10KB, no out of bounds error. Somewhere between the two (60KB and 10KB) is the breaking point. I've read through the article you referenced

[flexcoders] Re: WebService Payload Truncated (#2006 Out of Bounds Error) on Send in Gumbo

2009-08-19 Thread michaelisraelcaplan
Ah, MaxReceivedMessageSize is not a Windows limit,per se, but a Windows WCF limit that is programatically controlled by the SOAP server. That shouldn't be a factor with the out of bounds fault? --- In flexcoders@yahoogroups.com, michaelisraelcaplan mcap...@... wrote: Interesting point. I

Re: [flexcoders] Tree Control Populating from Database via XMLListCollection

2009-08-19 Thread Angelo Anolin
Anyone?? Thanks. From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, 19 August, 2009 20:53:49 Subject: [flexcoders] Tree Control Populating from Database via XMLListCollection Hi FlexCoders, Am currently working on

[flexcoders] Re: Error: -Bookmark no longer valid- when removing or adding items to node's children on AdvancedDataGrid with hierarchical data

2009-08-19 Thread Mika Kiljunen
Sorry I meant of course: ContainerObj1's children property is a sorted ArrayCollection (although I tried that removing sort has no effect on this issue). If I scroll the ADG so that ChildContainerObj1 and it's children are not visible and programmatically add new ChildContainerObj4 (it has it's

[flexcoders] VBox constrains - A simple question :-p

2009-08-19 Thread fotis.chatzinikos
mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=640 height=480 mx:VBox top=100 bottom=10 horizontalCenter=0 width=90% horizontalAlign=left verticalGap=5 id=debugWinVB_ID /mx:VBox /mx:Application At the start of the application

Re: [flexcoders] Re: ComboBox not updating

2009-08-19 Thread Richard Rodseth
Thanks. I should add that my combobox is in use in an item renderer. A colleague had a similar problem which went away when he switched to a repeater. It's not clear which if any of your modifications will help my use case, but I'll try some of them. Is there a bug we can vote on besides the one

[flexcoders] Re: Advanced Data Grid + ILOG

2009-08-19 Thread cuttenv
Hey Tom, I reopened the bug here: http://bugs.adobe.com/jira/browse/FLEXDMV-2191 You can vote on it and watch the progress if you want. The fix is in SDK4 so you have to download the latest version of FB and then use that sdk. I reopened the bug because the fix doesn't help enough. It still

[flexcoders] Re: Module and Application Communication.

2009-08-19 Thread cuttenv
So I was going to make you a sample app to show you what was wrong, but then it was working. Then I looked at my code and again and realized I was actually dispatching the event in a popup that was created inside that module. So let me change the question! Is it possible to catch an event in

[flexcoders] Re: Module and Application Communication.

2009-08-19 Thread cuttenv
Hi valdhor, Thanks for making a sample! I went back and looked at my code again and realized I was trying to catch an event that was being dispatched via a Popup inside the module! Application: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Re: WebService Payload Truncated (#2006 Out of Bounds Error) on Send in Gumbo

2009-08-19 Thread valdhor
I wonder if it's the actual size or whether there is something in the data that it doesn't like. Could you try a different portion of the data (Say between the 60K point and 120K ?). --- In flexcoders@yahoogroups.com, michaelisraelcaplan mcap...@... wrote: Ah, MaxReceivedMessageSize is not a

[flexcoders] RE: Adobe Air app losing connection to DB

2009-08-19 Thread Battershall, Jeff
Are you setting the person's credentials in your Remote Object using setRemoteCredentials()? Sounds like you might not be. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent: Monday, August 17, 2009 10:16 PM To:

Re: [flexcoders] Re: ComboBox not updating

2009-08-19 Thread Richard Rodseth
My solution (which is not a general one) appears to be avoiding using a binding function with selectedIndex. Rather than: mx:ComboBox xmlns:mx=http://www.adobe.com/2006/mxml; dataProvider={this.availableOperators} selectedIndex={findSelectedIndex(this.selectedOperator,

[flexcoders] Adobe AIR L-shaped custom chrome

2009-08-19 Thread windsail05
I am wanting to create an Adobe AIR application that is L-shaped so that another application can fit in the open area of the screen. In other words, I would like an AIR app to surround another application on 2 sides (left and bottom). Is this possible? And if I do this will the AIR app cover

[flexcoders] Re: Module and Application Communication.

2009-08-19 Thread valdhor
System Manager is the handler for popup windows. So, either add the event listener to the system manager of the application or add it to the system manager of the module. systemManager.addEventListener('customEventDispatchedByModule', onEvent); --- In flexcoders@yahoogroups.com, cuttenv

[flexcoders] Mx:VBOX

2009-08-19 Thread ram ramesh
Hi How to Refresh the       MX:VBOX after some condition check I want to refresh the VBOX. PLease help me for this. Thanks Ramesh

[flexcoders] Re: flexlib enhancedButtonSkin causes blank Design mode

2009-08-19 Thread Mic
Fixed this by repeatedly toggling F4 - Show Surrounding Containers - screen eventually draws layout. Not sure why but glad it does :-) --- In flexcoders@yahoogroups.com, Mic chigwel...@... wrote: Using this skin stops design mode from showing layout, which I need as this layout is extremely

RE: [flexcoders] Mx:VBOX

2009-08-19 Thread Jake Churchill
Set an ID on your VBox (call it vboxID) and call this: vboxID.invalidateDisplayList(); Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com

[flexcoders] How to force construction when creationPolicy=all' does not work?

2009-08-19 Thread Mic
ViewStack.vsMainDash VBox.vbDrctrDash VBox.vbParmsAndDrills ViewStack.vsDashDrills VBox.CustLevel VBox.UDAC is the hierarchy. Run code vsMainDash.selectedChild = vbParmsAndDrills; vsDashDrills.selectedChild = vbCustLevel; ** null reference error Debug at line

[flexcoders] Cannot select identical item in my tree component...

2009-08-19 Thread whiskerstasters
Hi everyone, I'm having an issue with my tree component. I use an arrayCollection for my dataProvider. I have the same object in my arrayCollection nested at different levels. I cannot select this object at different levels in my tree, it always select the topmost nested object. Is there a way

Re: [Spam] Re: [flexcoders] Fields grouping?

2009-08-19 Thread Nick Middleweek
Tim and Wesley, thanks for your replies... really appreciate it. I've not been flexing for long so that's for helping me out... I treid using forms with a border and using a formheader but it didn't give the look I was after. I guess i can change my UI designs if needed though but I though the

[flexcoders] Re: weird NumericStepper question / script

2009-08-19 Thread Edward Petersen
I was looking for a way to create a no-maximum NumericStepper and came up with the idea of listening to the Change event and just upping the maximum value by 1-stepSize unit above the current value. The only thing was, I needed to use a callLater() in order to change the maximum or else the

[flexcoders] ImageSnapshot without scroll bars?

2009-08-19 Thread flexjunker
Anyone know of how to avoid the scroll bars in an imagesnapshot of a container? Thanks.

[flexcoders] 5 Datagrids ontop of each other, one resizes and the ones below shift up or down?

2009-08-19 Thread Nick Middleweek
Hi guys, Excuse the subject of this post :-) But it does sum up what I'm trying to achieve. I want to have 5 DataGrids ontop of each other in a vertical arrangement (A bit like the rows in Excel are ontop of each). In the bottom right of each DG, I want a little button that when clicked,

[flexcoders] Re: NumericStepper no maximum value

2009-08-19 Thread Edward Petersen
I was looking to do the same thing ... came up with this: numericStepper.addEventListener(NumericStepperEvent.CHANGE, function(event:NumericStepperEvent):void { callLater(resetMaximumValue); }); ... and then a function like this: private function resetMaximumValue():void {

Re: [flexcoders] ImageSnapshot without scroll bars?

2009-08-19 Thread Fotis Chatzinikos
Never printed anything from flex back you could either: 1) remove scrollbars prior to printing and then put them back (horizontal and vertical scroll policies set to off) 2) if this makes the application 'jumpy' due to bars disappearing and then reappearing, you could possibly try and copy the

Re: [Spam] Re: [flexcoders] Fields grouping?

2009-08-19 Thread Wesley Acheson
I think theres a lot you can do to style these things I'm not really that up on it. though. :P On Wed, Aug 19, 2009 at 10:08 PM, Nick Middleweek n...@middleweek.co.ukwrote: Tim and Wesley, thanks for your replies... really appreciate it. I've not been flexing for long so that's for helping

[flexcoders] Re: Instant messaging example

2009-08-19 Thread Andrew
Thanks valdhor. I have double checked but I am already referencing 'weborb-services-config.xml' and i and still having the same issue. --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: It looks like you are referencing services-config.xml instead of

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-19 Thread Wesley Acheson
try setting the minWidth also. On Wed, Aug 19, 2009 at 6:29 PM, fotis.chatzinikos fotis.chatzini...@gmail.com wrote: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=640 height=480 mx:VBox top=100 bottom=10 horizontalCenter=0 width=90%

Re: [flexcoders] VBox constrains - A simple question :-p

2009-08-19 Thread Fotis Chatzinikos
Hi Wesley, do you mean the maxHeight? My problem is with the height of the box getting bigger than the application instead of staying @ bottom 10. If i set the height or maxHeight it works as advertised. I am not trying to just fix it though.. I am trying to understand/know why it does not

[flexcoders] Re: ImageSnapshot without scroll bars?

2009-08-19 Thread flexjunker
Hey Fotis, I've tried all that and yes, if I resize the container according to it's children, then remove the scroll bars, it does allow me to take an ImageShapShot that is the correct size height and width. BUT it still has the bars and even strange black 'un-drawn' areas even after

[flexcoders] noob questions... horizontal pagination of multiple objects

2009-08-19 Thread skwasha
Hi all, I want to have a XxY grid of containers (they might be images and/or imported swfs.) I want to have some sort of pagination to view them all (think iPhone home screen.) Any pointers on how to get started with this? I looked at Horizontal List but I'm not sure that'll really do the

Re: [Spam] [flexcoders] ImageSnapshot without scroll bars?

2009-08-19 Thread Nick Middleweek
Sorry for the newbie question but what do you mean image snapshot?... Do you mean take a screen shot of a certain area in flex and save it as a JPEG or something? Cheers, Nick 2009/8/19 flexjunker willtheb...@yahoo.com Anyone know of how to avoid the scroll bars in an imagesnapshot of a

[flexcoders] Coding The itemClick event of the List Control

2009-08-19 Thread Angelo Anolin
Hi. I looked up the documentation for Flex and was not able to find a good sample of coding for the itemClick event for a list control. Any good example or link would be appreciated. Thanks.

[flexcoders] Parser Error | Itemrender

2009-08-19 Thread ilikeflex
Hi ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=onCreationcomplete() mx:Script ![CDATA[ import mx.collections.ArrayCollection; import

RE: [flexcoders] Re: ComboBox not updating

2009-08-19 Thread Tracy Spratt
Maybe the solution is not to bind the selectedItem but set it explicitly? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, August 19, 2009 12:34 PM To:

RE: [flexcoders] Tree Control Populating from Database via XMLListCollection

2009-08-19 Thread Tracy Spratt
If you want a tee structure that is different from the xml structure, you can use a custom datadescriptor. If you just want to control the displayed labels, you can use a label function. I would be inclined to manipulate the xml into the structure I want for the tree, just because I have not done

RE: [flexcoders] How to force construction when creationPolicy=all' does not work?

2009-08-19 Thread Tracy Spratt
Attempting to force instantiation is usually a sign that you need to rethink your data flow. Use events to grab data from a model when the sub component is instantiated of shown. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com

RE: [flexcoders] Parser Error | Itemrender

2009-08-19 Thread Alex Harui
mx:Component defines a sub-document within an MXML file. You don't need it in the component file, just ?xml version=1.0 encoding=utf-8? mx:CheckBox label={data.label} selected={data.selected}/ Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

RE: [flexcoders] 5 Datagrids ontop of each other, one resizes and the ones below shift up or down?

2009-08-19 Thread Alex Harui
Should just be VBox with 5 DG's in it. Set rowCount to change its size. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Middleweek Sent: Wednesday,

RE: [flexcoders] Cannot select identical item in my tree component...

2009-08-19 Thread Alex Harui
Each object must have a unique UID. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of whiskerstasters Sent: Wednesday, August 19, 2009 1:06 PM To: