[flexcoders] Re: Flash player 10 Debug not recognized in FB3

2009-04-22 Thread valdhor
No. There are two "Types" of Flash Player - the standard Flash Player and the debug Flash player. Both will have the same version number. In your case you have version 10.0.22.87 of the standard Flash Player. What you want is version 10.0.22.87 of the debug Flash Player. Go to http://www.adobe.

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-22 Thread valdhor
AFAIK no - They give you enough to get going but any further is up to your own development efforts. There should be no reason you can't add to the console for code generation. In my case, I did not use any of the examples or code generation - I just built everything from scratch. Steve ---

[flexcoders] Re: Flex Windows Not Loading Bug

2009-04-22 Thread valdhor
can view the PPT here: > > http://www.onegen.com/download/FlexWindowNotLoadingBug001.ppt > > Thanks really for all your time and help - this one's got us baffled! > > Ted. > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > You may like to

[flexcoders] Re: Text wrap around an image

2009-04-22 Thread valdhor
I have seen a couple but the only one I can find is... http://dispatchevent.org/roger/dynamic-text-wrapping-in-actionscript-3/ Also, Gumbo's TLF is supposed to have support for this. HTH Steve --- In flexcoders@yahoogroups.com, "Wally Kolcz" wrote: > > Anyone know any examples of how to g

[flexcoders] Re: RegEx string via cell ItemRenderer to colorize specific characters or a better method?

2009-04-22 Thread valdhor
Have a look into TextRange. --- In flexcoders@yahoogroups.com, Adrian Williams wrote: > > Hi All, > > Here's a fun one! > > I have a column in an ADG, and the cells can contain a variety of > data including: > > 16223T,16290T,16319A,16362C,16524G >or >

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-26 Thread valdhor
If ADOdb is my final goal, I would start with that rather than PHP's built-in MySQL classes. I really don't see the point. --- In flexcoders@yahoogroups.com, "raja_s_patil" wrote: > > Thanks Steve, > > > > > AFAIK no - They give you enough to get going but any further is up to your > > own de

[flexcoders] Re: Test various Flash Player version

2009-04-26 Thread valdhor
Have you tried Flash Switcher for Firefox? http://www.sephiroth.it/firefox/flash_switcher/ --- In flexcoders@yahoogroups.com, "itdanny2002" wrote: > > Is there a way to test various flash player > version in Flex Builder ? Some of our computers > is locked and won't change flash player version

[flexcoders] Re: Flex Windows Not Loading Bug

2009-04-26 Thread valdhor
ce to > also be able to group and anchor these) > - "Dialog Boxes" (modal pop-ups) > - "Wizards" (fancy modal pop-ups) > > Do you have any ideas on how I can take this framework and adapt it to > FlexMDI or whatever else you like using? > > All the best

[flexcoders] Re: Gumbo: Styling Panels or Titlewindows when used as a popup not being styled.

2009-04-26 Thread valdhor
I don't do much CSS (I probably should) but do a lot of pop up windows. The only thing that jumps to mind is that popups are managed my systemManager. Is your CSS bound to Application? --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > Does anyone know why styling a popup in css has no

[flexcoders] Re: Flex Menu Basic Question

2009-04-26 Thread valdhor
In my case menu items are pulled from a database and put into custom objects that are returned to Flex. Each custom object has a label field and a link field (Amongst others). When the result is returned I put all these objects into an arrayCollection... menuBarCollection = new ArrayCollection(Arr

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-26 Thread valdhor
There are a couple problems I have found with AMFPHP. The first is an error that pops up intermittently. I can't remember it exactly but have posted about it before. Suddenly it appears for no reason and you can't get rid of it no matter what you do. Changing to Weborb fixed it for me (And othe

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-27 Thread valdhor
I'm not using one. It would be overkill to have one. All I do is query a database given the parameters from an object sent via remoteObject and build an array of custom objects that are returned to Flex. Why would I need a framework for that? PHP's built-in object support is all I need. Most of

[flexcoders] Re: New Into Flex

2009-04-28 Thread valdhor
Take a look at WebORB's .NET tutorials at http://www.themidnightcoders.com/products/weborb-for-net/overview.html --- In flexcoders@yahoogroups.com, Angelo Anolin wrote: > > @Brad and @Greg, > Thanks for the heads up.  I have already bookmarked cflex.net after looking > at some code samples the

[flexcoders] Re: best ftp client

2009-04-29 Thread valdhor
I'm a big fan of FileZilla (http://filezilla-project.org/) --- In flexcoders@yahoogroups.com, "stinasius" wrote: > > what is the best free ftp client to use to upload flex app to remote server? >

[flexcoders] Re: Very confused with Builder

2009-04-29 Thread valdhor
Clean the project that uses the swc. --- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > I have a common library that I share between my projects. The way I have > confugired it is like this: > I have added common library SWC to each project's libray path. When I want to > at > a

[flexcoders] Re: How come setting the responder (async token) after the server call does WORKS???

2009-04-29 Thread valdhor
The service is invoked asynchronously so Flex just invokes the send and keeps executing. Unless the call to the service and its response is faster than the computer executing (read "will never happen") then the responder will be added before the call returns. --- In flexcoders@yahoogroups.co

[flexcoders] Re: ADG Code Completion Missing

2009-04-29 Thread valdhor
ching it back to > > 3.2.0 and the code completion would work. > > > > I found that when I switched it back and forth a few times, it started > > miraculously working even for 3.3.0. Seems like something in FB is getting > > gummed up that eventually resets itself. &

[flexcoders] Re: How come setting the responder (async token) after the server call does WORKS???

2009-04-30 Thread valdhor
This is from a thread (sic) response from Seth Hodgson about a year ago... There is a single thread that advances through SWF frames and runs your ActionScript code and event handlers, but network calls are performed by separate background threads concurrently. In order to have calls processed

[flexcoders] Re: Multiple chart effects conflicting with each other

2009-04-30 Thread valdhor
The problem is due to the different durations for the effects. Stting them all to the same value fixes the problem. I don't know whether this is a bug or whether it's just a limitation of a parallel effect. Someone else may have further input. HTH. Steve --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
What do you mean by "That didn't work"? --- In flexcoders@yahoogroups.com, "fumeng5" wrote: > > Hi -- > > I want to output a variable and hardcoded text in the htmlText property of a > Text component. > > Here's what I tried first: > > content.htmlText = "The account " + this.acctName +

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
t; > --- In flexcoders@yahoogroups.com, Pedro Sena wrote: > > > > try > > > > [Bindable] > > private var msgString:String = "The account " + this.acctName + " has > > been created . > > > > content.htmlText = "{msgStri

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
the last part: > content.htmlText = msgString; > > This comes out as: The account null has been created. > > I thought the init() method would handle the proper setting of this var. > > > --- In flexcoders@yahoogroups.com, "valdhor"

[flexcoders] Re: Outputting a variable into htmlText

2009-04-30 Thread valdhor
tils.bindProperty(content,'htmlText',msgString); > > but I think I'm missing an argument in there...i think it needs 4 args. > > Thank you very much for your help. > > > > > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: >

[flexcoders] Why would "as" keyword not work

2009-04-30 Thread valdhor
I have a bit of a perplexing problem (With a workaround). In a datagrid I have an itemRenderer that sets one column to a linkButton. In the constructor I have... addEventListener(MouseEvent.CLICK, handleLinkClicked); I also have a valueObject imported... import Model.ValueObjects.DetailData;

[flexcoders] Re: Why would "as" keyword not work

2009-04-30 Thread valdhor
gt; From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On > Behalf Of valdhor > Sent: Thursday, April 30, 2009 9:18 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Why would "as" keyword not work > > > > > > I have a bit of a perplexing

[flexcoders] Re: Why would "as" keyword not work

2009-04-30 Thread valdhor
Yes --- In flexcoders@yahoogroups.com, Pedro Sena wrote: > > Are you using modules? > > On Thu, Apr 30, 2009 at 2:17 PM, valdhor wrote: > > > > > > > Hmmm. Looks like I misspoke. now I get... > > > > Type coercion failed. Cannot convert &

[flexcoders] Re: Why would "as" keyword not work

2009-04-30 Thread valdhor
Also, I now have it working if I change from trying to coerce to a valueObject and just use a generic Object instead. --- In flexcoders@yahoogroups.com, Pedro Sena wrote: > > Are you using modules? > > On Thu, Apr 30, 2009 at 2:17 PM, valdhor wrote: > > > > > >

[flexcoders] Re: Why would "as" keyword not work

2009-04-30 Thread valdhor
ule to another(or to its parent) ? > > On Thu, Apr 30, 2009 at 2:41 PM, valdhor wrote: > > > > > > > Also, I now have it working if I change from trying to coerce to a > > valueObject and just use a generic Object instead. > > > > > > --- In flexcoders

[flexcoders] Re: Why would "as" keyword not work

2009-04-30 Thread valdhor
pplicationDomain. > > HTH, >Ian > > On Thu, Apr 30, 2009 at 6:18 PM, Pedro Sena wrote: > > > > > > Are you using modules? > > > > On Thu, Apr 30, 2009 at 2:17 PM, valdhor > > wrote: > >> > >> > >> Hmmm. Looks like I

[flexcoders] Re: Why would "as" keyword not work

2009-04-30 Thread valdhor
gt; I think I didn't understand. > > BTW, Have you done the test that I suggest ? > > Regards, > > On Thu, Apr 30, 2009 at 5:11 PM, valdhor wrote: > > > > > > > Alex - I have read your Modules presentation about twenty times so far as > > well as

[flexcoders] Re: Can Flex read IPTC or EXIF data on jpegs?

2009-05-01 Thread valdhor
A quick Google search pulled these links... http://code.shichiseki.jp/as3/ExifInfo/ http://code.google.com/p/exif-as3/ http://blog.kevinhoyt.org/2005/11/01/actionscript-3-meets-exif-21/ --- In flexcoders@yahoogroups.com, "luvfotography" wrote: > > Can Flex display exif data on jpgs? > How can I

[flexcoders] Re: Flex equivalent of PHPs format_date

2009-05-05 Thread valdhor
Use the Date object: var date:Date = new Date(1241259519 * 1000); var dateText:String = date.toUTCString(); Note that PHP uses seconds from unix epoch and Actionscript uses milliseconds from unix epoch. That is why I multiplied your number by 1000. HTH Steve --- In flexcoders@yahoogroups

[flexcoders] Re: EventListener not getting feedback from new server. Ideas?

2009-05-05 Thread valdhor
Have you tried looking at what is sent and received using Charles (http://www.charlesproxy.com) or Wireshark (http://www.wireshark.org/)? Also, on the two hosts, is PHP the same? How about the PHP.ini file(s)? And the crossdomain.xml file? Do non Flex file uploads work? --- In flexcoders@yahoo

[flexcoders] Re: Flex Windows Not Loading Bug

2009-05-05 Thread valdhor
(just got back online). The > Rent-a-coder project should still be active - the link is: > > http://www.rentacoder.com/RentACoder/misc/BidRequests/ShowBidRequest.asp?lngBidRequestId=1153997 > > All the best, > > Ted. > > --- In flexcoders@yahoogroups.com, "valdhor&

[flexcoders] Re: Advanced Data Grid - A working Demo for LockedRowCount property needed

2009-05-05 Thread valdhor
Sure... http://www.adobe.com/2006/mxml";> --- In flexcoders@yahoogroups.com, "grg_blls" wrote: > > Hi all, > > Is there any working demo example in Flex 3, of a AdvancedDataGrid with LockedRowCount

[flexcoders] Re: SWF File Causing CPU Overload in Firefox on Windows

2009-05-05 Thread valdhor
I tried your site and Charles tells me... The requested URL /js/commerce.js was not found on this server. Also, I'm using Firefox 3.0.10 on Windows XP and it doesn't overload my CPU (Although I am still on Flash Player 9). --- In flexcoders@yahoogroups.com, "Kyle" wrote: > > > For some reaso

[flexcoders] Re: Advanced Data Grid - A working Demo for LockedRowCount property needed

2009-05-05 Thread valdhor
the application of this > particular property) > Please clarify. > > Thanks again, > George > > > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > Sure... > > > > > > http://www.adobe.com/2006/mxml";&

[flexcoders] Re: Enable/Disable Context Menu Based on selected row of DG

2009-05-05 Thread valdhor
This example should help... http://www.adobe.com/2006/mxml"; layout="vertical" verticalAlign="middle" creationComplete="onCreationComplete()"> HTH Steve --- In flexcoders@yahoogroups.com, "

[flexcoders] Re: specify services-comfig.xml in either MXML or AS?

2009-05-06 Thread valdhor
Check out this thread... http://tech.groups.yahoo.com/group/flexcoders/message/126803 --- In flexcoders@yahoogroups.com, dnk wrote: > > Hi there, > > I was wondering if it was possible to specify my services-comfig.xml > in either MXML or AS? > > I just wanted to include that in my actual c

[flexcoders] Re: Choppy Move effect..

2009-05-06 Thread valdhor
I tried the example at the link you posted and it is not choppy for me - very smooth move. Perhaps your PC is on the slow side or does not have much memory (I have a 2.66GHz Core 2 Duo with 4GB of RAM) --- In flexcoders@yahoogroups.com, "vinayakvijay_v" wrote: > > Hi friends, > > In flex wh

[flexcoders] Re: Using SerializationFilter

2009-05-06 Thread valdhor
Are you sure you're using the right class? According to the docs it is in mx.rpc.http.HTTPService but NOT in mx.rpc.http.mxml.HTTPService. --- In flexcoders@yahoogroups.com, "Luke Pillow" wrote: > > I've noticed the serializationFilter property on the HTTPService class, and I > would like to

[flexcoders] Re: adding to a sprite.

2009-05-06 Thread valdhor
I have seen this question asked before. You may like to check the archives. This post may help as well... http://groups.google.com/group/macromedia.flex.general_discussion/browse_thread/thread/beb04fa6cf84aea5 And this one... http://userflex.wordpress.com/2008/06/12/sprite-uicomponent/ --- In

[flexcoders] Re: Changing the BG color of selected row on contect menu item click

2009-05-07 Thread valdhor
A combination of the example I posted earlier along with the example datagrid at http://www.preterra.com/flexsamples/gridsearch/gridsearch.html should get you going. --- In flexcoders@yahoogroups.com, "Dharmendra Chauhan" wrote: > > Hi All, > I want to change the BG color of selected row on

[flexcoders] Re: LinkButton themeColor

2009-05-07 Thread valdhor
Why not just use the Hyperlink component from jabbypanda? http://www.jabbypanda.com/blog/?p=28 --- In flexcoders@yahoogroups.com, "chandruflex" wrote: > > I am trying to implement a HTML tag like thing using the LinkButton. When > I move my mouse-cursor over the LinkButton, I see a Blue colo

[flexcoders] Re: Is it possible to reference an external css file (from a library)

2009-05-07 Thread valdhor
is one of those times that you use slash instead of dot syntax. Try --- In flexcoders@yahoogroups.com, "gmoniey22" wrote: > > If I want to reference an external mxml component, I do something like this: > > http://www.adobe.com/2006/mxml"; > xmlns:Base="com.mydomain.ui.*"/> > > Is it possi

[flexcoders] Re: Remove Popup from ItemRenderer

2009-05-08 Thread valdhor
The way I would do it is to put the click handler code that opens the popup in the same component as the datagrid instead of in the item renderer itself. When you get a click event, open the new popup and dispatch an event that the parent (titlewindow) catches that closes itself. --- In flexco

[flexcoders] Re: Need to save Employee Form data in a database

2009-05-08 Thread valdhor
It depends on what you are using as your back end server (PHP, .NET, Java etc) and whether you want to use Remote Objects, XML, JSON etc. How much have you learned so far? Have you been through the getting started material? Have you completed the "Learn Flex in a Week" video training course? Al

[flexcoders] Re: navigateToURL to new TAB rather than new WINDOW

2009-05-08 Thread valdhor
Unfortunately, that is a user preference for the browser. There is no way, AFAIK, that a developer can control this. In my case, with Firefox 3.0.10, I have turned on the preference to open new pages in a tab (Tools->Options->Tabs) so my navigateToURL opens in a new tab. --- In flexcoders@yaho

[flexcoders] Re: Sending textinput id

2009-05-08 Thread valdhor
If you use the change event of the text input then the id is at event.target.id Steve --- In flexcoders@yahoogroups.com, "Gustavo" wrote: > > Hi, I have a form and I would like to add the textinput id to an array so I > know which fields were edited, I trigger the change event on each one but

[flexcoders] Re: ASP.NET .ashx handler - POST variables not working

2009-05-08 Thread valdhor
I don't use .NET but just looking at your code I think you are using the wrong API calls. I would assume the context.Request.QueryString would be getting the variables from the actual query string in the URL - the part after the ?. Usually, POST variables are populated elsewhere. For example, i

[flexcoders] Re: Form layout question

2009-05-11 Thread valdhor
Can you show some code? --- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > Somehow labels in my form are all left aligned, while according to this: > > Aligning and spacing Form container children > > All Form container labels are right-aligned, and all children are > left-alig

[flexcoders] Re: Form layout question

2009-05-11 Thread valdhor
text="{pricelist.colors}" > change="{pricelist.colors=colors.text}" > width="100%"/> > > > >

[flexcoders] Re: Debugger Issues

2009-05-12 Thread valdhor
First off, check that you have the debug version. Try... http://kb2.adobe.com/cps/155/tn_15507.html or http://playerversion.com/ Let us know what it says. --- In flexcoders@yahoogroups.com, "knottbrian" wrote: > > I guys I'm new to Flex and getting my feet wet. The issue I have at > the mo

[flexcoders] Re: using "as" breaks data binding?

2009-05-12 Thread valdhor
Jason As a sanity check I tried it and I get the exact same error. I am using Flex SDK 3.3.0 and Flash Player WIN 9,0,159,0 Debug. Strangely enough, changing b to y fixes it and the error goes away. Other variable identifiers I have tried (Very small sample) gives the error as well. It's got m

[flexcoders] Re: using "as" breaks data binding?

2009-05-12 Thread valdhor
tells you it can't bind > > to that value on the *itemRenderer *(GenericTest_inlineComponent1 in my > > test), not on the *TestObject* instance. The itemRenderer has an x and y > > object, so that's why it doesn't complain. It doesn't make any sense that >

[flexcoders] Re: Tree does not show scrollbar after inserting items

2009-05-13 Thread valdhor
Well, I decided to give it a go. The example at the bottom of the page you mention exhibits the exact problem you describe. So, I downloaded the source, created a new project in Flex Builder and pasted it. Guess what? The newly compiled version does not exhibit the same behavior; The vertical

[flexcoders] Re: Flash Speed test - RESULTS !

2009-05-13 Thread valdhor
frame rate and refresh rate are two different things. There is no point in having a frame rate higher than the refresh rate. With an 8ms response time (On some LCD Displays) you have a refresh rate of 125. A frame rate higher than that would not be able to be displayed. --- In flexcoders@yahoo

[flexcoders] Re: What's wrong with this linechart?

2009-05-14 Thread valdhor
You haven't told the CategoryAxis what its dataProvider is. In MXML the dataprovider is set implicitly in the chart definition. If you are adding line series programmatically, you need to add the CategoryAxis dataProvider programmatically as well. Give the CategoryAxis an id... then, in Acti

[flexcoders] Re: Job Offer !

2009-05-14 Thread valdhor
Amy Has someone stolen your identity or are you really spamming the list with job offers that have nothing to do with Flex?? --- In flexcoders@yahoogroups.com, Tiba industry wrote: > > > Tiba industry international is offering a wide range of job offers for people > living in > united State

[flexcoders] Re: Job Offer !

2009-05-14 Thread valdhor
OK, this aint good. They've now stolen my address. How do we stop this?

[flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread valdhor
So, when I do this the window says "Simple MySQL Connection->Create a connection to a MySQL Database". At this point you plug in details for your database connection... Host URL: The IP address or hostname of your MySQL Database (If it's on your local machine use localhost or 127.0.0.1 or your

[flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread valdhor
ase? > > How do I set the northwind (or any other SQL Server database to run in the > localhost for this matter?) > > By default the username for the SQL Server Express database is sa and > password is left blank. > > Thanks a lot. > > Regards, > > Angelo >

[flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread valdhor
If you still can't get it to work, you may like to look at http://www.lynda.com/home/DisplayCourse.aspx?lpk2=437 . There is a course component labeled "Using Flex Builder 3's ASP.NET Data Wizard". --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > I

[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread valdhor
Try... or DataGrid's headerStyleName or DataGridColumn's headerRenderer --- In flexcoders@yahoogroups.com, "djhatrick" wrote: > > but how do I remove the header highlight fill from a datagrid? > > DatagridHeader is nearly impossible to override, i want to kill that f**n > fill. > > It's

[flexcoders] Re: Tree backgorund color

2009-05-14 Thread valdhor
depthColors? --- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > How can I change a background color from white to something else? > > Thanks >

[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-14 Thread valdhor
t; > DataGridHeader. > > > > -TH > > > > --- In flexcoders@yahoogroups.com, "djhatrick" djhatrick@ wrote: > > > > > > > > > Ha, no that doesn't help, but things, i want to remove the mouse > Over > > highligh

[flexcoders] Re: Problems with getChildByName();

2009-05-15 Thread valdhor
How about using something like this... var formChildren:Array = myForm.getChildren(); for each(var currentVBox:VBox in formChildren) { var VBoxChildren:Array = currentVBox.getChildren(); for each(var curre

[flexcoders] Re: Sorry i am not a rocket scientist...

2009-05-15 Thread valdhor
style; except for the > color. > > -TH > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > Also, skinning should work. Check out http://www.munkiihouse.com/?p=14 > > > > > > --- In flexcoders@yahoogroups.com, "Tim Hoff"

[flexcoders] Re: Getting an error when using a tree as a component

2009-05-19 Thread valdhor
I did the same as you did and it works fine main.mxml: http://www.adobe.com/2006/mxml"; width="700" height="250" borderStyle="solid" creationComplete="CallMeNow()"> CallTree.mxml: http://www.adobe.com/2006/mxml";>

[flexcoders] Re: filter complex arrayCollection

2009-05-19 Thread valdhor
Mark Check into the filterFunction property of the ArrayCollection class. This is how I use it in one section of my code... filterText = "text I want to filter on"; detailsArrColl.filterFunction = processFilter; public function processFilter(item:Object):Boolean { if (item.name.toUpperCase

[flexcoders] Re: Flex - Create Application From Database

2009-05-19 Thread valdhor
d to get the web service running (for another > separate application). > > I still got a lot more to learn and I am very thankful that this group exists. > > Kind Regards, > > Angelo > > > > > > From: valdhor > T

[flexcoders] Re: VO Issues

2009-05-20 Thread valdhor
Instead of companyVO = event.itemRenderer.data as CompanyVO try companyVO = event.currentTarget.selectedItem as CompanyVO HTH Steve --- In flexcoders@yahoogroups.com, "Jeremy Rottman" wrote: > > I have written a vo that for some odd reason always comes up null when I try > to populate it

[flexcoders] Re: Flash and REST

2009-05-20 Thread valdhor
This is my opinion - take it with a grain of salt ;-} I don't believe REST services should include errors in HTTP headers. There was no problem with the HTTP - the error was generated in your code. These types of errors should be returned as part of the data payload. In all of my SOAP code I ei

[flexcoders] Re: VO Issues

2009-05-21 Thread valdhor
Have you tried looking at Charles to see what is actually sent? --- In flexcoders@yahoogroups.com, "Jeremy Rottman" wrote: > > Ok here is another oddity that I have run into. > > I have these two methods one is the action method used to call the cfc and > the other is the result event for the

[flexcoders] Re: Scrolling a text in text input when textalign is set to right

2009-05-21 Thread valdhor
Something like this should work... http://www.adobe.com/2006/mxml";> FormItemLabel { textAlign: left; } All

[flexcoders] Re: Advanced Datagrid performance

2009-05-21 Thread valdhor
Thousands. It slows down a lot when you have grouping collections but I set it to display asynchronously so the user sees it updating. --- In flexcoders@yahoogroups.com, "Scott" wrote: > > > > I'm using the advanced datagrid component to display data from my > Coldfusion server. Realistica

[flexcoders] Re: simple array?

2009-05-21 Thread valdhor
Try this: var theRecords:Object = records[0]; var paymentTypeCode:String = grid.selectedItem.PAYMENT_TYPE_CODE; if(theRecords.hasOwnProperty(paymentTypeCode)) { Alert.show(theRecords[paymentTypeCode]); } HTH Steve --- In flexcoders@yahoogroups.com, "Jason B" wrote: > > var records:Arra

[flexcoders] Re: Display ADG Data Asynch (was: Advanced Datagrid performance)

2009-05-21 Thread valdhor
(ie. As each grouping is completed it will display). HTH Steve --- In flexcoders@yahoogroups.com, Adrian Williams wrote: > > Hi Valdhor, > > When you say "set it to display async" what do you mean? > > Adrian > > valdhor wrote: > > > > &

[flexcoders] Re: Scrolling a text in text input when textalign is set to right

2009-05-21 Thread valdhor
What is a "right to left chat application" ? Can you point me at an example of how it's meant to work? --- In flexcoders@yahoogroups.com, Rohit Sharma wrote: > > Hi Steve, > Its not working. While I am typing the text shifts as left aligned. > This being a right to left chat applicatio

[flexcoders] Re: one to one chat

2009-05-21 Thread valdhor
Depends on your back end. Here is one I got with a quick Google search... http://learn.adobe.com/wiki/display/Flex/Creating+a+BlazeDS+messaging+application+in+Flex+Builder Also, WebORB has a sample chat application. Check them out at http://www.themidnightcoders.com HTH Steve --- In fle

[flexcoders] Re: Scrolling a text in text input when textalign is set to right

2009-05-22 Thread valdhor
ed you wont be able to see what you are inputting next. > > Hope this helps. > > Thanks, > Rohit > > On Fri, May 22, 2009 at 12:12 AM, valdhor wrote: > > > > > > > What is a "right to left chat application" ? > > > > Can you point me at

[flexcoders] Re: Getting data out of a DataGrid...

2009-05-22 Thread valdhor
Actually, you do know the name of the field. Try this... event.currentTarget.selectedItem[_regCodeVO.validation_field] HTH Steve --- In flexcoders@yahoogroups.com, "laurence5905" wrote: > > Ok, given the following: > >itemClick="membersListDGItemClickHandler(event);"> > >

[flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread valdhor
This is how I would do it.. private function IDCompare(itemA:Object, itemB:Object):int { return ObjectUtil.numericCompare(itemA.SupplierID, itemB.SupplierID); } --- In flexcoders@yahoogroups.com, Angelo Anolin wrote: > > Hi Ma

[flexcoders] Re: Creating custom component instance all the time when click on the button

2009-05-26 Thread valdhor
Quick and dirty... [ MyApplication.mxml ] http://www.adobe.com/2006/mxml"; layout="vertical" xmlns:ns1="*"> [ CustomComponent.mxml ] http://www.adobe.com/2006/mxml";> HTH Steve --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Problem importing classes with D.eval

2009-05-26 Thread valdhor
I don't think you can use D.eval in the way you are trying to. After reading the documentation, there are a few things you need to do... Instantiate an object of the type you are trying to use. You don't need to use this object but it needs to be created so Flex adds the class to the SWC. For e

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread valdhor
What does your services-config.xml file look like. According to the documentation "If you specify the url and a non-default destination, your destination in the services-config.xml file must allow the specified URL" --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > I cannot seem to g

[flexcoders] Re: httpservice error #2032

2009-05-26 Thread valdhor
flexaustin" wrote: > > I don't have a services-config.xml file. > > > > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > What does your services-config.xml file look like. > > > > According to the documentation &q

[flexcoders] Re: Flex Builder not rebuilding source

2009-05-26 Thread valdhor
Clean the project and then check for any errors. Flex is running the last completely compiled SWF. --- In flexcoders@yahoogroups.com, Cordova Aaron wrote: > > > I've had this problem in the past and never got an answer. The problem is > back. I'll be working on a project and constantly make mi

[flexcoders] Re: popup systemManager not working

2009-05-28 Thread valdhor
Is the SendNewMember event set to bubble? --- In flexcoders@yahoogroups.com, Mark Hosny wrote: > > Hey guys, > > For some reason when I dispatch a custom event via the pop up, my > main app isn't receiving the event. > > In my main app I have a custom component called search, which > contai

[flexcoders] Re: Invoke RemoteObject synchronic

2009-05-28 Thread valdhor
You cannot do this. RemoteObject calls are asyncronous. You have to set up a result handler for the remoteObject call and then you can manipulate the returned data. --- In flexcoders@yahoogroups.com, "mhbmarcos" wrote: > > i don´t invoke the resultFunction, i need > invoke a serviceFunctio

[flexcoders] Re: HTTPService HTTPChannel 2032 Channel.Ping.Failed trying to do asimple form post

2009-05-29 Thread valdhor
I'm fairly sure you don't NEED a channelset. From your code, it looks like you have the URL set wrong. First off, you are not binding urlInput.text to the url property of the HTTPService - you are just passing the string "urlInput.text". Secondly, Do you really want to set useProxy to true? I have

[flexcoders] Re: תמונות של התינ וק החדש!

2009-05-29 Thread valdhor
Congrats.

[flexcoders] Re: HTTPService HTTPChannel 2032 Channel.Ping.Failed trying to do asimple form post

2009-06-01 Thread valdhor
I tried your code and, after some changes, got an "HTTP request error". Firstly, change your params variable type from Array to Object. This will allow you POST parameters to be sent. Secondly, I would highly recommend obtaining a copy of Charles (http://www.charlesproxy.com). Using Charles I f

[flexcoders] Re: Different Alert Screen

2009-06-01 Thread valdhor
Check out an example of Styling the alert box at http://blog.flexexamples.com/2007/08/11/styling-the-flex-alert-control/ --- In flexcoders@yahoogroups.com, "ajayashish" wrote: > > I am working on an application design where there are 3 types of alert used. > Conformation, information, Error..

[flexcoders] Re: FileReference RemoteObject

2009-06-01 Thread valdhor
Do you want to upload the file or send the files data using RemoteObject? For the former, have a look at http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_9.html For the latter, you could grab the files data, base64 encode it and send it as part of the Rem

[flexcoders] Re: Best way to programatically add / remove custom components?

2009-06-01 Thread valdhor
To create multiple instances... var myComponentInstance1:MyComponent = new MyComponent(); var myComponentInstance2:MyComponent = new MyComponent(); To add these to an array... var myComponentsArray:Array = new Array(); myComponentsArray.push(myComponentInstance1); myComponentsArray.push(myCompon

[flexcoders] Re: Custom Actionscript component data-binding question

2009-06-01 Thread valdhor
Why are you trying to bind a datagrid? That is a display object. A far better way is to pass in the arraycollection the datagrid is based on. Then just create the datagrid in your custom component. --- In flexcoders@yahoogroups.com, "Keith Hughitt" wrote: > > Hi all, > > I have been working o

[flexcoders] Re: Custom Actionscript component data-binding question

2009-06-02 Thread valdhor
@yahoogroups.com, "Keith Hughitt" wrote: > > Hi Valdhor, > > Thanks for the suggestion, that is a very good idea and something I hadn't > thought of. I'll certainly try that out, however, I'm still uncertain as to > how to pass in / accept data in custom AS clas

[flexcoders] Re: Custom Actionscript component data-binding question

2009-06-02 Thread valdhor
ve I specify a "test" variable. > > When I try to access it in the FilterManager constructor, however, the > variable is empty (both "test," and "_test"). > > I must be missing something simple. Any suggestions? > > Thanks, > Keith > > --

[flexcoders] Re: Custom Actionscript component data-binding question

2009-06-02 Thread valdhor
That should work. When are you testing the variable test (ie. where is your breakpoint set) when you get a null value. --- In flexcoders@yahoogroups.com, "Keith Hughitt" wrote: > > test="Test String" width="100%" height="100%"/> >

<    3   4   5   6   7   8   9   10   11   12   >