Re: [flexcoders] DividedBox question - divider position

2006-01-31 Thread Sreenivas R
You can set the explicitMinHeight property of the panel to achieve this. -Sreenivas On 1/31/06, jgraham_us [EMAIL PROTECTED] wrote: Is there an easy way to set a minimum position for a divider in aDividedBox?For example.I have three panels in a VDividedBox when I drag divider 0 up I want it to

Re: Re: [flexcoders] Flex 1.5 / FlashPlayer 8 Upload problems on remote host

2006-01-31 Thread Reto M. Kiefer
Dear all, thank you so much for this help. It was the lowercase filename of fileIO.swf that caused the problems... But this thing drove mealmost nuts... Anyway issue is solved thanks to you for you help! CU Reto 2006/1/31, Reto M. Kiefer [EMAIL PROTECTED]: Thanks for this suggestion!!!

Re: Re: [flexcoders] Flex 1.5 / FlashPlayer 8 Upload problems on remote host

2006-01-31 Thread Reto M. Kiefer
Thanks for this suggestion!!! Yes we are devleoping on Windows and deploying on Linux Servers. I will check this out and report if this was the problem. Thanks again and best regards Reto 2006/1/31, Stacy Young [EMAIL PROTECTED]: Are you deploying on unix? I remember there was a case issue

RE: [flexcoders] How do you reference an object to get attributes for a tag?

2006-01-31 Thread Sauro, Nick
What do you mean by dynamic custom object You can reference another objects properties by doing something along the lines of mx:Label text={yourObject.property}/ That will bind those values. Is that what you mean? From: flexcoders@yahoogroups.com

[flexcoders] Re: Problem with Remote Objects - Urgent

2006-01-31 Thread Robs
Thanks Peter. Your suggestion worked. --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: Try using the asynchronous completion token pattern to map results to various calls. When you make the call, retain the token that's returned: var token:Object =

[flexcoders] Re: Problem creating Listener (Flex 2)

2006-01-31 Thread yaagcur
--- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote: On 1/27/06, yaagcur [EMAIL PROTECTED] wrote: I currently have a tile list which, when clicked on, correctly calls a function mx:TileList id=myTiles dataProvider={myData} listItemRenderer=ThumbNail

[flexcoders] Form containers don't allow datagrids (heght=100%) to stretch - flex 1.5

2006-01-31 Thread bhaq1972
Hi i've got the following. mx:VBox height=100% mx:DataGrid height=100%/ /mx:VBox this gives a real dataGrid with a height=100% However, if i use a Form container instead, the datagrid doesnt stretch (height!=100%) mx:Form height=100% mx:DataGrid height=100%/ /mx:Form i used minHeight=0 but

[flexcoders] Re: Return of the Menu Depth Monster!

2006-01-31 Thread bhaq1972
maybe your menu dataprovider needs to be added another way you could try the following myMenu = Menu.createMenu(myApp, null); //populate dataprovider for (var obj in myEMP2Service.result.query.row) { myMenu.addMenuItem(myEMP2Service.result.query.row[obj]); } myMenu.show(200, 10); or if your

[flexcoders] Re: DividedBox question - divider position

2006-01-31 Thread jgraham_us
I tried explicitMinHeight, it doesn't appear to be a valid property and if I set it, for example panel[explicitMinHeight], it doesn't have any effect when I resize the dividedbox container. Anyone know another way to do this? --- In flexcoders@yahoogroups.com, jgraham_us [EMAIL PROTECTED]

RE: [flexcoders] Re: Return of the Menu Depth Monster!

2006-01-31 Thread Jonathan Miranda
Again, no luck with this. I think its something wrong with the change tag in the DataGrid..I put a Canvas object in the root and made it my container to pass in. Button click works, Datagrid change does not. Anyone successfully got a menu to popup with a change event?

RE: [flexcoders] Re: Return of the Menu Depth Monster!

2006-01-31 Thread Jonathan Miranda
And as dumb as it sounds, perhaps a quick fix to this is that on the change event with the datagrid, I use actionscript to click the button.and just hide the button. Cant figure out how to click the button with AS though. _ Jonathan Miranda

[flexcoders] Live Docs

2006-01-31 Thread Rich Tretola
Anyone from MM or Adobe please take a look at livedocs. I am getting an error at: http://livedocs.macromedia.com/flex/15/asdocs_en/ 500 unable to create new native thread java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start(Native Method) at

[flexcoders] correct getURL settings

2006-01-31 Thread sdhfhdgs
If i was to want a picture to get returned from a servlet, what sort of call do I need to make. If i do the following the image will appear in the window (IE) by itself. I want to assign it to the image which is in a mxml file. image.source = getURL(http://localhost:/myapp/; , _self );

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Peter Farland
If you're deploying CF and Flex on top of JRun, make sure the JRunflashgateway.ear isn't being deployed for your web application as it may be using the /flashservices context root. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul KenneySent: Monday, January

Re: [flexcoders] Re: DividedBox question - divider position

2006-01-31 Thread Sreejith Unnikrishnan
I believe what he meant was to specify the minHeight explicitly. You can calculate it programatically as well. On creation complete calculate the height of the individual components and set and reset them. This defenitely looks interesting. I am trying it out. I'll post the code IF i am

Re: [flexcoders] Live Docs

2006-01-31 Thread Sreejith Unnikrishnan
It was down! Looks like it is up now. - Original Message - From: Rich Tretola To: flexcoders@yahoogroups.com Sent: Tuesday, January 31, 2006 9:53 PM Subject: [flexcoders] Live Docs Anyone from MM or Adobe please take a look at livedocs. I am gettingan error

[flexcoders] DataGrid Renderer and referencing back

2006-01-31 Thread Jonathan Miranda
I have a custom cellRenderer which has a button in itand when that button is pressed, I want to force the datagrid to resend its HTTPService to get an update. How can I reference my HTTPService in the main app, when my custom cellRenderer is in a separate mxml file?

[flexcoders] Problems accessing .NET 2.0 web service

2006-01-31 Thread tobiaspatton
Hello everyone; I'm having dificulty accessing a web service using ws:WebService. The service was created using .NET 2.0 and Windows Communication Foundation. It's hosted on my local machine. A client written in C# has no problem accessing it. When accessed through a small Flex 2.0

RE: [flexcoders] Problems accessing .NET 2.0 web service

2006-01-31 Thread Carson Hager
This is likely using the WSDL 1.2 specification in which case the Flex client cannot currently communicate with it. If you post the WSDL, I can verify this. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL

Re: [flexcoders] DataGrid Renderer and referencing back

2006-01-31 Thread JesterXL
You can dispatch an event that bubbles in your cellrenderer, and your main app can catch this event, and then resend the HTTPService. Since the event is not internal to DataGrid's metadata, you can only subscribe via code. - Original Message - From: Jonathan Miranda To:

RE: [flexcoders] Return of the Menu Depth Monster!

2006-01-31 Thread Joan Tan
I just tried this and confirmed that its a bug. I will log it in our bugbase. Thanks. Joan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Miranda Sent: Tuesday, January 31, 2006 6:27 AM To: flexcoders@yahoogroups.com Subject: RE:

RE: [flexcoders] Return of the Menu Depth Monster!

2006-01-31 Thread Jonathan Miranda
Woohoo, Im not crazy! J _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent see your pieces. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Mehdi, Agha
No its not. Its on a mapped drive. Agha Mehdi IDT - eBusiness Program Manager From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Kenney Sent: Monday, January 30, 2006 6:21 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Mehdi, Agha
Flashgateway.ear is not deployed. Agha Mehdi IDT - eBusiness Program Manager From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Farland Sent: Tuesday, January 31, 2006 8:50 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]

Re: [flexcoders] DividedBox question - divider position

2006-01-31 Thread Manish Jethani
On 1/31/06, Sreenivas R [EMAIL PROTECTED] wrote: You can set the explicitMinHeight property of the panel to achieve this. If it's 1.5, I think you meant minHeight. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] DataGrid Renderer and referencing back

2006-01-31 Thread Jonathan Miranda
Hey jester, thanks for the replybut could give a real basic example of this? Im having issues with bubbling.I found a semi-example on CFlex and working with that so far using this.dispatchEvent(someEventObject); So would I need someEventObject in both the application mxml and the

RE: [flexcoders] Jumpy labels with a cellrendere in Tree

2006-01-31 Thread Joan Tan
Can you post your code? Do you have any specific properties set on your Label listItemRenderer? Joan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of moyosaned Sent: Tuesday, January 31, 2006 1:37 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Form containers don't allow datagrids (heght=100%) to stretch - flex 1.5

2006-01-31 Thread Manish Jethani
On 1/31/06, bhaq1972 [EMAIL PROTECTED] wrote: However, if i use a Form container instead, the datagrid doesnt stretch (height!=100%) mx:Form height=100% mx:DataGrid height=100%/ /mx:Form Works for me in Flex 2 - must be a bug in 1.5. Does it work if you set an explicit height for the

Re: [flexcoders] Transparent Tilelist

2006-01-31 Thread Manish Jethani
On 1/30/06, Matt Chotin [EMAIL PROTECTED] wrote: I don't think I ever figured out a way to make it transparent in 1.5. Not sure if we did it in 2.0, worth checking though and if not filing a bug. mx:TileList backgroundAlpha=.5 Works in Flex 2 (latest build on my machine). -- Flexcoders

Re: [flexcoders] Resizing Panel child components when ControlBar is resized

2006-01-31 Thread Manish Jethani
On 1/31/06, douglowder [EMAIL PROTECTED] wrote: I have a Flex 1.5 app that contains various Panels and TitleWindows that use a technique described by Kevin Hoyt: http://weblogs.macromedia.com/khoyt/archives/2005/01/getting_started. cfm#comments Now, in my Panels I'm putting the hideable

Re: [flexcoders] Jumpy labels with a cellrendere in Tree

2006-01-31 Thread JesterXL
I've had this happen too. Inheritance of UIComponents blow as cellrenderers. My suggestion is to extend like Box or HBox, and create your label inside, and center it. - Original Message - From: Joan Tan To: flexcoders@yahoogroups.com Sent: Tuesday, January 31, 2006 1:16 PM

[flexcoders] How about for Flex 2? Re: Customizing default Flex preloader

2006-01-31 Thread Darin Kohles
Flex 2 docs on this a very thin. Has anyone tackled this? Is it similar enough to Flex 1.5, that I can use them as a starting point? Or has the model change drastically for AS3? Thanks for any feedback. -- Flexcoders Mailing List FAQ:

Re: [flexcoders] correct getURL settings

2006-01-31 Thread Manish Jethani
On 1/31/06, sdhfhdgs [EMAIL PROTECTED] wrote: image.source = getURL(http://localhost:/myapp/; , _self ); image.source = http://localhost:/myapp/;; That should do it. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Reusable CellRenderer

2006-01-31 Thread Jason Doyle
I would like to create a reusable cellRenderer that I can use on multiple columns in a dataGrid. But I am having a hrad time wrapping my brain around it. First, how would you call the same cellRenderer for each column but populate it with different data for each? I have tried to assign the

[flexcoders] Re: DividedBox question - divider position

2006-01-31 Thread jgraham_us
Well I could of sworn I tried minHeight and it didn't work, but I put it in the panel's creationComplete and it works good. Not sure what was happening before. --- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: I believe what he meant was to specify the

[flexcoders] combox drop down aligning to the right?

2006-01-31 Thread Sauro, Nick
Currenly, when a ComoBox is created, the default setting when it drops down, is the list is flush with the left side of the comobox. Is there a way to make the Comboboxs dropdown list align with the right? Currently: [ select] [ item ] [ item ] Can that be changed to [select]

Re: [flexcoders] DataGrid Renderer and referencing back

2006-01-31 Thread JesterXL
Here's the basic steps for Flex 1.5: - put a button in your cellrenderer - if ActionScript, register for the click event, and provide a click function delegate in the cell renderer - if MXML, point click event to a event handler function in the cellrenderer - in your event handler for the

[flexcoders] Vertical Text on a button

2006-01-31 Thread jgraham_us
I have found examples on doing vertical text on a Label but I would like to put vertical text on a button. Is there an example of doing this? The label just takes a String. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Vertical Text on a button

2006-01-31 Thread JesterXL
yourButton.setStyle(embedFonts, true); yourButton.setStyle(fontFamily, Verdana); And ensure whatever font you are embedding is the font it's using, like Verdana for example. Then: yourButton._rotation = 90; - Original Message - From: jgraham_us [EMAIL PROTECTED] To:

[flexcoders] Re: Reusable CellRenderer

2006-01-31 Thread Darin Kohles
here are some examples: http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/js/html/wwhelp.htm?href=0325.htm --- In flexcoders@yahoogroups.com, Jason Doyle [EMAIL PROTECTED] wrote: I would like to create a reusable cellRenderer that I can use on multiple columns in a

[flexcoders] Re: listOwner equivalent Flex 2

2006-01-31 Thread Darin Kohles
If you write your renderer in AS instead of MXML, you can pass a reference to the parent when you call the constructor for the class e.g. in calling class (Application) myRenderer:myRendererClass = new myRendererClass(this); someObject.cellRenderer = myRenderer.doRender; in custom Renderer

[flexcoders] Re: How do you reference an object to get attributes for a tag?

2006-01-31 Thread douglowder
Aha. Yeah, the text property of a Label needs to be a String. Since mx.controls.Spacer is not a String, you are getting the string representation of the object: the [object Object] part. That's the problem, the solution is... a little harder. You can put a dynamic number of space

RE: [flexcoders] DataGrid Renderer and referencing back

2006-01-31 Thread Jonathan Miranda
Close..few questions. And I guess I should have clarified, but Im using Flex 2 at the moment. Ive narrowed it down so I have 0 errors, but nothing is calling my listener :-/ 1) what is listOwner? 2) Im assuming all those Delegate.create are for Flex 1.5 3) how would I set bubbles:true

[flexcoders] Re: Problems accessing .NET 2.0 web service

2006-01-31 Thread tobiaspatton
The WSDL is at the bottom of the original message. Given that there are tags using the SOAP12 namespace, I think your guess is right. Thanks. Tobias. --- In flexcoders@yahoogroups.com, Carson Hager [EMAIL PROTECTED] wrote: This is likely using the WSDL 1.2 specification in which case the

[flexcoders] flashpaper embedded in Flex 2.0

2006-01-31 Thread Dominick Accattato
I noticed that the Flex2.0documentation has a chapter dedicated to using Flashpaper with Flex 2.0. However, the chapter is still not written. Has anyone had success loading Flashpaper into a Flex 2.0 application. I've loaded it in but the following were not working: print button as no

[flexcoders] Re: Resizing Panel child components when ControlBar is resized

2006-01-31 Thread douglowder
Thanks, Manish. Resizing the ControlBar was the easy part and you're correct in that it works fine. What I want, but haven't been able to get working, is for the rest of the panel to expand to fill the empty space when the control bar is collapsed, and to shrink so that nothing is obscured

[flexcoders] Re: Flex 2 ActionScript and MXML Reference

2006-01-31 Thread Brendan Meutzner
This still doesn't appear to be up... any word from the Adobe folks on when/where we can expect this to appear? Thanks, Brendan --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Two possibilities: 1) we had a crash on a different server but I suppose there's a

RE: [flexcoders] Re: Problems accessing .NET 2.0 web service

2006-01-31 Thread Carson Hager
I didn't see it was there. That's absolutely the case. I don't know details about Flex's support for this in 2.0 but I would have to think it's part of the plan. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email:

[flexcoders] Free Flex???

2006-01-31 Thread hank williams
There is an article on news.com that says the following. Adobe is introducing a free, basic software developers kit which includes the Flex Framework, compiler and documentation. The Flex Builder development tool costs $1,000 per developer. The link is here.

RE: [flexcoders] Free Flex???

2006-01-31 Thread Carson Hager
This is basically flex development without the Flex Builder tool or the Enterprise Services. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY Mobile: 1.703.489.6466

Re: [flexcoders] Reusable CellRenderer

2006-01-31 Thread JesterXL
The terms "reusable" and "cellrenderer" are not mutually exclusive, sorry. I've never had a project where I didn't write a new cellreneder for each DataGrid. They are like finely crafted food dishes; each is unique and takes time, love, and care. Granted, things like getCellLabel and

[flexcoders] Dynamic tab event label problem

2006-01-31 Thread Dan Plesse
My problem is I don't know how to gather the label using the event object however not using the event is fine too. Can you tabDetails.selectedItem.label as well. // My Dynamic tab var newTab = tabDetails.createChildWithStyles(chatPanel2, 'HelloTab' + hello, { label:'HelloTab' + hello,

RE: [flexcoders] Free Flex???

2006-01-31 Thread Jason Hawryluk
I would think about 1000$ :) Cynical; I know, but funny just the same Jason -Message d'origine-De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]De la part de hank williamsEnvoyé: mardi 31 janvier 2006 22:07À: flexcoders@yahoogroups.com; Flashcoders mailing

Re: [flexcoders] Free Flex???

2006-01-31 Thread Dominick Accattato
omg, the heavens have spoken! On 1/31/06, hank williams [EMAIL PROTECTED] wrote: There is an article on news.com that says the following.Adobe is introducing a free, basic software developers kit which includes the Flex Framework, compiler and documentation. The FlexBuilder development tool

RE: [flexcoders] Vertical Text on a button

2006-01-31 Thread Graham, Jason
The problem is I want the button to be a specific size after I rotate it. For example. I want a long button that's width = 20 and height = 100% with vertical text. If I initially create the button with a width of 20 and height of 100% and do the rotate the button is now horizontal and half off

RE: [flexcoders] Free Flex???

2006-01-31 Thread João Fernandes
The beta of Flex 2.0 is scheduled to be available for download on Wednesday from the Adobe Labs Web site, along with Adobe Flash Player 8.5. A final version of Flex 2.0 is due in the second quarter this year. Wednesday? This Wednesday??? João Fernandes Secção de Desenvolvimento Departamento

Re: [flexcoders] Free Flex???

2006-01-31 Thread Clint Modien
Bravo to adobe.On 1/31/06, Carson Hager [EMAIL PROTECTED] wrote: This is basically flex development without the Flex Builder tool or theEnterprise Services. CarsonCarson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL

Re: [flexcoders] Free Flex???

2006-01-31 Thread Weyert de Boer
João Fernandes wrote: The beta of Flex 2.0 is scheduled to be available for download on Wednesday from the Adobe Labs Web site, along with Adobe Flash Player 8.5. A final version of Flex 2.0 is due in the second quarter this year. Cool... Flash Player 8.5 in the Adobe brand :-) --

RE: [flexcoders] Dynamic tab event label problem

2006-01-31 Thread Rob Rusher
Every event has two things; target and type. These are the who and what of the event. Depending upon the event, there may be other properties that you can access as well. Who dispatched the event is 'event.target'. What type of event was dispatched is 'event.type'. I assume this is Flex 1.5

RE: [flexcoders] Free Flex???

2006-01-31 Thread Carson Hager
There were rumblings about this but I have to say I'm surprised to see it actually happen. We'll have to see if someone from Adobe will officially corroborate this news. C Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com

Re: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Paul Kenney
If the mapped path to the CFC was /remote/RemoteService.cfc, then move the CFC to a directory under the webroot with the same path. You should be able to get to it via a browser: http://servername/remote/RemoteService.cfcIf you do that, you can now call the CFC as a remote

[flexcoders] How do you get the tab label using change event and tabbar.selectedChild

2006-01-31 Thread Dan Plesse
How do you get the tab label using change event and tabbar.selectedChild? // the eventListenr tabDetails.addEventListener(change, mx.utils.Delegate.create(this, onChange)); // the function function onChange(event){ debugTxt.text += line 26 tabbar.selectedChild: == + tabDetails.selectedChild

RE: [flexcoders] How do you get the tab label using change event and tabbar.selectedChild

2006-01-31 Thread Sauro, Nick
Have you tried selectedChild.label or selectedChild.text? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dan Plesse Sent: Tuesday, January 31, 2006 5:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do you get the tab label

Re: [flexcoders] Re: Resizing Panel child components when ControlBar is resized

2006-01-31 Thread Manish Jethani
On 2/1/06, douglowder [EMAIL PROTECTED] wrote: What I want, but haven't been able to get working, is for the rest of the panel to expand to fill the empty space when the control bar is collapsed, and to shrink so that nothing is obscured when the control bar is expanded. That currently does

[flexcoders] Re: Dynamic tab event label problem

2006-01-31 Thread Dan Plesse
Thanks Rob, Reading the docs I found out it was the change event and past code said to use tabDetails.selectedChild. so I added this tabDetails.addEventListener(change, mx.utils.Delegate.create(this, onChange)); The feedbacks looks like

RE: [flexcoders] flashpaper embedded in Flex 2.0

2006-01-31 Thread Joan Tan
We have had a bug open in our bugbase that the controls in Flash paper dont work in Flex 2.0. Im not sure the bug has been investigated yet, but we are aware of the issue. Joan From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dominick

[flexcoders] Re: How do you get the tab label using change event and tabbar.selectedChild

2006-01-31 Thread Dan Plesse
I just wild guessed tabDetails.selectedChild.label and bingo that was it. Thanks Everyone Dan --- In flexcoders@yahoogroups.com, Sauro, Nick [EMAIL PROTECTED] wrote: Have you tried selectedChild.label or selectedChild.text? From:

[flexcoders] Re: How do you get the tab label using change event and tabbar.selectedChild

2006-01-31 Thread douglowder
The event object already has all you need. mx.controls.Alert.show( event.target.getChildAt(event.newValue).label); You can use event.prevValue to get the previously selected tab index. Doug --- In flexcoders@yahoogroups.com, Dan Plesse [EMAIL PROTECTED] wrote: How do you get the

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Mehdi, Agha
I can get to it if I browse to the same cfc. http://servername/mappedName/services/app/service.cfc. I can also execute it from CF code. The problem is that Flash Remoting is not configuring properly since I cant do http://servername/flashservices/gateway. On my other servers, its working

Re: [flexcoders] Free Flex???

2006-01-31 Thread Manuel Saint-Victor
That just made my week!!Maybe my whole month!!! As far as building environments-didn't sephiroth mention plans to provide a development environment for AS3 and XML? Mani -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread João Fernandes
Give a try using /amfgateway instead of /flashservices/gateway or maybe your flex instance can't see the /mappedName so it can't connect to the right folder. BTW, You have changed your remoteObject whitelist right? João Fernandes Secção de Desenvolvimento Departamento de Informática

Re: [flexcoders] Free Flex???

2006-01-31 Thread Manuel Saint-Victor
Wait there's more- Apparently there's going to be a single server limited free version of the Enterprise Services! More on this at Christian's blog On 1/31/06, Manuel Saint-Victor [EMAIL PROTECTED] wrote: That just made my week!!Maybe my whole month!!! As far as building environments-didn't

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Mehdi, Agha
Title: RE: [flexcoders] Re: FlashServices/Gateway Should I just do http://servername/amfgateway ? Yeah, the whitelist in the config file is wide open for now. Agha Mehdi IDT - eBusiness Program Manager -Original Message- From: João Fernandes [mailto:flexcoders@yahoogroups.com]

Re: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Paul Kenney
I'm gonna ask a stupid question, but is the flex server in the crossdomain.xml file in the coldfusion server's webroot? I'm just trying to eliminate possibilities, however trivial.On 1/31/06, João Fernandes [EMAIL PROTECTED] wrote: Give a try using /amfgateway instead of

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread João Fernandes
Well this shouldn't be a problem since both instances are working for the same FQDN. CF request should be redirected to the CFInstance and mxml should be redirected to the Flex one. It seems that Flex one can't see the /flashservices/gateway (since its only defined for the CFinstance) and

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Mehdi, Agha
Title: RE: [flexcoders] Re: FlashServices/Gateway Yeah, Actually, we have Intranet and Internet both running CF as separate instances. Both of them share some of the same Flex apps. This configuration is standard on two of our servers running in a cluster. The code for all three instances

RE: [flexcoders] Free Flex???

2006-01-31 Thread João Fernandes
This is amazing ! Free Limited FES will really mark a new step of application deployment over the web for those with lower budgets. This is not a problem for me but I know many that Flex pricing was a huge problem and maybe this free version can be enough for them. Adobe, Thank You ! João

RE: [flexcoders] Free Flex???

2006-01-31 Thread Steven Webster
Hey guys, The news on "free Flex" is officially corroborated - there are a bunch of blog-postings from Adobe employees that will give you the back story: Christian Cantrell - http://weblogs.macromedia.com/cantrell/archives/2006/01/flex_beta_2_and.cfm Danny Dura -

RE: [flexcoders] Free Flex???

2006-01-31 Thread João Fernandes
To me, Flex 2 without Cairngorm 2 doesn't make much sense ;) João Fernandes Secção de Desenvolvimento Departamento de Informática -Original Message- From: flexcoders@yahoogroups.com on behalf of Steven Webster Sent: Wed 01-Feb-06 12:10 AM To: flexcoders@yahoogroups.com Subject: RE:

Re: [flexcoders] Free Flex???

2006-01-31 Thread Clint Modien
How many connections? How many connections?How many connections?:)On 1/31/06, Steven Webster [EMAIL PROTECTED] wrote: Hey guys, The news on free Flex is officially corroborated - there are a bunch of blog-postings from Adobe employees that will give you the back story:

RE: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread João Fernandes
Well I didn't know that since I always deployed CF + Flex under the same instance (and then created clusters of it). I tought under IIS, if you pointed your mappings to the correct /lib/wsconfig/x/Jrun.dll you could have 2 mappings; the flex one /lib/wsconfig/x/Jrun.dll and the cf on

Re: [flexcoders] Free Flex???

2006-01-31 Thread Chris Velevitch
On 2/1/06, João Fernandes [EMAIL PROTECTED] wrote: To me, Flex 2 without Cairngorm 2 doesn't make much sense ;) Why? Are you saying the current version of Cairngorm won't work with Flex 2? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au --

RE: [flexcoders] Free Flex???

2006-01-31 Thread João Fernandes
Never said that, But I'm quite sure that there are a lot of changes between 0.99 and 2.0. -Original Message- From: flexcoders@yahoogroups.com on behalf of Chris Velevitch Sent: Wed 01-Feb-06 1:51 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Free Flex??? On 2/1/06,

[flexcoders] Sweet Jesus it's out

2006-01-31 Thread Manuel Saint-Victor
Flex beta now available!!!It's out!!! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

RE: [flexcoders] Sweet Jesus it's out

2006-01-31 Thread João Fernandes
Yeaaa already at 35% of all of it... I can go sleep now ;) BTW, View Source looks very good. -Original Message- From: flexcoders@yahoogroups.com on behalf of Manuel Saint-Victor Sent: Wed 01-Feb-06 2:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Sweet Jesus it's out Flex

[flexcoders] Whats flex beta

2006-01-31 Thread nostra72
I heard from a post that it is out I mean I figured it was some kind of software can someone lead me to what it is and where I can get it please? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

Re: [flexcoders] Whats flex beta

2006-01-31 Thread Spike
http://labs.macromedia.com/flexproductline/Get it quick before the servers melt :)SpikeOn 1/31/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I heard from a post that it is out I mean I figured it was some kind of software can someone lead me to what it is and where I can get it please?

Re: [flexcoders] Whats flex beta

2006-01-31 Thread Manuel Saint-Victor
Spkie- I think I smell smoke- mine got stuck twice because my ADD lead me to go poking at my download in firefox and accidentally cancelling itStill downloading! On 1/31/06, Spike [EMAIL PROTECTED] wrote: http://labs.macromedia.com/flexproductline/Get it quick before the servers melt :)

Re: [flexcoders] Whats flex beta

2006-01-31 Thread nostra72
Is Flex beta free? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web. To

Re: [flexcoders] Whats flex beta

2006-01-31 Thread JesterXL
Yeah man, click the links and go grab a Red Bull. - Original Message - From: [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 31, 2006 10:13 PM Subject: Re: [flexcoders] Whats flex beta Is Flex beta free? -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Free Flex???

2006-01-31 Thread JesterXL
You can't bind to statics, so ModelLocator is f00ked, but I think that's already fixed. Because of the changes in AS3, they had to modify some stuff... all for the better. - Original Message - From: Chris Velevitch [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday,

Re: [flexcoders] Whats flex beta

2006-01-31 Thread Spike
As far as I'm aware it's free for anyone to download. Once you login or register for a Macromedia ID I think you should be able to get directly to the downloads without doing anything else. Spike On 1/31/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is Flex beta free? -- Flexcoders

Re: [flexcoders] Free Flex???

2006-01-31 Thread Chris Velevitch
On 2/1/06, João Fernandes [EMAIL PROTECTED] wrote: Never said that, But I'm quite sure that there are a lot of changes between 0.99 and 2.0. So, will 2.0 be available? Chris -- Chris Velevitch Manager - Sydney Flash Platform Developers Group www.flashdev.org.au -- Flexcoders Mailing List

Re: [flexcoders] Re: FlashServices/Gateway

2006-01-31 Thread Paul Kenney
On 1/31/06, Mehdi, Agha [EMAIL PROTECTED] wrote: Ok, so here's the progress note. I put the CFC under web root as Paul suggested and it started to work from flex. Flashservices/gateway still doesn't work but at least the service is running, which has confused me even more

Re: [flexcoders] Vertical Text on a button

2006-01-31 Thread JesterXL
Just so you know _rotation isn't suppoted, so we're in the ether realms here. If I were you, I'd extend button, and do a _rotation on the init for just the label so things like width and height are relevant. - Original Message - From: Graham, Jason [EMAIL PROTECTED] To:

RE: [flexcoders] Vertical Text on a button

2006-01-31 Thread James
I'm not sure here, but can't you just make a graphic and use that instead of text on the button? James -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Tuesday, January 31, 2006 10:50 PM To: flexcoders@yahoogroups.com Subject: Re:

RE: [flexcoders] Re: Using HTTPService to POST complex data

2006-01-31 Thread Mark Wales
Alaric, I agree that simple types are only supported - the docs you identify, Matt's comments, and my own trial-and-error support that conclusion. My challenge is that the default operation of the server-side application I am trying to communicate with uses the nested form. While in my

Re: [flexcoders] Vertical Text on a button

2006-01-31 Thread JesterXL
You could, but graphics aren't dynamic, embedded fonts allows dynamic changing of the buttons' text. - Original Message - From: James [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, January 31, 2006 11:45 PM Subject: RE: [flexcoders] Vertical Text on a button I'm not

[flexcoders] header color chnage for inactive popup

2006-01-31 Thread Nithya R
hi, am now using a custom titlewondow component... when i have two popups one over the other i want the active popup to have the default headercolor that is set in CSS and for the inactive popup i want the headercolor to change...i use currentPage.setStyle("headerColors","[0xFF,

Re: [flexcoders] header color chnage for inactive popup

2006-01-31 Thread JesterXL
Give it an array, not a string. So, this: currentPage.setStyle("headerColors","[0xFF, 0xFF]"); Should be: currentPage.setStyle("headerColors", [0xFF, 0xFF]); - Original Message - From: Nithya R To: flexcoders Sent: Wednesday, February 01, 2006 1:27 AM

  1   2   >