RE: [flexcoders] RemoteObject silently throwing #1009 null object error

2007-12-11 Thread Jeff Vroom
I've seen this before when an error occurs in a set method being invoked during AMF deserialization. In FB, you should be able to stop in those methods and/or add your own trace statements to find the problem. This all happens before the FDS code is executed which is why TraceTarget is showing

[flexcoders] Scale 9 not being picked up

2007-12-11 Thread polestar11
Hi There Does anyone have any idea why flash symbols for skinned controls with scale-9 would not be picked up? Specifically arrows for the ComboBoxes and Scrollbars. Scaling the resources in Flash also results in the arrow symbols being scaled incorrectly with no scale-9. Cheers Tracy

[flexcoders] How to get browser locales

2007-12-11 Thread paragmetha2000
Hi All, 1) Getting Browser locale: In IE using javascript navigator.userLanguage property, I am able fetch browser locale, but it is giving en_US every time, even when in browser en_US locale is removed and fr_FR is added. I am successfully sending locale values from JavaScript to flex

RE: [flexcoders] Scale 9 not being picked up

2007-12-11 Thread Mark Ingram
I've also had trouble with this. I can't get scale-9 with flash assets to work at all (either by setting scale-9 via CS3 or by setting scale-9 in stylesheet). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: 11

[flexcoders] Re: RemoteObject silently throwing #1009 null object error

2007-12-11 Thread simonjpalmer
Jeff, thanks for the reply. Couple of questions: 1) I tried stepping into the remote object call but I can't figure out the source path for the following which is where the first step takes me mx.rpc::AbstractService/http://www.adobe.com/2006/actionscript/flash/proxy::callProperty 2) If my

[flexcoders] Spacer in MenuBar

2007-12-11 Thread Sergey Kovalyov
Hi All! Is it possible to add 100% spacer to MenuBar as shown in the file attached and if so, how would you do that? Thank you in advance. Sergey. attachment: menu.png

[flexcoders] Re: ImageMap Component from FlexLib

2007-12-11 Thread peuga
Hi Doug. I was trying to read the mapping information from a XML and then inject it in your component's map property. The XML looks like this: ?xml version=1.0 encoding=UTF-8? map area alt= shape=poly coords=411,26,474,25,474,87,537,88,537,147,595,149,594,256 href= target=/ area alt=

[flexcoders] Re: AsDoc and libraries problem

2007-12-11 Thread Benoit Thiebault
Hi again ! I finally found how to (partially) solve my problem ! In ASDocAntTask, there are two files the user has to fill in : the build.xml file and a properties file. In the properties file, you define, for example, the name that you want to appear in the browser window... And as my project is

Re: [flexcoders] Re: Missing classes when using RSL cache

2007-12-11 Thread Tom Chiverton
On Thursday 06 Dec 2007, Darrell Loverin wrote: datavisualization as an RSL you must also use the framework as an RSL. Also note that since the datavisualization is dependent on the OK, that's probably common enough, and what most people will do, but I've not heard of that requirement before.

Re: [flexcoders] Re: How to access .net dll's in FLEX 3.0

2007-12-11 Thread Tom Chiverton
On Thursday 06 Dec 2007, Jeffry Houser wrote: I thought for RemoteObject you needed more than just an application server? Using CF you can access CFCS, but .NET assemblies? Yup. From CF8 anyways. unaware that BlueDragon had any Flex Remoting support. You can couple BD to something or

[flexcoders] SuperImage and Complete Event??

2007-12-11 Thread brian.raymes
Does Ely's SuperImage have a secret content loading complete event? It doesn't have a complete even as far as MXML goes, and if I add an event listener for Event.COMPLETE, it never runs... Anyone find a workaround to this? Thanks!

[flexcoders] How do you get the Event.COMPLETE to work with Ely's SuperImage?

2007-12-11 Thread brian.raymes
I am trying to add reflections to a SuperImage, but I don't want to embed them to do it. I am using this reflection component: http://www.wietseveenstra.nl/blog/2007/05/29/reflection-manager-10/ If you don't embed the image, an InvalidBitmap error gets thrown. When/how does SuperImage fire its

[flexcoders] data grid dilemma

2007-12-11 Thread Corey Smaller
ok, i am stumped. does anyone know how to create a looping vertical datagrid? Like your guide on cable tv or tivo? Im thinking it must involve counting the rows and if the last row is highlighted go back to the top or append the first row to it but I cannot for the life of me figure out how to

[flexcoders] Re: Scan document using Flex 2 or 3. Help please

2007-12-11 Thread Todd
Also, depending how cross-platform you need to be. You can also embed the Flash Player in .NET application, this works for windows. You can probably come up with another shell for Mac, if need be. I've seen some pretty fancy Windows applications where the developers really wanted to leverage

Re: [flexcoders] Extending the RichTextEditor

2007-12-11 Thread YOGESH JADHAV
If ur intension is to add smiley/ emoticons , this may help http://www.hrundik.ru/smiley/ On Dec 8, 2007 11:17 PM, Dave [EMAIL PROTECTED] wrote: I was just wondering if anyone had a sample of extending the RichTextEditor to support inserting images? I am looking at it and it seems you have

RE: [flexcoders] Flash Player 9.0.115 drawing bug

2007-12-11 Thread Jim Hayes
Sometime around June/July? according to the date on this from Tinic Uro: http://www.kaourantin.net/2007/06/multi-core-support.html That seems to tally with my rather flakey memory cells, but I couldn't really say for sure myself. Somebody better qualified might be able to give you a better

[flexcoders] HOWTO - Sending an XML object to PHP

2007-12-11 Thread Alan Gruskoff
While reading XML data into Flex is easy, sending it out for writing was more challenging. I found an example like the below based on worked fine for sending name/value pairs to PHP, like a form would do. I needed to send an XML object, and since the docs say you can, I eventually found a way. I

Re: [flexcoders] Flash Player 9.0.115 drawing bug

2007-12-11 Thread Matthew Ganz
Jim, When did they make the bitmap operations multithreaded? Is that new as of fp 9.0.115.0? - Original Message - From: Jim Hayes To: flexcoders@yahoogroups.com Sent: Monday, December 10, 2007 11:27 AM Subject: RE: [flexcoders] Flash Player 9.0.115 drawing bug Nothing

[flexcoders] How to put the main mxml file in a subfolder under the root 'src' for namespace

2007-12-11 Thread Sam
I was trying to put the main mxml application file under the sub folder of the root 'src', i.e. src\abccorp\ui\flexapp\Main.mxml However eclipse compiled the file and generated the swf under the same structure in the output root. i.e. output\abccorp\ui\flexapp\Main.swf Is there a way I can put

Re: [flexcoders] data grid dilemma

2007-12-11 Thread Tom Chiverton
On Tuesday 11 Dec 2007, Corey Smaller wrote: to the top or append the first row to it but I cannot for the life of me figure out how to write the code. It's just pagination of the result set, is it not, with some extra logic to go to the previous/next page if the first/last row of the current

RE: [flexcoders] Re: How to access .net dll's in FLEX 3.0

2007-12-11 Thread Samuel R. Neff
CF8's access to .NET dll's is through a separate windows process so the call requires IPC which would not be required using a native .NET back end. Unless you're already using CF and need to use some .NET code, there's no reason to start using CF to interoperate with .NET from Flex. Fluorine is

[flexcoders] Is there a way of asking a component if it is currently active

2007-12-11 Thread m88e24
I want to ask some object what the currently active component is. By active I mean that the component is visible and not obscured by any other components and is currently the one the user is interfacing with. For example a TabNavigator contains several children, each child contains a number

Re: [flexcoders] HOWTO - Sending an XML object to PHP

2007-12-11 Thread jeff
On Tue, Dec 11, 2007 at 01:12:09AM -, Alan Gruskoff wrote: While reading XML data into Flex is easy, sending it out for writing was more challenging. I found an example like the below based on worked fine for sending name/value pairs to PHP, like a form would do. I needed to send an XML

[flexcoders] Calling JavaScript function from Flex

2007-12-11 Thread sanchivans
Hi all, I am trying to call a JavaScript function from my flex app. I know that you use ExternalInterface.call to call a JavaScript function from flex. I have read this article Calling JavaScript methods from Flex applications. It seem's very simple, but for some reason it is not working. In

Re: [flexcoders] How do you get the Event.COMPLETE to work with Ely's SuperImage?

2007-12-11 Thread Ben Marchbanks
You might want to look at another reflection component - It works like a charm with or without SuperImage. http://labs.atellis.com/2007/07/11/atellis-reflection-component/ brian.raymes wrote: I am trying to add reflections to a SuperImage, but I don't want to embed them to do it. I am

[flexcoders] Re: How to disble double click in ComboBo?

2007-12-11 Thread flexawesome
morning everyone :) --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hey Alex, thanks for trying to help me out of this :) You may see the events of doubleClickEvents here: http://livedocs.adobe.com/flex/201/langref/mx/controls/ComboBox.html#propertySummary

[flexcoders] Re: DataServiceTransaction auto-refresh issue

2007-12-11 Thread chris_alme
I've found a solution to this!!! Though I am a bit puzzled and would love to get more input on this... I noticed in the LCDS log that the identity specified in data-management-config.xml: destination id=messageService adapter ref=java-dao properties sourcemessageAssembler/source

[flexcoders] SWFLoader to load Flex 3 swf inside Flex 2 app

2007-12-11 Thread Scot
I am working on a project in Flex 2, but I need some of the new functionality of Flex 3 in one view. (The app is already in use by the client and they are not comfortable moving the entire app to Flex 3 while it is in Beta.) My thought is to create the view as a Flex 3 application and use

[flexcoders] Can one FTP to a sever with user authentication in Adobe AIR?

2007-12-11 Thread sher_ali2004
my question is simple can one ftp to a server with user authentication in Adobe AIR? Regards, S.Ali

RE: [flexcoders] SWFLoader to load Flex 3 swf inside Flex 2 app

2007-12-11 Thread Alex Harui
Unfortunately, not possible. Due to the way applicationdomains work, the Flex 3 swf will be forced to use classes from the Flex 2 loader and fail to load From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scot Sent: Tuesday, December 11,

RE: [flexcoders] Is there a way of asking a component if it is currently active

2007-12-11 Thread Alex Harui
Getfocus? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of m88e24 Sent: Tuesday, December 11, 2007 6:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is there a way of asking a component if it is currently active I want to

Re: SPAM-LOW: [flexcoders] Can one FTP to a sever with user authentication in Adobe AIR?

2007-12-11 Thread Jeffry Houser
Sort of. Someone built an AS3 FTP client. If you google you can probably find it. I think there were specific limitations though. sher_ali2004 wrote: my question is simple can one ftp to a server with user authentication in Adobe AIR? Regards, S.Ali -- Jeffry Houser,

[flexcoders] Re: data grid dilemma

2007-12-11 Thread Corey Smaller
Thanks Tom, I kinda figured it was a pagination issue but instead of using pages it just loads, for example, 10 results and once the lowest one is highlighted it loads the next set? I figured the logic out in that moment between sleep and waking when your brain knows all. ha! thanks again ---

[flexcoders] ProgressEvent.bytesTotal not populated?

2007-12-11 Thread Battershall, Jeff
I've built at AIR app that supports application update, but I'd like to show the user the progress of the updater download. For some reason, the ProgressEvent.bytesTotal just isn't coming over the wire. bytesLoaded sure is, just not bytesTotal. It isn't as though this is some tiny file, either -

[flexcoders] Intermittent error with Tile in Flex 2.0.1 project

2007-12-11 Thread Peter Hall
Every now and then, I get the error below. My client is seeing it quite regularly and there is no way for the application to recover from it - after clicking dismiss the screen remains partially drawn and no buttons work. It's all internal to Tile/Container and in a callLater() so I can't track it

RE: [flexcoders] Re: DataServiceTransaction auto-refresh issue

2007-12-11 Thread Jeff Vroom
Each Java class needs to be serialized from ActionScript. Right now, this means exposing all properties using public get/set methods or with a public field. Without a setter, it is hard to know exactly what field to set when we deserialize a class. Jeff

RE: [flexcoders] Intermittent error with Tile in Flex 2.0.1 project

2007-12-11 Thread Samuel R. Neff
I've seen it before and never was able to track it down. I ended up switching to a nested Tile/Repeater instead which actually worked better for the situation anyways. Sam --- We're Hiring! Seeking a passionate developer to join our team building Flex

[flexcoders] Re: Intermittent error with Tile in Flex 2.0.1 project

2007-12-11 Thread Peter Hall
In case anyone else is interested, the following code does not have the same problem (so far), and works well enough for my emergency needs: mx:Canvas mx:Repeater

[flexcoders] Re: Scan document using Flex 2 or 3. Help please

2007-12-11 Thread tpokrajcic
we used flash ocx control to embed flash into a c# application and it worked well (but the way to that point was kind of painful). there are some 3rd party solutions that could work for tighter connection with local os, zinc for example. i haven't worked with it, but it seems like a nice tool -

[flexcoders] Re: ProgressEvent.bytesTotal not populated?

2007-12-11 Thread jandersen1978
Do you have a way to make sure the Content-Length response header is coming across correctly? I ran into a similar problem with a flex app (in browser) and found it was related to the fact that I was using a server-side proxy that wasn't passing the Content-Length response header from the

RE: [flexcoders] Re: RemoteObject silently throwing #1009 null object error

2007-12-11 Thread Jeff Vroom
Oh, so these errors occur before the server even gets the request? In that case, it could be the get methods of the parameters to your remote object that are causing this error during the serialization process. You won't be able to step into this code since it gets called from native player

Re: [flexcoders] Re: ModuleLoader 'SWF is not a loadable module' Error

2007-12-11 Thread Mark Doberenz
Oh for cryin out loud All I had to do was create an array of ModuleLoaders and add the ModuleLoader to it when I created it and it kept all the instances just fine. Thank you so much I can work on this project again! Mark On Dec 10, 2007 10:10 PM, Alex Harui [EMAIL PROTECTED] wrote:

[flexcoders] Re: Calling JavaScript function from Flex

2007-12-11 Thread sanchivans
Hi Guys, don't worry about the question. I figured it out. The problem was the wrapper file was messed up I guess. I created a new project and I used the same code and it worked like a charm. Thanks. Sanchivan S. --- In flexcoders@yahoogroups.com, sanchivans [EMAIL PROTECTED] wrote: Hi

[flexcoders] [ann] new WebORB for Java (now absolutely free)

2007-12-11 Thread Mark Piller
Hey guys, If you do not use or care about Java, please ignore this message and pardon me for spamming your Inbox. Otherwise, I hope you will find some value in this post. As you probably know, it has been a long time since we did any new development on the Java side of things. For the past year

RE: [flexcoders] Spacer in MenuBar

2007-12-11 Thread Deepa Subramaniam
Check out the code below. You can pre-set the width of the MenuBar item you want to act as a spacer (just be sure to disable it otherwise it will respond to mouse activity). Individual MenuBar items are accessible off the main MenuBar control via the 'menuBarItems' property. Unfortunately,

[flexcoders] Re: DataServiceTransaction auto-refresh issue

2007-12-11 Thread chris_alme
Hi Jeff - Thanks for the response. For the class in question, I've implemented read/writeExternal on both the Java and Actionscript sides in order to hide the db id on the client side. It is still exposed via a getter, so this should take care of any serialization issue, so I'm still confused?

[flexcoders] Alfresco anyone?

2007-12-11 Thread Jon Bradley
Has anyone here had either success or is experimenting with Flex and Alfresco? I'm not a fluent Java developer by any means and there's nothing I can find whatsoever about Flex/Alfresco integration. There's mention of it here and there and how Adobe and Alfresco are working together

[flexcoders] Need some help with dataTip Background Alpha

2007-12-11 Thread Mark
How do I make the white background of a dataTip on a chart Opaque?

[flexcoders] Re: dumb: eclipse on dual monitor?

2007-12-11 Thread fuad_kamal
lex 3 Beta on Mac solves the multi-display issue; in Flex 2.01 it wasn't possible to break the various panels in flex apart across multiple displays like you could easily do in the Windows version. They said it was due to some limitation of Eclipse on Mac. In Flex 3, right-click on the tab of

[flexcoders] Download link in Flex with CFML

2007-12-11 Thread markflex2007
Hi, I am new for Flex and I need build a download link in Flex,I can download a Doc/Pdf file when I click the link. I am using Flex and Coldfusion, Please let me if you have experience for this, Thanks a lot Mark

Re: [flexcoders] Re: Compling Error in Flex 3 beta 2

2007-12-11 Thread Kevin
I was having the same problem and found this: http://blog.riait.co.uk/2007/10/09/managed-sucks/ It fixed it for me but does that mean that [Managed] is not longer a valid Meta tag. Is there something else we are supposed to use? - Kevin On Oct 11, 2007, at 11:41 AM, Mike Morearty wrote:

Re: [flexcoders] Upgrade to Flex 3 Beta 2 Eclipse plugin Errors

2007-12-11 Thread Kevin
We made some progress. Doing a complete rebuild of the LCDS project from SVN fixed some of the problems. (Does this mean that to install Flex 3 you need to recreate all your previous projects rather than just import them into the new workspace?) Then we kept getting these errors in our

[flexcoders] Re: Download link in Flex with CFML

2007-12-11 Thread Rob Rusher
--- In flexcoders@yahoogroups.com, markflex2007 [EMAIL PROTECTED] wrote: Hi, I am new for Flex and I need build a download link in Flex,I can download a Doc/Pdf file when I click the link. I am using Flex and Coldfusion, Please let me if you have experience for this, Thanks a lot

[flexcoders] Flex Beta 3 [Managed] tag not working.

2007-12-11 Thread Kevin
Has something changed with the Managed tag? We removed it in order to get our app to compile in Flex 3 Beta and so now we get errors unless we directly implement the IManaged interface. Is this the correct way to approach this now? Is there a reason why was done? We have a lot of

Re: [flexcoders] SWFLoader to load Flex 3 swf inside Flex 2 app

2007-12-11 Thread Carlos Rovira
Alex, I was exposed today to solve a similar problem: A flex 2 app that want to use a Flex 3 component. For me there's no solution. Am I rigth? the only way is to compile all app against Flex3 ? thanks. 2007/12/11, Alex Harui [EMAIL PROTECTED]: Unfortunately, not possible. Due to the way

RE: [flexcoders] Flex Beta 3 [Managed] tag not working.

2007-12-11 Thread Jeff Vroom
This was a bug in (I think) Flex 3 beta 2. My recollection is that it would break when one Managed class extended another one. It is fixed in the nightly builds of Flex 3 which you can download. Jeff From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: DataServiceTransaction auto-refresh issue

2007-12-11 Thread Jeff Vroom
Oh interesting I haven't run into this case before, but I think we do still need the ability to set the property on the AS side at least. When you create an item on the client, it might have a null or empty id. When you commit that change, the server typically assigns an id. The client gets

[flexcoders] filedownload from internet to local disc

2007-12-11 Thread Enrico Hofmann
hi how can i download an file from the internet and save it to local disk ? regards enrico hofmann

[flexcoders] Re: Auto-sizing a Container that lives in rawChildren - how?

2007-12-11 Thread ben.clinkinbeard
Hi Alex, since updateDisplayList() doesn't seem to get called on rawChildren I am simply doing my sizing in another method that gets called from my parent's updateDisplaylist() function. I am finding the bounds of my children and then using setActualSize(), which seems to work well. Is there

Re: [flexcoders] Flex Beta 3 [Managed] tag not working.

2007-12-11 Thread Kevin
thank you. I will download the new build and try it out. - kevin On Dec 11, 2007, at 4:17 PM, Jeff Vroom wrote: This was a bug in (I think) Flex 3 beta 2. My recollection is that it would break when one Managed class extended another one. It is fixed in the nightly builds of Flex 3

[flexcoders] Re: ModuleLoader 'SWF is not a loadable module' Error

2007-12-11 Thread Barry Evans
Oh that was a great bit of help there Alex, your a star! I tackled the issue a little differently from you Mark (and possibly a bit too in depth when i think about it)... i'll try and explain my situation. In my app I have a component (navBar) containing 3 Accordions, each with a repeater that

RE: [flexcoders] Re: Auto-sizing a Container that lives in rawChildren - how?

2007-12-11 Thread Alex Harui
Sounds right. The parent's updateDisplayList should result in calls to setActualSize() on the children. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Tuesday, December 11, 2007 1:41 PM To:

RE: [flexcoders] SWFLoader to load Flex 3 swf inside Flex 2 app

2007-12-11 Thread Alex Harui
That is correct. The main app must be compiled against the latest framework. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carlos Rovira Sent: Tuesday, December 11, 2007 1:05 PM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] Compare / Add Dates?

2007-12-11 Thread nodovu
Anyone know how to : Todays date + 7 days Todays date + 1 month Todays date + next year Thanks in advance -aly

[flexcoders] PopupManager causes RangeError: Error #2006: adding a popup window

2007-12-11 Thread wpbarto
I saw something else similar in flexcoders, but the information didn't seem to apply to this case. I can create a popup window from a button's click handler, but THE SAME CODE used when editing a DataGrid cell FAILS! Is it a bug or a mis-use of PopupManager?? Thanks for any help! Top part

[flexcoders] Error 1009 when running on different server

2007-12-11 Thread bobklhr
My app has a master detail layout populated by remote calls to cfcs. The cfc returns a query for the master list and an object for the detail. This works fine on our development server. When I run this on our production server the query is returned ok but I get an error 1009 when it tries to

[flexcoders] TextInput for percentage

2007-12-11 Thread Richard Rodseth
Any ideas on the best approach to implementing a text input for percentage values? I haven't found any built-in validators/formatters. Basically I just want the field to display the % sign, allow it to be typed in, and strip it out when processing the value. Thanks.

[flexcoders] Bubble chart BUG??

2007-12-11 Thread hworke
Hi, in a VDividedBox I have a grid and a bubble chart as children. Initially Bubble chart's height is 100% and grid's height is 0%. So only the Bubble chart is visible. Now If I drag the grid all the way up and make the chart totally disappear then the next time I drag down the

[flexcoders] How to do equivalent of makeObjectsBindable=false on mx:Consumer

2007-12-11 Thread Robin Hilliard
Hi All, Just trying to avoid having arrays in my message bodies wrapped as ArrayCollections (because I am trying to pass them out through ExternalInterface.call() as normal arrays). makeObjectsBindable seems to only apply to RPC services, any ideas on the messaging side? Thanks, Robin

RE: [flexcoders] How to do equivalent of makeObjectsBindable=false on mx:Consumer

2007-12-11 Thread Peter Farland
You can try setting the following property in your services-config.xml channel-definition(s): ... properties serialization legacy-collectiontrue/legacy-collection /serialization /properties ... Note that properties that are returned as normal Arrays will not detect property

[flexcoders] I need some help with custom labels in a BarChart

2007-12-11 Thread Mark
I have a BarChart that is using 2 horizontal Axis, one on top and one on the bottom. Both are showing the same information I have two only for scrolling purposes. If the user has to scroll they'll get the data at the bottom as well. I'm having a strange problem where the top data fonts

Re: [flexcoders] TextInput for percentage

2007-12-11 Thread Adnan Doric
Hello, I would go for : Flexlib: PromptingTextInput.prompt = % + PromptingTextInput.restrict=0-9 + NumberValidator 0-100 Cheers, Adnan Richard Rodseth wrote: Any ideas on the best approach to implementing a text input for percentage values? I haven't found any built-in

[flexcoders] Re: Use a Popup as itemEditor in Datagrids

2007-12-11 Thread mcaplan_labnet
I seem to keep on banging my head against a wall on this issue. I've been plugging away at this issue for several days now with little progress. I set the popup.owner property as recommended by Alex. This seemed to have helped, but issues still persist. I cheated and created an inPopup flag

RE: [flexcoders] Re: Use a Popup as itemEditor in Datagrids

2007-12-11 Thread Alex Harui
I might have time to look at this over the weekend. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mcaplan_labnet Sent: Tuesday, December 11, 2007 6:47 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Use a Popup as

[flexcoders] Cairngorm ServiceLocator Issue

2007-12-11 Thread Manu Dhanda
Hii.. Am wondering why I can not connect back to Java. Am using RemoteObject, have Services.mxml in place with the RemoteObject's defined in that. I have configured remoting-config.xml accordingly. I had initialized ServiceLocator in my application file. But when I generate an event on client

Re: [flexcoders] Cairngorm Issue

2007-12-11 Thread Manu Dhanda
Anyone with some comments on this issue?? Thanks. Manu. Manu Dhanda wrote: Yes, as I said, with the click of the link button, other form load(from loginForm to registerForm). But, the fields on the form are not displaying in a right manner. Only the textfields are being displayed, and

[flexcoders] Re: PopupManager causes RangeError: Error #2006: adding a popup window

2007-12-11 Thread wpbarto
Additional Info: This problem is apparantly caused by MULTIPLE itemEditEnd events dispatched from the DataGrid, exacerbated by the fact that the PopupManager code is not reentrant or doesn't handle concurrency. Looks like Flash player can interrupt part of a running script (PopupManager's

RE: [flexcoders] Cairngorm ServiceLocator Issue

2007-12-11 Thread Dimitrios Gianninas
Hi, Things you can check are: a) did u set the server-side logging to Debug in the services-config.xml file? b) is your command actually being called? add a trace statement in there to see if it, common problem is you forget to add an entry in the controller are u getting any sort of error

[flexcoders] Re: How to change the Alert Window colors

2007-12-11 Thread brian.raymes
Give this link a try: http://blog.flexexamples.com/2007/10/23/adding-a-status-message-to-a-flex-alert-control/ You can style the Alert: mx:Style Alert { statusStyleName: myStatus; roundedBottomCorners: false; dropShadowEnabled: false; cornerRadius: 10; }

Re: [flexcoders] How to do equivalent of makeObjectsBindable=false on mx:Consumer

2007-12-11 Thread Robin Hilliard
Hi Pete, nice to hear from you :-) Tried that out but it didn't seem to have any effect - the collections were still wrapped. Isn't that setting more to do with AMF 1/2/3 - wouldn't the array collection wrapping take place inside the mx.messaging client code? Cheers, Robin Robin

RE: [flexcoders] Cairngorm ServiceLocator Issue

2007-12-11 Thread Manu Dhanda
Yes, server-side logging is set to Debug. I tried to put the Alert statement after my delegate.methodCall() and it is reaching there. I am not getting any errors anywhere, that is why I am confused like where to look to sort out this issue. Thanks. Dimitrios Gianninas wrote: Hi, Things

[flexcoders] How to change the Alert Window colors

2007-12-11 Thread Girish
Hi I want to change the colors for Alert Window [Title Bar color, window color etc.,] Regards Girish Get the freedom to save as many mails as you wish. To know how, go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html

[flexcoders] RE: How to change the Alert Window colors

2007-12-11 Thread Girish
Hi I want to change the window TitleBar color not the title text color. Why delete messages? Unlimited storage is just a click away. Go to http://help.yahoo.com/l/in/yahoo/mail/yahoomail/tools/tools-08.html

[flexcoders] How to send Arrays in WebService request???

2007-12-11 Thread Peter Connolly
Hi. I have a SOAP webservice request that handles a variable number of array elements. For example, the body of the request would look something like: ... request body zeroOrManyUpdates keyABC/key update ... /update update ...

[flexcoders] Re: How to change the Alert Window colors

2007-12-11 Thread haravallabhan
Hi Girish try this out.. I think the title bar of the Alert is manged by the css for Panel. If you have written any css for the Panel try changing them or change the name of it and try the one below. Alert{ /*borderStyle:solid;*/

[flexcoders] Re: Compare / Add Dates?

2007-12-11 Thread rmarples
Aly - Check this doc out: http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm? context=LiveDocs_Book_Partsfile=08_Dates_and_times_164_2.html --- In flexcoders@yahoogroups.com, nodovu [EMAIL PROTECTED] wrote: Anyone know how to : Todays date + 7 days Todays date + 1

Re: [flexcoders] Cairngorm Issue

2007-12-11 Thread Manu Dhanda
Code for Form: ?xml version=1.0 encoding=utf-8? mx:Form xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import com.mot.stir.model.StirModelLocator; [Bindable] public var model : StirModelLocator = StirModelLocator.getInstance(); ]] /mx:Script

[flexcoders] this,border exists in debug but not in my class ? How do I access my prog skin ?

2007-12-11 Thread helihobby
Subject: this,border exists in debug but not in my class ? How do I access my prog skin ? Hello, I need to get the instance of my programmatic skin. I see my instance in the debugger when I break point and it lives in: this.border However when I try to access it via ActionScript I get an

Re: [flexcoders] Cairngorm Issue

2007-12-11 Thread Ralf Bokelberg
What does the code of the forms look like? Cheers Ralf. On Dec 12, 2007 5:25 AM, Manu Dhanda [EMAIL PROTECTED] wrote: Anyone with some comments on this issue?? Thanks. Manu. Manu Dhanda wrote: Yes, as I said, with the click of the link button, other form load(from