RE: [flexcoders] is there a sample to update/delete records in a database server through webservice?

2006-12-05 Thread Tracy Spratt
And, if you are using the term web service in the generic way, consider HTTPService instead of SOAP-based WebService. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greg h Sent: Tuesday, December 05, 2006 6:32 PM To:

Re: [flexcoders] AS 3 performance articles?

2006-12-05 Thread greg h
Josh, After you organize your notes on this topic, could you please share them with us here on this list? :-) Regarding the article by Gary Grossman, PDF of Slides: http://www.adobe.com/communities/developerweek/2006_devweek_as3.pdf Devnet Article:

Re: [flexcoders] Re: ListBase.as getting called after Drop to Datagrid--Preventing the Drop???

2006-12-05 Thread Lachlan Cotter
If you're defining your own drag-drop event handlers, I don't think you're supposed to use dropEnabled='true'; dropEnabled='true' means that the default handlers are used. From 'Flex 2 Dev Guide': dropEnabled A Boolean value that specifies whether the control can be a drop target that uses

Re: [flexcoders] is there a sample to update/delete records in a database server through webservice?

2006-12-05 Thread Steven Xu
Hi Greg, Thanks for the quick reply. I think webservice should be cross-platform. My back end at this time is .NET SQL 2005 server. Any sample for update database in MS SQL 2005 server? Thank you again, Steve - Original Message From: greg h [EMAIL PROTECTED] To:

[flexcoders] Bug??? Re: Loading multiple swfs crashing browser

2006-12-05 Thread dallasweb
Mike, thanks for the interest. I'm using flash player 9,0,16,0 on my primary laptop. Which is the debug ver. I've also been able to get this crash on other machines, Windows and MAC, IE, Firefox, Safari with the consumer ver of player 9.0.16.0 as well. I'm curious to see what changed in 9.0.28.0

Re: [flexcoders] Could not resolve mx:Effect to a component implementation.

2006-12-05 Thread Lachlan Cotter
Hi Onur, Um, just a guess but the problem might be that you are trying to instantiate the abstract effect base class when what you actually want to do is use one of the concrete subclasses; e.g. Fade, Resize, Blur etc. See mx.effect in the docs for more explanation of this. Cheers, Lach

Re: [flexcoders] Re: Cairngorm's Anaemic Domain Model

2006-12-05 Thread Bjorn Schultheiss
Hey Ralf, For the rich-model implementation would this benefit from FDS, or some other data-sync framework? Regards, Bjorn On 06/12/2006, at 10:31 AM, Ralf Bokelberg wrote: Though Cairngorm doesn't prevent you from creating rich models, i think it fits better for this kind of crud

[flexcoders] Sending multiple items to a CFC

2006-12-05 Thread michrx7
Is there a better way to send a ton of values to a cfc rather then entering them all in one huge line? myService.SendCredit (selectedPackageIDs,selectedForumIDs,selectedAdditionIDs,selectedPublica tionIDs,selectedPackageUsers,selectedForumUsers,selectedAdditionUsers,et

RE: [flexcoders] Re: ListBase.as getting called after Drop to Datagrid--Preventing the Drop???

2006-12-05 Thread Deepa Subramaniam
That's actually not true. dropEnabled just indicates that a control allows items to be dropped into it, given that the data format of the items being dropped matches what the control expects. The default DragEvent handlers are used to handle the drag drop operations, though you are always allowed

[flexcoders] Re: TitleWindow Component...help!

2006-12-05 Thread qnotemedia
I hear ya Tracy. Been browsing it from my MAX docs, and maybe we'll do it in the next project. ;) Still harping on this particular thing, I've run into a weird unrelated snag. When the object in the main app is a combobox instead of a datagrid, the combobox's display doesn't update (even

Re: [flexcoders] Re: ListBase.as getting called after Drop to Datagrid--Preventing the Drop???

2006-12-05 Thread Lachlan Cotter
As a point of interest, it seems that you can define drop event handlers even without dropEnabled='true'. Then you don't have to do the preventDefault thing. On 06/12/2006, at 11:50 AM, Deepa Subramaniam wrote: That’s actually not true. dropEnabled just indicates that a control allows

Re: [flexcoders] Re: Cairngorm's Anaemic Domain Model

2006-12-05 Thread Ralf Bokelberg
Yes Bjorn As i understand the OP, the problem is, that in a normal Cairngorm application the rich model sits on the server. What we see on the client is only the part of the model, which is needed to drive the ui. Now if you want to move the rich server model to the client, you have to manage

[flexcoders] Access TextField within ComboBox

2006-12-05 Thread bjorn.schultheiss
Hey, I need to remove the selection on the TextField within a ComboxBox. This is happening when i'm switching combobox.editable == true to = false. How can i access the textfield? Bjorn

[flexcoders] Re: TitleWindow Component...help!

2006-12-05 Thread qnotemedia
Concerning this last post - I even changed the combobox to a datagrid, nothing else changed, and it works perfectly fine. What gives? What's so different about the two? - Chris --- In flexcoders@yahoogroups.com, qnotemedia [EMAIL PROTECTED] wrote: I hear ya Tracy. Been browsing it from

RE: [flexcoders] is there a sample to update/delete records in a database server through webservice?

2006-12-05 Thread Tracy Spratt
HTTPService is cross platform as well and is easier to work with than SOAP-based WebService. And theoretically faster, since SOAP adds to the payload. I am using Flex to update SQL Server 2003 via HTTPService and ASP.NET 1.1 and ADO.NET very successfully. If you do not plan to publish your

[flexcoders] Re: Sending multiple items to a CFC

2006-12-05 Thread michrx7
Right now I am adding them to an array and sending over the array. Is there a better way to do this? var mysendArray:Array = [{selectedPackageIDs:someValue,selectedForumIDs:someValue2,etc...}] myService.SendCredit(); then in the CFC CFARGUMENT name=receivedArray type=array CFIF

RE: [flexcoders] Re: TitleWindow Component...help!

2006-12-05 Thread Tracy Spratt
Odd. If you can post a simple runnable example that shows the problem, maybe we can figure it out. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of qnotemedia Sent: Tuesday, December 05, 2006 8:21 PM To:

Re: [flexcoders] Re: Cairngorm's Anaemic Domain Model

2006-12-05 Thread Douglas McCarroll
What's OP? Cairngorm doesn't allow the model to talk to the backend. Huh? But yes, the hibernate adapter model also looks very attractive to me. There are some questions about how to implement Flex Data Management Services in Cairngorm - IResponder doesn't include a conflict() method. I

[flexcoders] Re: Access TextField within ComboBox

2006-12-05 Thread jlentz2112
Try setting the combobox.selectedIndex to -1 to make it use the prompt value. I set prompt= , then when I set combobox.selectedIndex to -1, it clears the field. John --- In flexcoders@yahoogroups.com, bjorn.schultheiss [EMAIL PROTECTED] wrote: Hey, I need to remove the selection on the

Re: [flexcoders] Re: Access TextField within ComboBox

2006-12-05 Thread Bjorn Schultheiss
Thanks John, I currently am using a 'prompt' on my combobox as well. I'm making my changes on a handler listening to the close event. Here's perhaps a more detailed explanation of my problem from another previous email. Hopefully this question has a simple answer, though i haven't found

[flexcoders] Dispatched Events from within a Subclass

2006-12-05 Thread pedalspeed1
Two Parts: I have a sub-classed form that has multiple components. The sub-classed form is a scheduling widget and the user can create/update/delete multiple schedules. The form has a delete button. When the user clicks the delete button, I need the parent document to listen for this specific

[flexcoders] Array to Alert

2006-12-05 Thread jmfillman
I have a label field in an ArrayCollection that I need to display on an alert box. I need each label to be on it's own line in the alert box. Say I have 3 records in the Array, with label values of *Name, *Address, and *Phone. I need to get those labels from the ArrayCollection and have them

[flexcoders] Error #1010: A term is undefined and has no properties -- RTE with Datagrid

2006-12-05 Thread jmorpher03
Hi, I have a DataGrid with a custom item renderer (containing a Checkbox and Label). As soon as the data is populated via an XML returned by the server, the following error comes up: TypeError: Error #1010: A term is undefined and has no properties. at

[flexcoders] Re: AS 3 performance articles?

2006-12-05 Thread Mike Morearty
This is probably the Gary Grossman PDF you are referring to: http://www.onflex.org/ACDS/AS3TuningInsideAVM2JIT.pdf --- In flexcoders@yahoogroups.com, joshuajnoble [EMAIL PROTECTED] wrote: Hi, I need some whitepapers/articles/blog posts/whatever, on AS3 display performance vs AS2 (for a

RE: [flexcoders] Example in AdobeR FlexT 2 Language Reference doesn't compile....

2006-12-05 Thread Gordon Smith
It compiled and ran for me. When you put this code into a file, did you name the file DateField.mxml? I think that could cause this problem. Your app name shouldn't be the same as a framework class. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Bug??? Re: Loading multiple swfs crashing browser

2006-12-05 Thread dallasweb
I've been hitting this app real hard with the newest 9.0.28.0 player installed(IE and Firefox)...and absolutely no crashing. Thanks for everyone's input on this. Thanks Adobe for making the player even better ;) --- In flexcoders@yahoogroups.com, dallasweb [EMAIL PROTECTED] wrote: Mike,

[flexcoders] Data Models as VOs

2006-12-05 Thread pedalspeed1
I'm at a cross-roads with my Flex 2 /Cairngorm 2.0 application. Next week, I'll begin the actual Data Processing on my application. I won't be using Flex Data Services for my application. I wanted to collect other people's thoughts on using the Data Model as a Value Object. My belief is that my

[flexcoders] copy and paste - automatic selections possible

2006-12-05 Thread {reduxdj}
I know how to do this in JS, how do you, if even possible, make an automatic selection to copy and paste to the clipboard with a click of a button. Thanks, Patrick

[flexcoders] Re: itemrenderer trying to access variables in main application

2006-12-05 Thread ben.clinkinbeard
Hi Bill, This is pretty simple to accomplish if you use ClassFactory to set up your itemRenderers. You'll need to implement IFactory in your itemRenderer class and then do something like this in the file where your DataGrid lives: [Bindable] private var myRenderer:ClassFactory; myRenderer = new

Re: [flexcoders] Re: BindSetter?

2006-12-05 Thread Lachlan Cotter
I think you're right Steve. I have asked myself the same question in the past and ended up using bindProperty… When you say function set ():void or function get ():Something you're really telling the method to masquerade as a property, so it makes sense that you can treat it as such. I

[flexcoders] UITextField - width anti-alias type - FEATURE REQUEST: more examples in documentation

2006-12-05 Thread {reduxdj}
Flexmasters: I've tried this a dozen ways, what's the best way to get the width of a UITextField and I've brought it up a few times. I won't stop asking till somebody can help me then these results then they will be search friendly! I know you have better things to do than help me, so it's

[flexcoders] Enabling Digital Signatures

2006-12-05 Thread Pramod
Hey Guys, I am not too sure if this possible at all in the first place. However, I am confident that there might be some work-a-arounds for the same. I have to create a simple Sales Order. The form has been created and connected using a WSDL. The new challenge is that I have a field which

[flexcoders] Building workspace - lowering the time

2006-12-05 Thread dorkie dork from dorktown
Is there anything I can do to lower the time it takes for Flex Builder to Build the workspace? Sometimes it takes a few minutes when I first start up. dorkie finger tapping dork from dorktown

RE: [flexcoders] Building workspace - lowering the time

2006-12-05 Thread Gordon Smith
You could turn off Build Automatically in the Projects menu, or close projects that you aren't working on (right-click on a project in the Navigator pane and choose Close Project). How many projects are you building, and how many components does the average one have? - Gordon

<    1   2