[flexcoders] Open Source Java Remoting : Mapping complex Structure

2007-10-18 Thread Paramjit Jolly
Hi All, I am using open source java remoting to get data from server in AMF. My structure is complex data structure having ArrayCollection with again complex structure in it. In Flex I can read the object using result.PropertyName ... but I want to MAP the Whole java object

[flexcoders] Re: Problem setting localized Application.pageTitle

2007-10-18 Thread gers32
Thanks for the info. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: That's a compile-time property for setting up the default html templates. You can't use binding or set it at run-time. You can use BrowserManager in Flex 3

[flexcoders] Re: addChild creationCompleteEffect

2007-10-18 Thread johantrax
Nobody with any tips? :( --Johan --- In flexcoders@yahoogroups.com, johantrax [EMAIL PROTECTED] wrote: Hi all, I create a TitleWindow with the PopupManager. The titlewindow should dynamically contain a canvas. So how did I do that. I gave the titlewindow a property called 'contentForm'

[flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread stephen50232
Hi, I've amended my service-config file to endpoint uri=http://{server.name}:{server.port}/flex2gateway/; class=flex.messaging.endpoints.AMFEndpoint/ but I'm still getting the java.lang.NullPointerException' error message, which I originally received. After I made the change I did restart the

[flexcoders] The web-inf folder

2007-10-18 Thread stephen50232
Hi, I'm having a problem with a Flex app connecting to ColdFusion on a new server, and through the great help of some people on this message board I think the problem is the settings in the service-config file. So looking on my server I found that I have two web-inf folders, which both have a

Re: [flexcoders] not kosher to call function from inline renderer?

2007-10-18 Thread Paul Hastings
ah you were right alex, the blob image data wasn't updating (we used the same thumbnail data for the test bed so nobody noticed) plus the debug console was full of Warning: unable to bind to property... messages. i was confusing these w/ Data binding will not be able to detect assignments to

[flexcoders] String concat in MXML (with using @Resource)

2007-10-18 Thread kramus0
Hi all, I have a simple question regarding text values in mxml files. Is it possible to concat string values in a mxml text or label property? So something like this: mx:Label text='Value' + 'AnotherValue'/ I know that it doesn't work because it uses it as a hole string and the single strings

RE: [flexcoders] Re: addChild creationCompleteEffect

2007-10-18 Thread Joan Lafferty
Maybe try your effect on the showEffect rather than the creationCompleteEffect? I haven't tried this to see if it works... just a suggestion. Joan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of johantrax Sent: Thursday, October 18,

RE: [flexcoders] Re: addChild creationCompleteEffect

2007-10-18 Thread Joan Lafferty
One more suggestion to try. You can listen for the childAdd event on the TitleWindow. Then, in the event handler, play the effect on the Canvas. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joan Lafferty Sent: Thursday, October 18,

[flexcoders] SOT: CF LDAP

2007-10-18 Thread Giles Roadnight
Hi All Some of the code I have inherited contains a CFLDAP tag in it that retrieves data about users that's used in a cfc. We've just moved the server to a new domain and don't as yet have a valid certificate for the new domain. The code that used to work fine to get the LDAP info now doesn't

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Tom Chiverton
On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: the java.lang.NullPointerException' error message, which I originally received. After I made the change I did restart the ColdFusion server. Still not sure what's happening? Did you recompile the application against the new services-config.xml

[flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread stephen50232
No, how do I do this, if the system is built using Flex builder on my PC, but running on another server? Do I have to make both the service-config files on both my PC and the server the same and then recompile? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Tom Chiverton
On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: PC, but running on another server? Do I have to make both the service-config files on both my PC and the server the same and then recompile? Yup. -- Tom Chiverton. Are you a great Flex programmer, who knows Cairngorm, and has done some

[flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread stephen50232
And then do I have to restart IIS and or CF server? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: PC, but running on another server? Do I have to make both the service-config files on both my PC and the server

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Muzak
You don't need a config file on your server. The config file is compiled into the flex application. I'm not sure this is still the case with Flex 2.01, but changes to the services-config.xml file weren't picked up by FlexBuilder, unless you 'touched' the project properties. So to be sure that

Re: [flexcoders] The web-inf folder

2007-10-18 Thread Muzak
Flex uses whichever services-config.xml file you point it to. This is a complile-time include, not a runtime include, so you can have as many services-config files as you want (e.g. one for each project). regards, Muzak - Original Message - From: stephen50232 [EMAIL PROTECTED] To:

[flexcoders] Re: addChild creationCompleteEffect

2007-10-18 Thread johantrax
Thanks for the input, however with little success. Adding the effect to showEffect gives nothing. If I recall correctly showeffect is triggered by clicking the object when it's inside a viewstack. However listening to the childAdd brought me to the following idea. At the end of me

[flexcoders] Definition question

2007-10-18 Thread candysmate
I'm using Alex Harui's example code for centering a checkbox within a datagrid. Within my Flex folders I have a class folder so: com - toro - classes and an AS file called CenteredCheckBox.as so: package com.toro.classes { import flash.display.DisplayObject; import flash.text.TextField; import

Re: [flexcoders] Definition question

2007-10-18 Thread Scott - FastLane
I'm going to guess that your import is within the scope of your mx:Script tag which closes with your /mx:Script tag and does not cover your mxml for the page. Using itemRenderer=com.toro.classes.CenteredCheckBox in the MXML should resolve the issue. hth Scott Scott Melby Founder, Fast

[flexcoders] Re: Definition question

2007-10-18 Thread candysmate
--- In flexcoders@yahoogroups.com, Scott - FastLane [EMAIL PROTECTED] wrote: I'm going to guess that your import is within the scope of your mx:Script tag which closes with your /mx:Script tag and does not cover your mxml for the page. Using itemRenderer=com.toro.classes.CenteredCheckBox

Re: [flexcoders] Re: Problem with upload (FileReference and Event.COMPLETE) on Linux

2007-10-18 Thread bjorn -
Thanks for your input Yuiy, let me know if you figgure something out :) A workaround could be to wait for the Event.COMPLETE and then start sending requests to the server asking for the stauts of the file uploaded (using a Timer) - until you get a 'finished' status. It's a bit hacky though.

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Tom Chiverton
On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: You don't need a config file on your server. You do if it's ColdFusion. The destination names, for instance, must match what you compiled against. 2.01, but changes to the services-config.xml file weren't picked up by FlexBuilder, unless you

[flexcoders] eBay using Air

2007-10-18 Thread Giles Roadnight
I'm sure most of you guys knew this already but wired has an article on the beta application: http://www.wired.com/software/softwarereviews/news/2007/10/ebay_desktop thought people might find it interesting. Giles

[flexcoders] Re: Non-english characters

2007-10-18 Thread malaschitz
The same problem with Linux, Flex 2 and newest Flash Player. Did you find any solution ??

[flexcoders] accessing .NET SOAP Service that uses byref parameters...

2007-10-18 Thread flxkid
I have to work with a .NET based webservice that has parameters that are passed byref. Is there a way to deal with this in Flex? You can access the wsdl here: http://univac.hallmarkins.net/ConneXion/ConneXion.asmx?wsdl I will need to access many methods this way, although the first is

[flexcoders] Re: Error using LCDS, DataStore not initialized

2007-10-18 Thread Ravi Varma PM
I think I have LCDS 2.51 and still getting the same error. Error: DataStore is not initialized. Operation failed. How do I check the version of LCDS I am running? Thanks, Ravi --- In flexcoders@yahoogroups.com, João Ribeiro Junior [EMAIL PROTECTED] wrote: Update to LCDS 2.51 bug fixed.

[flexcoders] Re: Error using LCDS, DataStore not initialized

2007-10-18 Thread Ravi Varma PM
I think I have LCDS 2.51 and still getting the same error. Error: DataStore is not initialized. Operation failed. How do I check the version of LCDS I am running? Thanks, Ravi --- In flexcoders@yahoogroups.com, Javier de la Torre [EMAIL PROTECTED] wrote: Hi all, I am working in a project

[flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-10-18 Thread tomeuchre
PS - I did something that Granite didn't think was possible (or at least very easy to do): I got Granite Data Services working with Flex making remote AMF3/rpc calls to a JSF Web Application. There were numerous potential issues involved in this (faces context, phases, lifecycle), but I was

[flexcoders] Looking for horizontal sliding list/dialog component (like iPhone UI)

2007-10-18 Thread andiboarder
Hi! I am looking for a Flex component, which behaves much like the iPhone navigation Interface. I want to create a multi level dialog/list which slides from left to right. Somewhat like the flexlib's horizontal accordion, but without the headers. I am relatively new to Flex and have no

[flexcoders] Re: DateField FlexEvent.ENTER Event?

2007-10-18 Thread rkettrey
Thanks for the reply, it got me going in the right direction. Instead of my original code, I simply overrode DataField's focusInHandler (actually implemented in ComboBase) and changed the line: fm.defaultButtonEnabled = false; to fm.defaultButtonEnabled = true; Now pressing ENTER

[flexcoders] Getting snap shots of images from FLV?

2007-10-18 Thread Faren
Does anyone know of a program which can do a batch of flv's and take a snap shot of each of them from set points in the flv? I know you can use setplay head time but this seems to be taking up a lot of bandwidth for the amount of videos we have. I've noticed YouTube uses images to display a video

[flexcoders] scale 9, quick question

2007-10-18 Thread aaron smith
I've got an image I used scale9 on.. i used pretty much this example: http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0976.html When I set the height the width is changing as well. Can it resize just the height?. Possible?

[flexcoders] Re: Mock objects in AS3

2007-10-18 Thread dave_defusion
Bjorn, I have been looking at this (as I would like a mocking framework for Flex too) this evening and I've had no luck either. The the registerClassAlias() does add the alias to a given class I can't then get anything to accept it as being of that type - I'm not sure what the alias is, but

[flexcoders] Dragging image from TileList - the dragProxy steals the original image!

2007-10-18 Thread bjorn -
I've got this problem where I have images in a TileList and when I start do drag an image the image disappears (goes black) in the TileList. I can still see the image in the drag proxy though. When I release the drag I don't see the image anymore (until I drag it again, and I will see the image in

[flexcoders] Method for Currently focussed Component

2007-10-18 Thread Peeyush Tuli
Hi, Is there a way to determine at the application level, the child UI Component having the current focus ? Regards, Peeyush Tuli MetaDesignSolutions

[flexcoders] Re: Open Source Java Remoting : Mapping complex Structure

2007-10-18 Thread tomeuchre
--- In flexcoders@yahoogroups.com, Paramjit Jolly [EMAIL PROTECTED] wrote: Hi All, I am using open source java remoting to get data from server in AMF. My structure is complex data structure having ArrayCollection with again complex structure in it. Have you tried to

Re: [flexcoders] Dragging image from TileList - the dragProxy steals the original image!

2007-10-18 Thread Jon Bradley
On Oct 18, 2007, at 9:09 AM, bjorn - wrote: I've got this problem where I have images in a TileList and when I start do drag an image the image disappears (goes black) in the TileList. I can still see the image in the drag proxy though. When I release the drag I don't see the image

Re: [flexcoders] Method for Currently focussed Component

2007-10-18 Thread Peeyush Tuli
I got the solution. Regards, Peeyush Tuli MetaDesign Solutions - Original Message - From: Peeyush Tuli To: flexcoders@yahoogroups.com Sent: Thursday, October 18, 2007 6:40 PM Subject: [flexcoders] Method for Currently focussed Component Hi, Is there a way to

RE: [flexcoders] Re: Error using LCDS, DataStore not initialized

2007-10-18 Thread Dimitrios Gianninas
on the server-side, when your server starts up, it will log the version of LCDS you are using. So check your server specific log, where all the System.out statements get logged into. Dimitrios Gianninas Development Team Lead Optimal Payments Inc. From:

[flexcoders] LCDS/Hibernate DataServices Issue

2007-10-18 Thread Joshua Garnett
Hello, We've recently encountered a problem on a project I'm working on. We are using the Data Management Services to managed all of our persisted objects. It connects to our database via a customized Hibernate assembler. The issue we are seeing is that we have a series of collections that

Re: [flexcoders] Re: Non-english characters

2007-10-18 Thread Oliver Wiemer
Sorry i'm new here. What ist your problem? I use german characters. No Problems in Flex or by Linux. Olli malaschitz schrieb: The same problem with Linux, Flex 2 and newest Flash Player. Did you find any solution ??

RE: [flexcoders] Re: Open Source Java Remoting : Mapping complex Structure

2007-10-18 Thread Paramjit Jolly
We tried evaluate granite services ..that is for on the fly compilation we don't need it ..as well as that's not much mature .. So ..we are using Flex compile at design time open source java remoting .. Thanks Regards Jolly Life Fitness - A Division of Brunswick Corporation

RE: [flexcoders] LCDS/Hibernate DataServices Issue

2007-10-18 Thread Dimitrios Gianninas
Hi, I use LCDS, but I dont have the data hierarchy you are mentioning here. But in order to help u debug the issue you might want to turn on debugging while developing to see what Flex is doing on the client and server-side, here is how to do that: - on client side, add the following

Re: [flexcoders] SOT: CF LDAP

2007-10-18 Thread Douglas Knudsen
yup, though could be somethign else. If your LDAP server requires SSL connection only, you need to install the cert into the JVM. This cert has NOTHING to do with your domain name, its a cert for communication between the server software and your LDAP server. So, should be easy to copy this

Re: [flexcoders] Dragging image from TileList - the dragProxy steals the original image!

2007-10-18 Thread bjorn -
jon - thanks for the tip, I'll try it :) Your reason makes sense (the image not being copied) - but the thing I don't understand is that I haven't implemented any drag code at all (so it's all handled by flex) and it works if I specify the url and not the Bitmap content. On 18/10/2007, Jon

[flexcoders] Re: Problem with IE6 and SWF losing focus of input fields...

2007-10-18 Thread Dan G. Switzer, II
Just to clear up any possible confusion, the problem involves HTML input fields (although it could be affecting other things as well.) -Dan --- In flexcoders@yahoogroups.com, Dan G. Switzer, II [EMAIL PROTECTED] wrote: A user recently reported a problem that I've never observed. We have a

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Muzak
So far I've only used the default ColdFusion destination and I guess that's why it always works ;-) Is it documented somewhere that a services-config.xml file is required locally (at compile time) and on the server (and that they have to have matching destinations)? regards, Muzak -

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO

2007-10-18 Thread Greg Morphis
I've checked the services-config.xml file and I have the level=Debug and Endpoint.* in there... logging target class=flex.messaging.log.ConsoleTarget level=Debug properties prefix[Flex] /prefix includeDatetrue/includeDate

[flexcoders] Flex 2 Framework Caching?

2007-10-18 Thread Daniel Freiman
I know the Flex 3 sdk will be required for framework caching, but Flex Builder 3 can compile Flex 2 code. If I chose this option will there a digitally signed release of the Flex 2 framework. I'd rather not have to upgrade my code to work with the Flex 3 framework just to gain this

RE: [flexcoders] Method for Currently focussed Component

2007-10-18 Thread Tracy Spratt
Tell us, please. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peeyush Tuli Sent: Thursday, October 18, 2007 9:31 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Method for Currently focussed Component I got

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Tom Chiverton
On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: default ColdFusion destination We remove that from our production servers because it allows the execution of any CFC. Is it documented somewhere that a services-config.xml file is required locally (at compile time) Probably. The docs for

[flexcoders] Drag Multiple items with the dragManager

2007-10-18 Thread joshuagatcke
Does anyone know how I can send multiple items to dragManager.doDrag()? I am not using a list based control/container, and I have manually added drag and drop support to the items I want to drag/drop to. I want to select multiple items then send an array of those items to the dragManager to

[flexcoders] Re: DateField FlexEvent.ENTER Event?

2007-10-18 Thread rkettrey
I got it working. The final solution is: 1. override focusInHandler leave defaultButtonEnabled = true 2. when the drop down (date picker in this case) is shown, set defaultButtonEnabled = false when it is shown, true otherwise Just my opinion, but I think this should have been the

RE: [flexcoders] Looking for horizontal sliding list/dialog component (like iPhone UI)

2007-10-18 Thread Joan Lafferty
Try using a ViewStack that use WipeRight and WipeLeft effects when hiding and showing a new selectedIndex. This should be a starting point. Joan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of andiboarder Sent: Thursday, October

[flexcoders] dataTipFunction position in datagrid

2007-10-18 Thread hammer995
I have the following: mx:DataGridColumn headerText=Acct dataField=acct width=50 showDataTips=true dataTipFunction=fullAcctName/ The fullAcctName returns a string. Unfortunately, the string is displayed right over the cell you are hovering over to get the tooltip. Is there a way to give it an

Re: [flexcoders] Flex 2 Framework Caching?

2007-10-18 Thread Tom Chiverton
On Thursday 18 Oct 2007, [EMAIL PROTECTED] wrote: I know the Flex 3 sdk will be required for framework caching, but Flex Builder 3 can compile Flex 2 code. If I chose this option will there a digitally signed release of the Flex 2 framework. No, only Adobe can sign RSLs, and I haven't seen

[flexcoders] Re: String concat in MXML (with using @Resource)

2007-10-18 Thread droponrcll
--- In flexcoders@yahoogroups.com, kramus0 [EMAIL PROTECTED] wrote: Hi all, I have a simple question regarding text values in mxml files. Is it possible to concat string values in a mxml text or label property? So something like this: mx:Label text='Value' + 'AnotherValue'/ I know

Re: [flexcoders] Flex 2 Framework Caching?

2007-10-18 Thread Daniel Freiman
Yeah, my question was opperating on the assumption that something will go wrong. Because in my experience no matter how good framework devs are, it seems like upgrades always cause problems for someone's code (In other words, I'm worried about that 0.1 percent you mentioned that will need work).

[flexcoders] Re: Flex app security on IIS

2007-10-18 Thread carl_steinhilber
Thanks Paul, that's GREAT information. If URL-rewriting is a pain and only works in some cases... I'm not really sold on it, especially since I believe it would take an act of congress for our IT folk to set it up on the server. Sending a token seems to me to be a much more manageable idea, since

RE: [flexcoders] FLEX2 - Adding license parameters

2007-10-18 Thread Stephane De Jonckheere
Hello again, I still have the problem. When installing FB2 and registering it, it asks for the FB serial number and we can input the charting one. If I do that, Flex app compiled with FB doesn't have the watermark. For deployment purpose, I use an ANT script that build pre-configured

[flexcoders] questions about Flex and deploying on servers

2007-10-18 Thread stephen50232
Hi, I always create my Flex apps using the ColdFusion remoting project in Flex builder, then I put the in my wwwroot folder on my dev machine, and everything works fine. now when I try to deploy them to another server I always get errors (CFCs not found, java.lang.NullPointerExceptions), so I

[flexcoders] Re: Framework Caching not working

2007-10-18 Thread danielvlopes
Many thanks Darrell, now i uderstand why getting error. And -static-rsls=false keep my build.xml much more clean and easy to read, and avoid configuration problems. Thanks again. Just one more question about flash player, why adobe don't put flex framework inside Flash Player? It will make Flex

[flexcoders] Re: Problems do make framework caching work

2007-10-18 Thread danielvlopes
I fix this with Darrell Loverin and Alex Harui help in this link http://tech.groups.yahoo.com/group/flexcoders/message/91096 --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Hello Alex, i try upload the swf's files generated and everything still white and nothing

[flexcoders] Re: Flex is becoming unviable

2007-10-18 Thread danielvlopes
I'm sure i will note rebuild the project, i'm realy like flex and adobe products, but i will waiting some months and the final release to use flex in small websites and app.(When more user has dowloaded framework :-)) Only reason i prefer rsl inside player is minimize initial dowloadn time. But

RE: [flexcoders] dataTipFunction position in datagrid

2007-10-18 Thread Alex Harui
Try tooltipshow in a custom renderer From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hammer995 Sent: Thursday, October 18, 2007 8:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] dataTipFunction position in datagrid I have

RE: [flexcoders] Method for Currently focussed Component

2007-10-18 Thread Alex Harui
I hope his answer is focusmgr.getfocus From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Thursday, October 18, 2007 7:43 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Method for Currently focussed

[flexcoders] Re: Framework Caching not working

2007-10-18 Thread Darrell Loverin
Just one more question about flash player, why adobe don't put flex framework inside Flash Player? It will make Flex be amazing plataform even for small websites and app, confroting ajax in your best vantage on flex, the size of files without any first huge loading. It would make the download

[flexcoders] Address in use error?

2007-10-18 Thread Greg Morphis
I deleted the project I was getting a Fault error on (see other post for more information). I uninstalled and reinstalled FDS2.0.1, I checked the project back out from CVS. When I load the program I get [Flex] 10/18/2007 12:26:51.938 RTMP-Server failed to start up: java.net.BindException: Address

[flexcoders] List Component: Working with Collapsed and Expanded ItemRenderer

2007-10-18 Thread Jurgen Beck
I am experiencing something mildly strange with the List component when using a custom item renderer that has two states, a collapsed state and an expanded state. When I have one or more item renderers in the expanded state, the List component eventually will display the vertical scrollbar.

Re: [flexcoders] SOT: CF LDAP

2007-10-18 Thread Giles Roadnight
Thanks for the reply, I have it working now. One of the parameters was different to the parameters we have on the on the other servers, I changed it and it worked. I don't know why it worked before though! On 10/18/07, Douglas Knudsen [EMAIL PROTECTED] wrote: yup, though could be somethign

RE: [flexcoders] stylesheet issue crashing app

2007-10-18 Thread Alex Harui
That's not what the stack trace shows. Is it possible that you are compiling LoginManager as your app class in your project? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Cuadra Sent: Tuesday, October 16, 2007 10:26 PM To:

RE: [flexcoders] Drag Multiple items with the dragManager

2007-10-18 Thread Alex Harui
I would think you could hide the dragInitiator when you call dotDrag and show it when you get a dragComplete event. The dragImage you hand to doDrag can be a Canvas with the multiple items positioned appropriately. From: flexcoders@yahoogroups.com

[flexcoders] Re: Address in use error?

2007-10-18 Thread Greg Morphis
I changed the port from 2038 to 2039 in the services-config.xml and rebooted my computer, getting same error.. channel-definition id=my-rtmp class=mx.messaging.channels.RTMPChannel endpoint uri=rtmp://{server.name}:2039 class=flex.messaging.endpoints.RTMPEndpoint/

RE: [flexcoders] List Component: Working with Collapsed and Expanded ItemRenderer

2007-10-18 Thread Alex Harui
Renderers are recycled. Only as many renderers that you can see are created regardless of how many items in your data provider. So, one renderer can end up having to render various items in the dataprovider. As such, all aspects of its visuals must be driven by the .data object including which

[flexcoders] Rounded scroll bar flex skin ala mac style ?

2007-10-18 Thread Rick Schmitty
Has anyone had any luck with a completely rounded scroll bar skin? It seems no matter what I do with the scale nine lines that things get stretched out into a missle tip instead of the ball tip I'm expecting

RE: [flexcoders] String concat in MXML (with using @Resource)

2007-10-18 Thread Alex Harui
Binding is the only way to declaratively set up expressions that get evaluated. You can use script as well: mx:Label id=foo initialize=foo.text=value + anotherValue/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kramus0

[flexcoders] Unable to use the source code -- Exchanging Complex Data with Back-End Systems

2007-10-18 Thread vkc_nair
http://www.adobe.com/devnet/flex/articles/complex_data.html Trying to download and use the sample code(complexdata.zip) from the above site. Getting the message Invalid archive. If any of you have a valid zip file please help. Thanks Vimal

RE: [flexcoders] List Component: Working with Collapsed and Expanded ItemRenderer

2007-10-18 Thread Jurgen Beck
Makes sense, Alex. Thanks! I also found an entry in the Flex Bug system after I posted on the list. So, this is for documentation for others to see: http://bugs.adobe.com/jira/browse/SDK-12343 In it was a great reference to an article you wrote: http://blogs.adobe.com/aharui/2007/03/

[flexcoders] Is there any way to access java applet in AIR?

2007-10-18 Thread michniu
Hi Gurus, I have to access applet in my Applcation. Is that possible if I use AIR HTML Component? thanks in advance Mike

RE: [flexcoders] Is there any way to access java applet in AIR?

2007-10-18 Thread Samuel R. Neff
Unless there have been some recent changes, the AIR HTML component only supports Flash Player and PDF embedded content. No java applets or activex controls or any other plugins. Sam --- We're Hiring! Seeking a passionate developer to join our team

[flexcoders] Re: Address in use error? [SOLVED]

2007-10-18 Thread Greg Morphis
This is solved On 10/18/07, Greg Morphis [EMAIL PROTECTED] wrote: I changed the port from 2038 to 2039 in the services-config.xml and rebooted my computer, getting same error.. channel-definition id=my-rtmp class=mx.messaging.channels.RTMPChannel endpoint

Re: [flexcoders] Re: problems access a Flex/CF site via a URL

2007-10-18 Thread Muzak
default ColdFusion destination We remove that from our production servers because it allows the execution of any CFC. I guess that makes sense if you have dedicated hosting, not so when you have to deal with a shared hosting environment. Is it documented somewhere that a

Re: [flexcoders] Re: Unknown destination 'EmployeeServiceRO [SOLVED]

2007-10-18 Thread Greg Morphis
Thanks guys for the help.. I believe I have everything working now.. I think the problem was connected to my other post Address in use On 10/18/07, Greg Morphis [EMAIL PROTECTED] wrote: I've checked the services-config.xml file and I have the level=Debug and Endpoint.* in there...

[flexcoders] Flex eSeminar Series: Video, PHP, Java, Big Payoffs (weekly on Tuedays)

2007-10-18 Thread greg h
fyi ... Adobe runs (on an on-going basis), eSeminar series. There currently is a Flex eSeminar series running. This email is an FYI regarding the four remaining topics in the current Flex eSeminar series. The remaining topics (and dates) are: * Flex Video Integration (Tue, Oct 23, 2007)

Re: [flexcoders] questions about Flex and deploying on servers

2007-10-18 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I use the same Directory Structure on my Development, Testing and production Servers so when I create a Flex Application, I am sure that it will work no matter what server it is currently running on. I have all of the flex swf files in a web

[flexcoders] Re: List Component: Working with Collapsed and Expanded ItemRenderer

2007-10-18 Thread scalenine
I had the same issue with the player on Shilliber.com. Exact same use case. I think the guy who programmed it up ended up using a VBox. Juan scalenine.com | degarafa.com | ocflex.org --- In flexcoders@yahoogroups.com, Jurgen Beck [EMAIL PROTECTED] wrote: Makes sense, Alex. Thanks! I also

[flexcoders] How to hide browser address bar and tool bar with navigateToURL()?

2007-10-18 Thread michniu
Hi coders, I have to popup a new browser in my application, and I need hide the toolbar adn addressbar in the popup window. Any help is appretiated Thanks Mike

[flexcoders] Re: List Component: Working with Collapsed and Expanded ItemRenderer

2007-10-18 Thread Jurgen Beck
You mean, using a VBox as the container and then adding the custom components as children based on the rows in the dataprovider? I like that idea. On Oct 18, 2007, at 4:32 PM, scalenine wrote: I had the same issue with the player on Shilliber.com. Exact same use case. I think the guy who

[flexcoders] httpservice url decode problem

2007-10-18 Thread coder3
Hi, i need to use an url that contains / in the parameters. like mx:httpService id=srv url=http://www.mydomain.com/eTraffic.cgi?target=%2Fed-switchports%2F100%2F1006%2F16;range=d; result=resultHandler(event)/ i use unescapeMultiByte to convert first and then send it.

RE: [flexcoders] List Component: Working with Collapsed and Expanded ItemRenderer

2007-10-18 Thread Jurgen Beck
Quick follow-up question: Since we are storing the state of the item renderer in a property of the data object, which event would be best used to make sure the state is restored when the specific item comes back into view? On Oct 18, 2007, at 1:47 PM, Alex Harui wrote: Renderers are

Re: [flexcoders] How to hide browser address bar and tool bar with navigateToURL()?

2007-10-18 Thread Scott - FastLane
Not sure if you can do all of that from within flex... but you can certainly do it via JavaScript's window.open() method. If you want to do it that way you will need to make a call to ExternalInterface.call() to call the JS method on the HTML page that contains your swf. hth Scott Scott

[flexcoders] Unable to Expand a Tree programatically..

2007-10-18 Thread sk_acura
Hi All, I have a Tree Control and is backed by a ArrayCollection of Node (custom) Class. And when i set the dataProvider and call the updateNow it doesn't expand..(i have to manuallt expand the nodes..) Here is the Code i am using..(I am initilaizing this on my init()

RE: [flexcoders] httpservice url decode problem

2007-10-18 Thread Tracy Spratt
Can you either POST or GET the parameters in the request object instead of concatenating the url? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of coder3 Sent: Thursday, October 18, 2007 5:48 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Unable to Expand a Tree programatically..

2007-10-18 Thread Tracy Spratt
No, since you have just assigned the dataProvider, you need to give the Tree a chance to render before calling visually oriented methods. Use callLater to call the expand node code. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: Open Source Java Remoting : Mapping complex Structure

2007-10-18 Thread tomeuchre
If that is all you thought Granite was good for, you missed the big picture. Granite IS open source remoting! With Granite I can have it both ways: Flex compile at design time OR runtime, AND let it handle the remoting with AMF3 serialization/deserialization. I built my Flex app two ways: 1)

[flexcoders] Re: How to hide browser address bar and tool bar with navigateToURL()?

2007-10-18 Thread michniu
Thanks Scott! But what if I use it in AIR Application? --- In flexcoders@yahoogroups.com, Scott - FastLane [EMAIL PROTECTED] wrote: Not sure if you can do all of that from within flex... but you can certainly do it via JavaScript's window.open() method. If you want to do it that

RE: [flexcoders] LCDS/Hibernate DataServices Issue

2007-10-18 Thread Jeff Vroom
Do you have association tags (i.e. one-to-many) defined for the collectionb and collectionc properties? If you do not have an explicit association tag defined, DMS uses the hierarchical values mode where it still detect changes but treats that entire property more like a blob which gets sent

[flexcoders] Effect on VBox with Repeater...

2007-10-18 Thread qnotemedia
Stupid question here probably, but I've been struggling with effects and generally doing visual design in Flex. OK - I have Vbox. Within it is a repeater. The component repeated is just a line of text and an image. I have rollOver and rollOut styles applied that will highlight the text by

Re: [flexcoders] Hyperlink in flex.

2007-10-18 Thread Tom Preet
Hi Venkat, use the URL Navigator control for ex: var u:URLRequest = new URLRequest(x.mxml); navigateToURL(u, _self); for the Image Click event ok. Bye.. Preet. On 10/19/07, Venkat Perpati [EMAIL PROTECTED] wrote: Hi, Can anyone please tell me about how to add a hyperlink

[flexcoders] how do I know which object I need to expand?

2007-10-18 Thread TJ Downes
I am iterating over a hierarchical XMLList recursively, how do I know which object in the Tree I need to expand?

  1   2   >