Re: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Ralf Bokelberg
Hi Jason, try to override the setter for the data property and set all the values of your renderer manually. I found that binding is slow in an itemRenderer. Cheers,Ralf. On 7/14/06, Pan Troglodytes < [EMAIL PROTECTED]> wrote: I have a datagrid with a half-dozen columns, all but one numeric. 

Re: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Pan Troglodytes
Nope.  When the columns are just plain jane, it's not laggy.  Well, not MUCH.  It's not as smooth as a non-Flex app, but it's definitely a lot better.  When I use the renderer, it can take 5-10 seconds sometimes when I jerk the scroll thumb from the top to bottom in one movement.  Just hangs the

Re: [flexcoders] Compile to CFM instead of HTML at Run

2006-07-13 Thread Douglas Knudsen
Appy, I'm going to gues its all in here: eclipse\plugins\com.adobe.flexbuilder.project_2.0.143459 resources\html-templates.zip contains the templates. Some java file in zornproject.jar probably uses it, have to weak the correct one. If you had the source that is. ;) oh well. Would be nice for

RE: [flexcoders] DataGridColumn "id" attrubute is gone??

2006-07-13 Thread Dimitrios Gianninas
Hi, I've done this, but in a different way. The DataGrid's column property takes an array DataGridColumn objects, so what u do is create two sets of arrays: ... ... Then, when u need to, switch the columns being attached to the grid, like so: if( ... ) { dg.columns = col

RE: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Dimitrios Gianninas
Does the lag happen when the renderer is not there? Cause if it is, then are u loading all 1000 records into the client? Maybe you can use FDS and the paging feature. Dimitrios Optimal Payments. -Original Message- From: flexcoders@yahoogroups.com on behalf of Pan Troglodytes Sent: Thu

[flexcoders] Remote Developement Help

2006-07-13 Thread nigasak
Hi, I tested succesfully ColdFusion MX 7.0.2 And Flex Builder 2 with Remoting on my local box. But now I would like to know How can I configure Flex Builder 2 on my local box to talk to Remote Objects on my ColdFusion Development server. I mean, my ColdFusion Server is not in my local Box. Please H

[flexcoders] Compile to CFM instead of HTML at Run

2006-07-13 Thread app.developer
Is there a way to compile to a CFM page instead of an HTML page? My first attempt is to copy/paste the HTML code Flex Builder generates and place it into a CFM page of the same name. Then I go to Run/Run... window, select the Flex Application configuration, in the "URL or path to launch" sect

[flexcoders] Re: How to parse web services response doc containing namespace

2006-07-13 Thread ben.clinkinbeard
Tracy, can you post a more complete example? I would be very interested in something that does what you explained but am not totally sure I understand your description. Thanks, Ben --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > I just discovered something that mi

[flexcoders] Re: Chart watermark won't go away in SDK

2006-07-13 Thread vanhoese
I finally figured it out on my own. For inquisitive minds: In order to get the charting license serial number into your app you just have to add "-licenses.license charting " to the mxml build command/jar file (where the X's is your key with no dashes). The instructions for th

Re: [flexcoders] SWF Loader

2006-07-13 Thread JesterXL
Sorry, I posted the wrong link earlier: http://weblogs.macromedia.com/pent/archives/2006/07/using_actionscr.cfm   - Original Message - From: Jean-Luc ESSER To: flexcoders@yahoogroups.com Sent: Wednesday, July 12, 2006 9:25 AM Subject: Re: [flexcoders] SWF Loader Jester,   Does th

Re: [flexcoders] How to organize projects in Flex Builder?

2006-07-13 Thread sam / pixelconsumption
Yeah and if you go this route you can use "Working Sets" to just view those two projects at one time. It helps get rid of clutter in your work space. - Sam Clint Modien wrote: > I would split it up into two projects for the sake of compiling it / > versioning it. That way you can build them i

Re: [flexcoders] Re: WebORB for .net beta5: feedback

2006-07-13 Thread Jeremy Lu
Just a reminder, I checked Aral's ARP framework last week (yes, flex 2 compatible version), there's a pretty well-written RemotingService class which wraps NetConnection (supporting AMF0) and provide exactly the same function of Service/RelayResponder from Flash 8. So one can still use Flash R

[flexcoders] Wanted: Full-Time Flex/Java Developer

2006-07-13 Thread thunderstumpgesatwork
Hello all. I'm posting this because we have a job opening for a Flex/Java developer. The position is full time, and relocation is not necessary. (work from home; some travel required) Starting ASAP Work for a fast paced, up and coming Business Intelligence and Collaboration company. Position deta

RE: [flexcoders] Flex 1.5 : initializing a ComboBox Heeelp!!

2006-07-13 Thread Tracy Spratt
If this post duplicates, I apologize. …   Are you running the initialize combobox code in a result event handler? Tracy     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghislain Simard Sent: Thursday, July 13, 2006 11:38 AM To: flexcoders@yahoog

RE: [flexcoders] Flex 1.5 : initializing a ComboBox Heeelp!!

2006-07-13 Thread Tracy Spratt
Are you running the initialize combobox code in a result event handler? Tracy   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ghislain Simard Sent: Thursday, July 13, 2006 11:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 1.5 : initi

RE: [flexcoders] How to parse web services response doc containing namespace

2006-07-13 Thread Tracy Spratt
I just discovered something that might help. (This is with beta 3 though)   If you do not set resultFormat as e4x, but instead do: var xmlResult:XML = newXML(result.toString())   for me, that created an xml object without the namespace stuff.   Let me know if it works.   Tracy

RE: [flexcoders] Remote JNDI server

2006-07-13 Thread Cathy Reilly
I've detailed troubleshooting information for this situation on the Adobe forums.  In particular, you'll want to create a jndiTest.jsp which works for your situation.  Once you have that running, you'll know which properties to use in the as well as the message destinations.   http://www.

Re: [flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread JesterXL
Perhaps you could cache the draw's?  Additionally, maybe defer their drawing by like a second?   You could override the data setter on your item rendere, and use a setTimeout of 1 second.  Additionally, you could only set the label IF the data has in fact changed.  This would require either

[flexcoders] Re: efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Tim Hoff
Hi Pan, If you just want to format a field a labelFuncion is a more light-weight solution.  Here is a sample that illustrates the different DataGrid renderers.  You will also see how to change the text color conditionally. http://www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectID

[flexcoders] efficient way of doing custom formatting on datagrid column values

2006-07-13 Thread Pan Troglodytes
I have a datagrid with a half-dozen columns, all but one numeric.  I've used itemrenderers to make a label with a built in formatter to get them nice looking:                     Looks cool, but makes for horribly laggy performance when scrolling around the grid with about 1000 rec

[flexcoders] Tree AllowMultipleSelection Bug

2006-07-13 Thread sufibaba
Sorry Adobe Engineers, I hate to be a bore with bugs... the Multiple Selection doesn't seem to be working in this final version. Below is the what's in the flex docs. -- Tim http://www.adobe.com/2006/mxml";>

[flexcoders] Re: Spring Enable Flex

2006-07-13 Thread billy_d_white
Use the FlexFactory. It allows you to integrate Flex Data Services with whatever framework you want. See this thread: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=583&threadid=1169760&enterthread=y#4190415 --- In flexcoders@yahoogroups.com, suzy lawson <[EMAIL PROTECTED]>

[flexcoders] Re: Is it Possible to call a function that's inside of a Tree ItemRenderer?

2006-07-13 Thread sufibaba
Works like a charm ! Kudos Michael. Tim --- In flexcoders@yahoogroups.com, "Michael Montagna" <[EMAIL PROTECTED]> wrote: > > --- In flexcoders@yahoogroups.com, "sufibaba" wrote: > > > > Hi All, > > > > I have a function inside of a custom Tree ItemRenderer. > > > > I would like to be able t

[flexcoders] Re: DataGridColumn "id" attrubute is gone??

2006-07-13 Thread Doug Lowder
Hi Suzy, This post might help. http://groups.yahoo.com/group/flexcoders/message/39557 --- In flexcoders@yahoogroups.com, "Suzy Lawson" <[EMAIL PROTECTED]> wrote: > > I have a view state that hides/shows datagrid columns. I need the "id" > attribute in order to identify to the State which colum

[flexcoders] Re: WebORB for .net beta5: feedback

2006-07-13 Thread Mark Piller
Hi Jonas, I will give you an opinion from my personal experience and perspective. I am sure there will be different point of views on this subject. Essentially it comes down to what's important for you and your application. There are several variables in the formula: 1. application performance 2.

[flexcoders] Re: Tree Drag Drop Blues ... Bug Report

2006-07-13 Thread sufibaba
Thanks Michael, The droped-on tree has items in it. The problem is that the dragged proxy doesn't turn to a Green plus sign and therefore doesn't allow the drop operation to work. All other nodes work fine. > Hi Tim, > > By default the Tree only supports MOVE DND operations between Tree >

[flexcoders] Re: iframe portal external web page

2006-07-13 Thread Tim Hoff
Hi Engkee, Here are a coupe of links that show the use of Iframe with Flex.  I'm not sure if the examples have been updated to the final release, but you should be able to see how the code works. http://coenraets.com/viewarticle.jsp?articleId=95  http://www.merhl.com/flex2_samples/iframe/IFrame.

[flexcoders] Re: Spring Enable Flex

2006-07-13 Thread suzy lawson
There isn't much to do to get Flex to talk with Spring! All you need to do is put a delegate class in the middle which is nothing more than a simple POJOFlex calls Pojo, Pojo invokes Spring Beans... How low will we go? Check out Yahoo! Messenger’s low PC-to-Phone call rates. __._,_.___

RE: [flexcoders] Spring Enable Flex

2006-07-13 Thread Jeff Tapper
We are using spring to manage the classes flex interacts with on one of our projects. At 04:13 PM 7/13/2006, Allen Riddle wrote: >I’m not having any issues, it’s just nice because it’s one less >configuration format to learn. > > > >-- >From: flexcoders@yahoogroups.com [mailto:[EMAIL PR

[flexcoders] DataGridColumn "id" attrubute is gone??

2006-07-13 Thread Suzy Lawson
I have a view state that hides/shows datagrid columns. I need the "id" attribute in order to identify to the State which column to set the 'visible' value to. In mxml, there is a attribute, HOWEVER, there is not one when you do this: var dataGridColumn : DataGridColumn = new DataGridColumn();

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Pan Troglodytes
Very nice!  Works fine for me in release.On 7/13/06, Darron J. Schall <[EMAIL PROTECTED]> wrote: I've done this in the past through code like the following: textArea.addEventListener( FlexEvent.VALUE_COMMIT, autoScrollToBottom ); private function autoScro

[flexcoders] Repeater recyclechildren not functioning on custom components

2006-07-13 Thread maikelsibbald
I created a Component which extends Image. Now I use a repeater to "draw" several images. In the component I added an eventListener for the "creationComplete" event. Now every time the dataProvider is updated the event is triggered even when I use rycyclechildren is true. Any suggestions?

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Daniel Nelson
Maybe this old post will help   See: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19784.html   Hope it helps.  -Dan  __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexc

RE: [flexcoders] Loading WSDL using Flex 2.0 Data Services

2006-07-13 Thread Carson Hager
If you can post your WebService MXML or ActionScript in use to invoke the web service as well as the URL that you are using in the browser to run your Flex application, we can point you in the right direction.  You may or may not need a crossdomain.xml file.     Carson ___

[flexcoders] Re: Pass value into HeaderRenderer

2006-07-13 Thread Torey Maerz
Well I think that I got this working...sort of...thought that I would pass my solution on for others that might use it. Basically I retrieve a public variable dictionary from the parentApplication which contains the properties that I need. The public dictionary uses the datafield for the colum

RE: [flexcoders] Spring Enable Flex

2006-07-13 Thread Allen Riddle
I’m not having any issues, it’s just nice because it’s one less configuration format to learn.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas Sent: Thursday, July 13, 2006 2:06 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Darron J. Schall
I've done this in the past through code like the following: textArea.addEventListener( FlexEvent.VALUE_COMMIT, autoScrollToBottom ); private function autoScrollToBottom( event:FlexEvent ):void     {         // Auto-scroll to the bottom anytime the text changes         event.target.validateN

RE: [flexcoders] Is anyone having trouble contacting Adobe and/or purchasing Flex?

2006-07-13 Thread Matt Chotin
Feel free to mail me if this isn’t getting resolved and I can get someone to look into it.   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Monday, July 10, 2006 6:34 AM To: flexcoders@yahoogroups.com Subject: Re: [flexco

RE: [Junk E-Mail - LOW] Re: [flexcoders] File Upload problem?

2006-07-13 Thread Shannon Hicks
That's exactly what I needed. I shoehorned their code into something my app could use :)   Thanks!   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Thursday, July 13, 2006 3:15 PMTo: flexcoders@yahoogroups.comSubject: RE: [Junk E-Mail

RE: [Junk E-Mail - LOW] Re: [flexcoders] File Upload problem?

2006-07-13 Thread Shannon Hicks
My last question lead me to RTFM again looks like FileReferenceList doesn't have any events other than "select" and "cancel"   So, my next question is how do I know when the upload is complete?   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PRO

[flexcoders] Remote JNDI server

2006-07-13 Thread Allen Riddle
Has anybody been able to set up the Messaging Services to send messages to a remote machine using the configurations? I’m unable to connect to my remote server.   Allen Riddle Sofware Development x3217   __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/gro

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Pan Troglodytes
I would have used callLater(), having only been hampered by not having ever heard of it.Thanks!On 7/13/06, JesterXL < [EMAIL PROTECTED]> wrote: Use a callLater.  I've used a doLater in the past and she worked pretty well.  So like:   function log ( s ) {    

Re: [flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread JesterXL
Use a callLater.  I've used a doLater in the past and she worked pretty well.  So like:   function log ( s ) {     debug.text += s + "\n";     callLater ( scrollIt ); }   function scrollIt() {     debug.verticalScrollPosition = debug.maxVerticalScrollPosition; }   If that doesn't work, mak

RE: [Junk E-Mail - LOW] Re: [flexcoders] File Upload problem?

2006-07-13 Thread Oscar . Cortes
It seems that you need to add listeners for each file individually. Take a look at the example in here http://livedocs.macromedia.com/flex/2/langref/flash/net/FileReferenceList.html |-+-> | | | | | "Shannon

RE: [Junk E-Mail - LOW] [flexcoders] Shopping Cart Trouble

2006-07-13 Thread Shannon Hicks
I got the code working The event chain was broken. Here's the fixed code:   http://flex.work.iotashan.com/salShoppingCart/flexcodersHelp.html (as always, right-click to view the source and download as a zip)   The one change you might not easily notice was in the thumbnail component...

RE: [Junk E-Mail - LOW] [flexcoders] Shopping Cart Trouble

2006-07-13 Thread Shannon Hicks
I sent the reply to the group, but it's taking too long to go through...   http://flex.work.iotashan.com/salShoppingCart/flexcodersHelp.html   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of s_hernandez01Sent: Thursday, July 13, 2006 10:40 AMTo: flexcoders@ya

[flexcoders] SelectedItem of DataGrid going to null when sorted

2006-07-13 Thread Chris Waguespack
Please see the code below for a working example. When you double click on dgOne, it does what it is supposed to, but if you first click to sort dgTwo and then double click dgOne it messes up and sets the selected item to null. Any idea what's happening? http://www.adobe.com/2006/mxml"; layo

RE: [Junk E-Mail - LOW] Re: [flexcoders] File Upload problem?

2006-07-13 Thread Shannon Hicks
Tried it, still nothing.   Is there a bug (or undocumented feature) with the event dispatching when you're uploading multiple files?   Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Thursday, July 13, 2006 2:02 PMTo: flexcoders@yahoogr

[flexcoders] how to disconnect a Flex client from FDS?

2006-07-13 Thread Tom Bray
With Flash Media Server, our clients connect, we see if they're authorized, and if they're not we disconnect their client object.  How can I do something similar in FDS?With FMS, we'd make a netConnection, the server would call a method on the client to tell it that it's authorized, then we'd co

RE: [flexcoders] Spring Enable Flex

2006-07-13 Thread Dimitrios Gianninas
Probably not can u describe the problem/issue you are having?   Dimitrios Gianninas RIA Developer Optimal Payments Inc.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen RiddleSent: Thursday, July 13, 2006 10:41 AMTo: flexcoders@yahoogroups.comSubject:

[flexcoders] Loading WSDL using Flex 2.0 Data Services

2006-07-13 Thread efeminella
I am running a Flex 2.0 Application on JRUN and I continue to recieve the following error when attempting to load a wsdl: Error loading WSDL: [RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Unable to load WSDL. If currently online, please verify the URI and/o

RE: [flexcoders] crossdomain.xml on Weblogic

2006-07-13 Thread Dimitrios Gianninas
It needs to go at the root folder of your web applications. So if your app is in c:/samples ... then put the crossdomain.xml there and then point WL to that folder to deploy your app.   Dimitrios Gianninas RIA Developer Optimal Payments Inc.   From: flexcoders@yahoogroups.com [mailto:[E

[flexcoders] How to parse web services response doc containing namespace

2006-07-13 Thread kevntrace
I am a complete newbie to Flex, ActionScript et al, so please forgive me if my questions appear simplistic. I've implemented, and got working, the sample app which invokes a web service and displays the Top 5 popular posts from a blog service. I now want to modify this app so it calls my own ho

Re: [flexcoders] File Upload problem?

2006-07-13 Thread Oscar . Cortes
I have something similar working. Try something like this . private function fileBrowse():void { var imagesFilter:FileFilter = new FileFilter("Images", "*.jpg;*.jpeg"); configureListeners(imageFileRef); imageName.text = ""; imageFileRef.browse([imagesFilter]); } privat

RE: [flexcoders] Re: WebORB for .net beta5: feedback

2006-07-13 Thread Jonas Windey
Hi Mark,   Thanks for your explanations. We (our team) are still not 100% sure what method is the best to follow. I’ve been following Flex2 since the alpha version, and due to our experience with .NET (just regular websites with some Ajax), we have chosen to go with a Web Services app

[flexcoders] iframe portal external web page

2006-07-13 Thread Engkee Kwang
is there a way to create the equivalent of an iframe in a flex application that I can use to display external web pages? eg. creating a portal/window in my application to display www.yahoo.com I assume I can reverse the containment structure and use HTML to provide the overall containment...

[flexcoders] Re: setting selectedIndices does not affect selectedItems on datagrid?

2006-07-13 Thread Brendan Meutzner
Bumping this... I'm surprised nobody else has come across this issue... In order to get the selectedItems after setting selectedIndices, I have to perform the following? var mySelectedIndices:Array = ["0", "5"];var tmpArray:Array = new Array(); for(var i:Number = 0; i < mySelectedIndices.length;

[flexcoders] File Upload problem?

2006-07-13 Thread Shannon Hicks
Ok... I've been playing with the file upload stuff all morning, and am 80% of the way there. Here's a quick sample of what my Browse button fires:      private function fileBrowse():void {var imagesFilter:FileFilter = new FileFilter("Images", "*.jpg;*.jpeg");imageFileRef.addEventL

RE: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Peter Farland
Load your SWF from HTTPS. Ensure your channel-definition is correct (i.e. using SecureAMFEndpoint and SecureAMFChannel classes in the config and ensure https is in the endpoint url). Ensure the id of this channel is in the list of channels for your destination. Ensure you're compiling against the n

[flexcoders] Shopping Cart Trouble

2006-07-13 Thread s_hernandez01
Hi Flexers!!! I was wondering if anyone can help me with my code. I'm trying to create a shopping cart, but I'm having trouble on the addToCart() and addItem() functions on my actionscript. I'm new to flex and not the best actionscriptist so any advice would be greatly appreciated! I want to ad

[flexcoders] Re: Is it Possible to call a function that's inside of a Tree ItemRenderer?

2006-07-13 Thread Michael Montagna
--- In flexcoders@yahoogroups.com, "sufibaba" <[EMAIL PROTECTED]> wrote: > > Hi All, > > I have a function inside of a custom Tree ItemRenderer. > > I would like to be able to fire this function programatically at the > Tree's level. > > Any light on this is greatly appreciated. > > Cheers, >

[flexcoders] ARP PizzaService on .NET

2006-07-13 Thread mpiller
Hi guys, I just wanted to let you know we ported the ARP PizzaService example for Flex2 to run on .NET with WebORB. Since WebORB supports AMF3, we modified the MXML/AS code to use a mx:RemoteObject element instead of AMF0 connection. The ported example with all the code is available in the latest

[flexcoders] crossdomain.xml on Weblogic

2006-07-13 Thread Steve Pruitt
All, Does anyone know specifically where to place the crossdomain.xml file for Weblogic. Drilling down through the Weblogic directories, I found a folder containing the installed application folders. The path for the folder is: C:\bea\weblogic91\samples\domains\wl_server\servers\examplesServer\

Re: [flexcoders] Re: SWF Loader

2006-07-13 Thread Derek Vadneau
Yes, your Flex App needs to be compiled. Not sure how you are running your SWF without an SWF ... Make sure your Flash SWF is in your Flex project folder. I've also found that you occasionally need to run twice in order for the Flash SWF to be copied to the test location (typically the bin fold

[flexcoders] Our company is looking for a Flex 2.0 Developer

2006-07-13 Thread Dmitry Miller
I normally don't do this but, our company is looking for Flex Developer in SF Bay Area. We need a person proficient in Flex 2.0. Ideally, we would like to have someone full-time, but we would definately consider part-time candidates as well. If you are interested you can either reply to this post

[flexcoders] Extending ComboBox loses part of the skin?

2006-07-13 Thread tddclare
I'm still using Beta 3 (stupid slow procurement department)... I'm working on extending framework components, and am playing with the combobox. When I run my version, it functions as expected, but the arrow on the combo box (what you click to deop it down) does not display. I put a generic combo

Re: [flexcoders] Re: SWF Loader

2006-07-13 Thread Derek Vadneau
Crap, forgot the link to the ExternalInterface example: http://tracethis.com/archives/2006/07/13/swf9-to-swf8-communication-ei-not-lc-part-1/ On 7/13/06, Derek Vadneau <[EMAIL PROTECTED]> wrote: Yes, your Flex App needs to be compiled. Not sure how you are running your SWF without an SWF ... Ma

[flexcoders] Re: Tree Drag Drop Blues ... Bug Report

2006-07-13 Thread Michael Montagna
--- In flexcoders@yahoogroups.com, "sufibaba" <[EMAIL PROTECTED]> wrote: > > Hi Adobe Engineers, > > I am working quite a lot with the tree control. The problem I am > having is that when a node is draged from a tree to another tree, the > dropped on tree doesn't allow dropping on its first node

Re: [flexcoders] Re: Is it Possible to call a function that's inside of a Tree ItemRenderer?

2006-07-13 Thread Tom Chiverton
On Thursday 13 July 2006 17:18, sufibaba wrote: > This is indeed what we need. Does anyone know how to do this? What do the reference docs say ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a l

[flexcoders] best general purpose way to keep textarea scrolled to bottom

2006-07-13 Thread Pan Troglodytes
I wish TextArea had a property that would set it to scroll to the bottom on adding text.  In the absence of such, I'm struggling to make it do that.  I have a log function that looks like this:   private function log(s:Object):void {    debug.text += "\n" + s.toString();    debug.verticalScroll

[flexcoders] Tree Drag Drop Blues ... Bug Report

2006-07-13 Thread sufibaba
Hi Adobe Engineers, I am working quite a lot with the tree control. The problem I am having is that when a node is draged from a tree to another tree, the dropped on tree doesn't allow dropping on its first node (all other nodes after the first node works fine). Another bug is that dragging from

Re: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Tom Chiverton
On Thursday 13 July 2006 15:38, Cathy Reilly wrote: > class="flex.messaging.endpoints.AMFEndpoint" -> > class="flex.messaging.endpoints.SecureAMFEndpoint" Ah ha, good catch, I'd only changed the definition class. Nothing changes after I recompile though. Oddly, if I load the SWF not over https, i

[flexcoders] Re: Is it Possible to call a function that's inside of a Tree ItemRenderer?

2006-07-13 Thread sufibaba
This is indeed what we need. Does anyone know how to do this? Tim --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Wednesday 12 July 2006 18:36, sufibaba wrote: > > I would like to be able to fire this function programatically at the > > Tree's level. > > Is t

Re: [flexcoders] Sending ISO-8859-1 from a Flex application

2006-07-13 Thread oktay nba
is there a way to change it? or why the Adobe team do it only for utf-8? are there any issue?On 4/14/06, Matt Chotin < [EMAIL PROTECTED]> wrote:Flex is going to try to send using utf-8, you may need to do some string parsing back from utf-8 on the server-side before inserting into the database.

RE: [flexcoders] Data Services Question

2006-07-13 Thread Allen Riddle
Yes, thank you. I figured that’s what we’d have to do.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Wednesday, July 12, 2006 6:21 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Data Services Question  

RE: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Cathy Reilly
One thing I noticed, class="flex.messaging.endpoints.AMFEndpoint" -> class="flex.messaging.endpoints.SecureAMFEndpoint" - Cathy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Thursday, July 13, 2006 10:11 AM To: flexcoders@

RE: [flexcoders] Security error accessing url

2006-07-13 Thread Carson Hager
These files act on the server level.  There is no more granularity than that.  Take a look at my last message. You should be in good shape.     Carson  Carson HagerCynergy Systems, Inc.http://www.cynergysystems.com Email:  [EMAIL PROTECTED]Offic

Re: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Tom Chiverton
On Thursday 13 July 2006 15:48, Peter Farland wrote: > setCredentials is only for custom authentication (i.e. the destination > is constrained and credentials are checked against the login-command > registered for the FDS Message Broker). > > setRemoteCredentials is only for communication with 3rd

RE: [flexcoders] Security error accessing url

2006-07-13 Thread Carson Hager
Sathish,   You place this file at the root directory of the web server that hosts your web services.  If you can't place it at the root, you can use flash.system.Security.loadPolicyFile() to load it from another location.     Carson  Carson Hage

[flexcoders] Spring Enable Flex

2006-07-13 Thread Allen Riddle
Does anybody (Adobe developers???) know if Adobe has any plans to Spring enable Flex? I think it would really help out with configuration.   Allen Riddle Sofware Development x3217   __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/fle

[flexcoders] Flex 1.5 : initializing a ComboBox Heeelp!!

2006-07-13 Thread Ghislain Simard
Hi, This is a very strange behavior and I don't know if someone can help me to resolve this. On the first load of the application, I select an item in a mx:Tree which is triggering a function which is populating a combobox from a RemoteObject call. The result of the call give me back the selec

Re: [flexcoders] Unknown FDS error

2006-07-13 Thread hank williams
Hey Peter,Just checking, did you see my last message on this?It appears that if you try to send to big an object or the wrong type of object you will get this. I was capturing a user input and sending it in my remoting call. so I was doing this:remoteobject.foo(someTextInput)when I should have b

[flexcoders] Re: SWF Loader

2006-07-13 Thread flexnewbie06
Okay, please don't laugh at this question! Does my Flex App need to be compiled before the LocalConnection will work I will post my Flash Action Code and my Flex 2 Code...I get no errors and the button label does change...the SWF just doesn't stop...it does nothing...Can anyone see what I'

Re: [flexcoders] shadow lighting

2006-07-13 Thread hank williams
Thanks guys. Those are great examples. With filters you can *really* make apps look "unflexlike" -lol.The great power of flex is how easy it is to do this stuff. The one downfall for people that are not careful is that all of their apps will look like aero. Although I guess thats ok, Mac users d

RE: [flexcoders] Unknown FDS error

2006-07-13 Thread Peter Farland
Hey Hank,       Can you send me a test case, or can you try turning on sufficient debugging to watch what is going on at the endpoint?       In services-config.xml, in the logging section turn on “Debug” level logging, and then ensure the Endpoint.* pattern is enabled. Restart the s

RE: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Peter Farland
Flex is restricted by the functionality of the Flash Player. The underlying API flash.net.URLLoader will not let Flex set any of the headers required to mimic what you're asking for, i.e. pre-authentication. If you're using Basic Authentication from the J2EE web application container, then the popu

[flexcoders] turkish character encoding with webservices

2006-07-13 Thread oktay nba
hi everyone;i am working on a program on Flex 2. some webservices, made with nusoap, mysql, and php, are run at the background. but i have somehow encoding problems. some character in turkish like "ş", "ı", "ğ" and their uppercases cant displayed. in the charles web debugging proxy, the request,

Re: [flexcoders] Is it Possible to call a function that's inside of a Tree ItemRenderer?

2006-07-13 Thread Tom Chiverton
On Wednesday 12 July 2006 18:36, sufibaba wrote: > I would like to be able to fire this function programatically at the > Tree's level. Is there a getRenderer method/property on tree cells ? -- Tom Chiverton This email is sent for and on beh

Re: [flexcoders] shadow lighting

2006-07-13 Thread Peter Baird
Title: Re: [flexcoders] shadow lighting Also, it appears you’re trying to apply these styles to a canvas.  Note that to do so, you’ll also need to set the borderStyle of the canvas to solid (you can set the thickness to zero, if you don’t actually want to see a border).  If that’s not enough f

Re: [flexcoders] Duplicating/Copying a UI components

2006-07-13 Thread Tom Chiverton
On Thursday 13 July 2006 04:08, lownlazy000 wrote: > I simply was to make a copy of a Sprite variable but I cant seem to > find a way to do it? Can any one tell me how? You mean var myCopy:Sprite=theOtherSprite; doesn't work ? -- Tom Chiverton **

Re: [flexcoders] Trapping back button and refresh

2006-07-13 Thread Tom Chiverton
On Wednesday 12 July 2006 16:49, quasimotoca wrote: > Is there a way in AS3 to catch the backbutton and refresh buttons when Only via javascript. You could use an onUnload() event in the HTML wrapper to call into the ActionScript. -- Tom Chiverton **

Re: [flexcoders] Pass a parameter in the event function of an addEventListener?

2006-07-13 Thread Tom Chiverton
On Wednesday 12 July 2006 22:13, meathead wrote: > So I'm setting up buttons on the fly via actionscript and I want to > pass an ID number based on which button was selected. I was going > to use an addEventListener for the click event of the newly created > button, but then I saw this on the live

RE: [flexcoders] java enum does not serialize

2006-07-13 Thread Peter Farland
This feature was deferred until a later release of Flex.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of busitech Sent: Wednesday, July 12, 2006 6:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] java enum does not serialize  

RE: [flexcoders] Setting fill value of a pie chart programmatically

2006-07-13 Thread Dimitrios Gianninas
yes noticed that too, thx Ely.   Dimitrios Gianninas RIA Developer Optimal Payments Inc.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely GreenfieldSent: Thursday, July 13, 2006 10:19 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Setting fill va

Re: [flexcoders] [Ann] Flex 2 Training in Sydney - Registration of Interest

2006-07-13 Thread Paul Arch
Chris Velevitch wrote: > I'm happy to announce the Sydney Flash Platform Developers Group is > planning to run a once off 3 day training course on Flex 2. The > initial details is the course will be held towards the end of August, > you must bring your own laptop with Flex 2 trial version pre-insta

Re: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Tom Chiverton
On Wednesday 12 July 2006 15:00, Tom Chiverton wrote: > All right, fixed that, my bad :-) I take it all back :-( If I have the end point URL (http://somehost/flex2gateway) protected at the web server level, how can I make Flex send along a particular username/password in the HTTP 'Authorization'

RE: [flexcoders] Setting fill value of a pie chart programmatically

2006-07-13 Thread Ely Greenfield
    you need to set it on the pie series, not the pie chart.   Ely.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dimitrios GianninasSent: Wednesday, July 12, 2006 2:23 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Setting fill value of a pie chart pr

Re: [flexcoders] How to organize projects in Flex Builder?

2006-07-13 Thread Beck Novaes
Thanks for the link, Douglas! I suppose that for the sake of integration, maybe it's a good idea to have only one project. That way, I make some changes in Java code and run my Flex app to see the results. But, only one project doesn't sounds good for me, *mainly* if it is not a Flex project (a We

[flexcoders] Re: Pass value Using getURL() in MXML 2

2006-07-13 Thread Geoffrey Williams
getURL is gone in AS3. navigateToURL (new URLRequest ("QueryStringSample.mxml")); --- In flexcoders@yahoogroups.com, "k_abdul_jabbar" <[EMAIL PROTECTED]> wrote: > > I have pasted a piece of code to pass value using query string,I am > sure there wouldn't be any problem with code.But I get error

Re: [flexcoders] Re: Array/ArrayCollection problem when migrating from Beta 3 to Flex 2 Final

2006-07-13 Thread sreedhar reddy
Hi Tim,   Thank you so much for your reply. Tim Hoff <[EMAIL PROTECTED]> wrote: Hi Sreedhar,One of the changes from B3 to final was the use of the makeObjectsBindable property in the HTTPService tag. If you set this property to false, you should get the same result as in B3.-TH--

  1   2   >