[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
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
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
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] 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: 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] 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
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
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: 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: 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: 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-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: 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: 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: 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: 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: 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: 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: 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 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: 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: 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: 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: 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: 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: 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: 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-21 Thread valdhor
t you going. Best Regards Steve --- In flexcoders@yahoogroups.com, "raja_s_patil" wrote: > > Thanks valdhor, > > > > > Sorry, I cannot comment on cake as I have not used it. > > > > I do know that WebORB is fast, reliable and community support is

[flexcoders] Re: Flex Windows Not Loading Bug

2009-04-21 Thread valdhor
You may like to look at FlexMDI (Part of FlexLib) for your windowing requirements. I use an older version extensively and have not seen anything like what you are experiencing. Best Regards Steve PS. If you want to pay me to look at it I'll gladly do so ;-} --- In flexcoders@yahoogroups.c

[flexcoders] Re: CakePHP+CakeAMFPHP vs WebORB dialema

2009-04-21 Thread valdhor
Sorry, I cannot comment on cake as I have not used it. I do know that WebORB is fast, reliable and community support is very good. I find it very easy to code for (Although I could be biased as I have used it for a long time). I would be reluctant to use CakeAMFPHP as I don't know the level of

[flexcoders] Re: Datagrid question

2009-04-20 Thread valdhor
If it were me, I would create an item renderer for that column and extend button. Add the click handler in the renderer to generate the license number. --- In flexcoders@yahoogroups.com, "Pilby" wrote: > > Thanks for responding, Tracy. > > Let's say this is an application that allows generatio

[flexcoders] Re: Alive PDF "bytearray.org" links all failing?

2009-04-20 Thread valdhor
any computer in my house. And that is > the only address I am having any problem with! Weird. > > > > Tracy Spratt, > > Lariat Services, development services available > > _ > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On

[flexcoders] Re: Need Suggestions for Reporting In Flex Applications.

2009-04-20 Thread valdhor
ahoo.com/group/flexcoders/message/141272;_ylc=X3oDMTJ0aHFoNGxuBF9TAzk3MzU5NzE1BGdycElkAzEyMjg2MTY3BGdycHNwSWQDMTcwNTAwNzIwNwRtc2dJZAMxNDEyNzIEc2VjA2Rtc2cEc2xrA3Ztc2cEc3RpbWUDMTI0MDI0NzA5OA--> > > > Posted by: "valdhor" valdhorli...@... > > > valdhor <http://profiles.yahoo.com/valdhor> > > > Mon Apr 20,

[flexcoders] Re: Alive PDF "bytearray.org" links all failing?

2009-04-20 Thread valdhor
Probably just a glitch. "bytearray.org" is fine for me at this moment. --- In flexcoders@yahoogroups.com, "Tracy Spratt" wrote: > > I want to use AlivePDF in an AIR app but am having trouble finding > documentation because most all of the links to the "bytearray.org" sites > fail. > > > > Ca

[flexcoders] Re: Need Suggestions for Reporting In Flex Applications.

2009-04-20 Thread valdhor
There are any number of ways of exporting data. In my case I use PHP extensively to generate excel spreadsheets (Google for code on how to do this. If you can't find anything, I can post the code I use). For Flex, a couple of things I know of off the top of my head... AlivePDF - http://alivepdf

[flexcoders] Re: Sending a HEAD request

2009-04-17 Thread valdhor
ank you, > > Is there a way to do the same thing directly in actionscript? > > > thanks Steve > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > You could include a javascript function in the wrapper and call it from > > external

[flexcoders] Re: dynamic GUI

2009-04-17 Thread valdhor
I would say yes. You can build the entire display list from Actionscript based on the data in a database. I do this in one part of my application to build forms dependent on the results of database calls. HTH Steve --- In flexcoders@yahoogroups.com, "freeman_vu" wrote: > > Hi All, > >

[flexcoders] Re: Sending a HEAD request

2009-04-17 Thread valdhor
You could include a javascript function in the wrapper and call it from externalInterface.call. Something like... function UrlExists(url) { var http = new XMLHttpRequest(); http.open('HEAD', url, false); http.send(); return http.status!=404; } HTH Steve --- In flexcoders@yahoogroups

[flexcoders] Re: Need Suggestions for database application.

2009-04-17 Thread valdhor
Just remove the dot from the end of the link and it will work. The IDE I like is from Zend (The makers of the PHP engine). Funnily enough it's the previous version (5.5). I tried the latest version and don't really like it as much. I know some people who swear by PhpED (http://www.nusphere.com/

[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread valdhor
Baz > > > On Thu, Apr 16, 2009 at 12:27 PM, valdhor wrote: > > > > > > > Nope, the WSDL should show the operations and data types the service uses. > > It is just an XML file so you should be able to copy and paste it. > > > > Also, is there an

[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread valdhor
Nope, the WSDL should show the operations and data types the service uses. It is just an XML file so you should be able to copy and paste it. Also, is there an API reference for Microsoft Reporting Services (RS) webservice? --- In flexcoders@yahoogroups.com, Baz wrote: > > Valdhor, than

[flexcoders] Re: Speed Test - help needed please

2009-04-16 Thread valdhor
OK, tried in Windows XP, IE6, 24fps. Gave me "Oops. Something went wrong :( Please email me.." same for 1000fps (But took about 15 minutes for the message) --- In flexcoders@yahoogroups.com, tom s wrote: > > Hi All - please help with this test, it will only take you 30 seconds.. > > I'm doing

[flexcoders] Re: Need Suggestions for database application.

2009-04-16 Thread valdhor
PHP 6 is not out yet and won't be for a while. The latest Release Candidate is 5.3 and latest stable is 5.2.9. I am using 5.2.3 on Red Hat Linux. For PDO, check out http://us.php.net/manual/en/book.pdo.php. For WebORB check out http://www.themidnightcoders.com/products.html Steve --- In flexc

[flexcoders] Re: How to Access Microsoft Reporting Services (RS) Webservices (reportservice2005.asmx?wsdl)

2009-04-16 Thread valdhor
Can you post the WSDL? Or location of one on the net? --- In flexcoders@yahoogroups.com, Baz wrote: > > I would like to build a flex front-end to Microsoft Reporting Services (RS) > using the provided webservice at > http://mydomain/reportserver/reportservice2005.asmx?wsdl. I am able to view > t

[flexcoders] Re: Shared Virtual Objects in multiple flex applications

2009-04-16 Thread valdhor
It looks like a job for RSL's (Run-time Shared Libraries). Check out the "Building and Deploying Adobe Flex 3 Applications" manual. --- In flexcoders@yahoogroups.com, "tchredeemed" wrote: > > I have multiple applications, and they all have to use SOME of the virtual > objects I have created as

[flexcoders] Re: Need Suggestions for database application.

2009-04-16 Thread valdhor
--- In flexcoders@yahoogroups.com, "raja_s_patil" wrote: (Snip) > 1> The application should be independent of Backend database. >i.e. it should be able to use any of Oracle, MS-SQL, MySQL, >PostgreSQL, Firebird as backend. > 2> The business logic should move from Stored procedures to som

[flexcoders] Re: Creating ArrayCollection from returned AMFPHP data

2009-04-15 Thread valdhor
I tend to use the Array Utils... var myArrColl:ArrayCollection; myArrColl = new ArrayCollection(ArrayUtil.toArray(event.result)); --- In flexcoders@yahoogroups.com, "azona26" wrote: > > I am using amfphp to return a complex object / multi-dimensional array. > In the past, I have been able to s

[flexcoders] Re: employees.xml

2009-04-15 Thread valdhor
Try.. http://forums.adobe.com/message/231815#231815 or http://www.adobe.com/devnet/flex/articles/datamodel_09.html --- In flexcoders@yahoogroups.com, Greg Morphis wrote: > > Anyone know where I can get a copy of the employees.xml that Flex in a > Week training uses? > I like the vidoes but I

[flexcoders] Re: How Could I "not" map a property to lcds object ?

2009-04-15 Thread valdhor
If it were me, I would leave the java and as objects as they were and create a new class extending the java object. Now you can add all the properties that hibernate wants and send it. --- In flexcoders@yahoogroups.com, ouaqa wrote: > > > I am developping a J2EE/Flex Application and we recent

[flexcoders] Re: Refreshing Advanced data grid with respect to changes in database

2009-04-15 Thread valdhor
myDataGridArrayCollection.refresh() ? --- In flexcoders@yahoogroups.com, "v.ponvino" wrote: > > Hi, >I want to refesh the data at regular interval of time in advanced data > grid.I am using remote object to access data java function which retrives > data from data base.if any body knows th

[flexcoders] Re: ItemRenderer frustration! - What to invalidate??

2009-04-15 Thread valdhor
Did you try myXMLListCollection.refresh() ? --- In flexcoders@yahoogroups.com, oopdog wrote: > > I was given the answer - I'll share it in case it helps anyone else. It was > to use callLater > > callLater(myDataGrid.invalidateList); > > > > > On Wed, Apr 15, 2009 at 12:20 PM, oopdog wrote

[flexcoders] Re: Advanced datagrid vs Textarea

2009-04-14 Thread valdhor
That's nice. --- In flexcoders@yahoogroups.com, "senthilkumarirtt" wrote: > > hi all,i want to copy the entire selected row's data from datagrid to > textarea. >

[flexcoders] Re: how do I install eclipse plugin??

2009-04-14 Thread valdhor
Have you read and followed the instructions? http://www.adobe.com/support/documentation/en/flex/3/releasenotes_flex3_fb.html#installation If you have any trouble see this post... http://www.tekool.net/blog/2008/08/20/flex-builder-301-plug-in-now-works-with-ganymede-eclipse-34/ Google is your fr

[flexcoders] Re: anyone know of a good (free) flex component for playing video/swfs?

2009-04-14 Thread valdhor
I have used FXVideo in the past - http://www.fxcomponents.com/flex-video-player/ HTH Steve --- In flexcoders@yahoogroups.com, "gmoniey22" wrote: > > I'm looking for a simply (and reliable) flex component which can play a flv > or a swf and has the basic controls (Play/Pause/Progress bar) >

[flexcoders] Re: script running longer than....

2009-04-14 Thread valdhor
I don't know about the "10,000 seconds rule". Where did you see that? Anyway, if there is such a thing, use a timer for the 10 minute data reload and a META refresh tag to reload your application every 10,000 seconds. --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > I have Flex app t

[flexcoders] Re: Soap Response cannot be decoded. -- Worked on Friday!

2009-04-14 Thread valdhor
As a guess, I would say that the XML has changed and Flex is having problems decoding the XML. If at all possible, compare the XML that worked to the new XML to see what changed. Also, there may be an invalid character that Flex doesn't like but that the browser will display OK. --- In flexco

[flexcoders] Re: Profile httpService call

2009-04-13 Thread valdhor
I think you may be thinking of AppPuncher... http://www.themidnightcoders.com/products/ria-apppuncher/overview.html --- In flexcoders@yahoogroups.com, "flexaustin" wrote: > > Once upon a time I remember their being, I think, an AIR application that > would allow you to run you compiled Flex ap

[flexcoders] Re: Suggestion to enable adobe TV to be more effective

2009-04-10 Thread valdhor
And a note for the developer... I go to tv.adobe.com using Windows XP, Firefox 3.0.8 and Flash 9.0.124 debug. I then click on the word "Flex" in the top right and get this error: TypeError: Error #1009: Cannot access a property or method of a null object reference. at AdobeTV_G2/loadSel

[flexcoders] Re: Invalid root. The WEB-INF/flex folder must contain either flex-config.xml or services-config.xml.

2009-04-09 Thread valdhor
ID Ten T error? --- In flexcoders@yahoogroups.com, Greg Morphis wrote: > > never mind > > On Thu, Apr 9, 2009 at 11:46 AM, Greg Morphis wrote: > > If I choose Use built-in ColdFusion web server I still get the same error. > > Why is this so jacked up? > > > > On Thu, Apr 9, 2009 at 9:59 AM, Gr

[flexcoders] Re: Form field clearing

2009-04-09 Thread valdhor
I normally use a function like... private function resetFormItems():void { var formChildren:Array = jobRequest.getChildren(); for each(var theFormItem:FormItem in formChildren) { (theFormItem.getChild

[flexcoders] Re: Boolean problem

2009-04-09 Thread valdhor
PHP is a loosely typed language and doesn't really implement a strictly boolean type. Generally, PHP will convert this to an int with 0 being false and anything else being true (Normally set to 1). What I have noticed is that sending a (so called) false value from PHP to Flex sends the string "

[flexcoders] Re: Debugger won't break on HTTP Service result function

2009-04-09 Thread valdhor
Have you set up another event listener (using Actionscript) that is grabbing that event? --- In flexcoders@yahoogroups.com, "Matthew A. Wilson" wrote: > > I have a component that I'm adding to my Flex project and it makes 3 HTTP > Service calls. On the result="" I have listed a function and in

[flexcoders] Re: Using RemoteObject with Flash

2009-04-09 Thread valdhor
This thread... http://tech.groups.yahoo.com/group/flexcoders/message/126803 should give you a good start. --- In flexcoders@yahoogroups.com, "zootpeet" wrote: > > > I have a Flash/ActionScript project that needs start connection to a backend > database, as I need to start tracking and record

[flexcoders] Re: How can I have my class return an ArrayCollection?

2009-04-08 Thread valdhor
Umm.. Add a public function that returns serviceArray ? --- In flexcoders@yahoogroups.com, "sailorsea21" wrote: > > Hi everyone, > how can I have this following class return me an ArrayCollection whenever I > call it > > [Bindable] > public class Services > { > public

[flexcoders] Re: Unrecognized binding style 'null'

2009-04-08 Thread valdhor
When I try to load your WSDL at http://max.shoon.blucommerce.beta.blubolt.com/oversight/soap/wsdl?model=orders it requests a username and password. I don't see in your AS code how you pass authentication information. --- In flexcoders@yahoogroups.com, "skywalkr42" wrote: > > Hi all, > > Apo

[flexcoders] Re: clear concise article/tutorial on setting up CFC project in Flex Builder?

2009-04-07 Thread valdhor
Have you looked at http://flexcf.com/tutorials ? --- In flexcoders@yahoogroups.com, "dmkramerica" wrote: > > I have full admin priv to CF, and the entire server for that matter, and > Gassner's articles on lynda.com only describe setting up Cold Fusion projects > in a local environment - which

[flexcoders] Re: Access active column header (DataGrid)

2009-04-07 Thread valdhor
gt; > > --- In flexcoders@yahoogroups.com, "valdhor" valdhorlists@ wrote: > > > > As I understand it, there is no backgroundColor style. What I did was > > use a graphic fill: > > > > override pro

[flexcoders] Re: Access active column header (DataGrid)

2009-04-06 Thread valdhor
As I understand it, there is no backgroundColor style. What I did was use a graphic fill: override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { super.updateDisplayList(unscaledWidth, unscaledHeight); var g:Grap

[flexcoders] Even Better Scrollable Menus for Flex Problem

2009-04-03 Thread valdhor
This question is probably just for Doug McCune if he is watching ;-} I really like the idea behind the Scrollable Menus component (http://dougmccune.com/blog/2007/01/26/even-better-scrollable-menus-for-flex/). Unfortunately, there seems to be a bug in the ScrollableMenuBar getMenuAt() code. If

[flexcoders] Re: Creating RemoteObject in ActionScript as dataProvider for ComboBox

2009-04-03 Thread valdhor
query to oracle as executed by cold fusion. The sql query returns a list of names (single column) and the column name is "Label") > > > > > > > > > --- In flexcoders@yahoogroups.com, "valdhor" valdhorlists@ wrote: > > > >

[flexcoders] Re: Creating RemoteObject in ActionScript as dataProvider for ComboBox

2009-04-03 Thread valdhor
I have posted a number of examples here. To start, follow this thread... http://tech.groups.yahoo.com/group/flexcoders/message/126783 --- In flexcoders@yahoogroups.com, "brad.bueche" wrote: > > I cant find a good example of how to create a remoteObject in ActionScript. > All the examples seem

[flexcoders] Re: Do you know the forum for "zendAMF and Flex"?

2009-04-02 Thread valdhor
Zend_AMF is part of the Zend Framework. The Zend Framework forum is at http://www.zfforums.com --- In flexcoders@yahoogroups.com, "markflex2007" wrote: > > Hi, > > I have question for that and am looking for help. > > Please help me. > > Thanks > > Mark >

[flexcoders] Re: Error with amfphp

2009-04-02 Thread valdhor
I have seen this before and never found a solution. Everything is working perfectly and then this error shows up and won't go away (Even if you revert to the last version that worked it is still there). This was the main reason I moved to using WebORB. I have not seen that error since that time

[flexcoders] Re: Newbie in FLEX, need help on a question

2009-04-02 Thread valdhor
http://www.adobe.com/2006/mxml"; width="100%" height="100%"> The width and height properties are what you want. --- In flexcoders@yahoogroups.com, "krishneelu" wrote: > > Hi, > > I am not an intermmediate or advanced Flex coder, but just trying to use the > Flex Builder latest trial version to

[flexcoders] Re: Has anyone done a file upload and download, store data into database

2009-04-02 Thread valdhor
I would recommend NOT storing the file(s) in the database. What I would do is upload the file to the server then get PHP to move it and then store the location of the file in the database. --- In flexcoders@yahoogroups.com, "timgerr" wrote: > > Sorry for not being clear. I want to transfer a

[flexcoders] Re: closing-a-pop-up-window-using-the-keyboard-in-flex

2009-04-01 Thread valdhor
) { popUpTitleWindow = new PopUpTitleWindow(); } PopUpManager.addPopUp(popUpTitleWindow, this, true); popUpTitleWindow.setFocus(); } HTH Steve --- In flexcoders@yahoogroups.com, "ilikeflex" wrote: > > Hi valdhor >

[flexcoders] Re: RemoteObject in AS3 Project

2009-04-01 Thread valdhor
channelSet = new ChannelSet(); amfChannel = new AMFChannel("my-amf", "http://myserver.com/WebORB/weborb.php";); channelSet.addChannel(amfChannel); myService = new RemoteObject(); myService.channelSet = channelSet; myService.destination = "WeborbTesting.MyService"; myService.requestTimeout = 30; myS

[flexcoders] Re: closing-a-pop-up-window-using-the-keyboard-in-flex

2009-04-01 Thread valdhor
Try this: import mx.managers.PopUpManager; public var popUpTitleWindow:PopUpTitleWindow = new PopUpTitleWindow(); private function button_click(evt:MouseEvent):void { if(!popUpTitleWindow.isPopUp) {

[flexcoders] Re: Application.application.parameters.

2009-04-01 Thread valdhor
I use a custom QueryString class for this... package { import flash.external.*; import flash.utils.*; public class QueryString { private var _queryString:String; private var _all:String; private var _params:Object; public function get query

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-04-01 Thread valdhor
make sure you do not need it any more and then remove it. --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > Not here. I am still using Flash Player 9.0.124. > > > --- In flexcoders@yahoogroups.com, "jmfillman" wrote: > > > > Thank you for

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-04-01 Thread valdhor
e in FlashPlayer 9, so must be a bug with 10. > > JF > > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > I tried your code and it crashes my browser here. I could not find a way to > > stop that behavior in my (Admittedly short) testing. >

[flexcoders] Re: AMFPHP release project security problem

2009-03-31 Thread valdhor
You will need a crossdomain.xml file at the root of your server. Search this mailing list for details. A quote from http://labs.adobe.com/wiki/index.php/Flex:Accessing_Data... Using crossdomain.xml files A crossdomain.xml file is an XML file that provides a way for a server to indicate that its

[flexcoders] Re: HTTPService using underscores in variable names not working with POST...

2009-03-30 Thread valdhor
hink of > till your post: > > What version of Apache and PHP did you test against? > > Thanks for the help. > > Joel > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > I tried your code and it worked perfectly. The two POST variables >

[flexcoders] Re: HTTPService using underscores in variable names not working with POST...

2009-03-30 Thread valdhor
I tried your code and it worked perfectly. The two POST variables admin_action and place_next showed up in the $_POST array as $_POST["admin_action "] and $_POST["place_next"] with the values add and 2 respectively. The sec variable showed up in the $_GET array as $_GET["sec"] with the value use

[flexcoders] Re: Connecting an AIR application to FCF through Webservices.

2009-03-30 Thread valdhor
There are now stricter rules. See http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html --- In flexcoders@yahoogroups.com, shaun mccran wrote: > > > So its an access problem? You can connect AIR apps to a server side object? > > > > Isn't this all you need in your crossdo

[flexcoders] Re: AMFPHP release project security problem

2009-03-30 Thread valdhor
Do you have a crossdomain.xml file on your server? --- In flexcoders@yahoogroups.com, soulflow132 wrote: > > > Hi am new to flex 3. > I've created a flex application that connects to database using > amfphp. > When i compile it and run it on flex builder environement it simply works > . > So i

[flexcoders] Re: Custom Classes and Custom Events

2009-03-30 Thread valdhor
You can't put a listener on your datagrid or your customcomponent as they will never see the event you dispatched. Put the event listener in the application itself. When you catch the event you can instantiate the customcomponent and use the _data property to set the arraycollection for your da

[flexcoders] Re: AMFPHP problem disconnected

2009-03-30 Thread valdhor
Try calling the second remoteobject on the return of the first (ie. put the call in the resultEvent function) --- In flexcoders@yahoogroups.com, soulflow132 wrote: > > > Hi.Am new to flex and amfphp. I have 2 remoteobject in flex which call 2 > different php files in order to connect to a data

[flexcoders] Re: Connecting an AIR application to FCF through Webservices.

2009-03-30 Thread valdhor
Your crossdomain.xml file looks outdated for the newer versions of Flash. --- In flexcoders@yahoogroups.com, "smccran" wrote: > > Hi all, > I am trying to connect an AIR app to a coldfusion back end webservice (CFC), > but am getting an error message: > > Code: > > wsdl="http://www.mccran.co

[flexcoders] Re: why doesnt this work (custom drawing)

2009-03-30 Thread valdhor
The function never runs. AFAIK you need to add this to a component implementation and then instantiate the component. Something like this... MyComponent.as: package { import mx.core.UIComponent; public class MyComponent extends UIComponent { public function MyComponent()

[flexcoders] Re: Remoting: Sending a typed object with zendAMF to the server

2009-03-27 Thread valdhor
Sorry, my recommendation is WebORB. If you decide to change let me know and I can help you out. --- In flexcoders@yahoogroups.com, "djhatrick" wrote: > > Here's an example of what I am sending, but I always get a fault... I hate > to say it, but ZendAMF is more complicated than the amfphp, an

[flexcoders] Re: ItemEditors Memory Leak

2009-03-27 Thread valdhor
I installed Subversive Plug-in from http://download.eclipse.org/technology/subversive/0.7/update-site/ and Subversive SVN Connectors from http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/ and was able to check out revision 5656 using http://opensource.adobe.com/svn/

[flexcoders] Re: horizontalAxisRenderer VS horizontalAxisRenderers?

2009-03-27 Thread valdhor
columnChart.verticalAxisRenderers wants an array. Try this... columnChart.verticalAxisRenderers = [axisVRenderer]; --- In flexcoders@yahoogroups.com, "sailorsea21" wrote: > > Hi everyone, > I have the following script: > > var columnChart:ColumnChart = new ColumnChart(); > va

[flexcoders] Re: ItemEditors Memory Leak

2009-03-27 Thread valdhor
How about http://opensource.adobe.com/wiki/display/flexsdk/download?build=3.3.0.4852&pkgtype=1 --- In flexcoders@yahoogroups.com, "flexcoder99" wrote: > > No. And honestly I did not check the release notes. > Will do that next time we upgrade. > > I tried test program with SDK 3.3 ...but NO CH

[flexcoders] Re: Combobox - force direction

2009-03-27 Thread valdhor
. --- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > But if I change framework source code I will have to restore the change every > time I upgrade the framework, right? > --- In flexcoders@yahoogroups.com, "valdhor" wrote: > > > > Ma

[flexcoders] Re: Combobox - force direction

2009-03-26 Thread valdhor
Maybe: http://www.typeoneerror.com/forcing-combobox-component-open-direction-in-flex/ --- In flexcoders@yahoogroups.com, "markgoldin_2000" wrote: > > Is it possible to force a direction a combobox opens up to? > > Thanks >

[flexcoders] Re: How to restore the default work space in flex builder 3?

2009-03-26 Thread valdhor
Go to File->Switch Workspace->Other... and browse to a new directory. Why would you want to do this? --- In flexcoders@yahoogroups.com, krshnaonweb wrote: > > HI!! > > I am new bie in flex here. > How to restore the default work space in flex builder 3, ? > > Thanks > .kr >

[flexcoders] Re: RangeError: Error #2006: The supplied index is out of bounds. (on addChild())

2009-03-26 Thread valdhor
Generally, not without seeing some code. A couple of thoughts... addChild assumes "this". What is "this" at the time of the call? addChild counts the number of display children and does an addChildAt(count + 1). If you do a this.getAllChildren(), how many elements are in the array? What are th

[flexcoders] Re: Variable SampleDataEvent is not defined.

2009-03-25 Thread valdhor
I can't imagine that would be the problem - SampleDataEvent is in SDK 3.0, 3.1, 3.2 and 3.3 (At least, according to the manuals for each). --- In flexcoders@yahoogroups.com, "flexcoder99" wrote: > > Check the Flex SDK used. > > --- In flexcoders@yahoogroups.com, &quo

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