[flexcoders] Re: For Each loop with ArrayCollection

2006-08-14 Thread michrx7
Thanks for your help... I got it by doing the following: for each (var testcompanyValue in testCompany) { for each (var testcompanyValue2 in testcompanyValue) { mytestcompanyOutput = mytestcompanyOutput + testcompanyValue2.toString() + \n; } } -- Flexcoders

Re: [flexcoders] Is FDS the right choice for me?

2006-08-14 Thread Tom Chiverton
On Saturday 12 August 2006 05:18, Jay Gibb wrote: Can anyone suggest another solution that I might not have considered? Depending in what you mean by 'push', and assuming you have a ColdFusion backend, you may be able to do away with FDS and replicate the functionality using polling and/or

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Hilary Bridel
Are you extending a Flex component? Maybe you are using avariable name already used by that component? Hilary www.bridel.org On 8/14/06, Oriol Gual [EMAIL PROTECTED] wrote: Hi,I'm getting a 1021 Duplicate function definition. when I declare the setters of to variables, there's no problem

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Oriol Gual
No, I'm using Cairngorm, and it's a ValueObject. What is really freaking me out, is that if I copy the class, and just change the name of it there are no errors! Also, I can't override it because then I have a 1023 error ( Incompatible override), but I haven't declared it before. BTW I came to

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Oriol Gual
I want to point out, that when implementing IUID there's no error with the setter of _uid.2006/8/14, Oriol Gual [EMAIL PROTECTED]: No, I'm using Cairngorm, and it's a ValueObject. What is really freaking me out, is that if I copy the class, and just change the name of it there are no errors!

Re: [flexcoders] Getting RPC Error, Channel.Connect.Failed error NetConnection.Call.Failed:HTTP

2006-08-14 Thread Tom Chiverton
On Monday 14 August 2006 06:50, malik_robinson wrote: error NetConnection.Call.Failed: HTTP: Status 500] That's the internal error HTTP status code. What's in the server logs ? -- Tom Chiverton This email is sent for and on behalf of

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Tom Chiverton
On Sunday 13 August 2006 18:22, Oriol Gual wrote: What I'm doing wrong? Not posting your code :-) -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Oriol Gual
I haven't posted it cause it's very simple:package com.example.vo { import com.adobe.cairngorm.vo.ValueObject; [RemoteClass(alias=com.example.vo.TestVO)] [Bindable] public class TestVO implements ValueObject { public var id : int;public function get id():int { return this.id;} public

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Oriol Gual
public var id : int; is a typo, it should be private var id : int;2006/8/14, Oriol Gual [EMAIL PROTECTED]: I haven't posted it cause it's very simple:package com.example.vo { import com.adobe.cairngorm.vo.ValueObject; [RemoteClass(alias=com.example.vo.TestVO)] [Bindable] public class TestVO

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Oriol Gual
Doing some more testing:- I've created a dummy class to test it, no problem: [RemoteClass(alias=com.example.vo.ProvaVO)] [Bindable] public class ProvaVO implements ValueObject { private var id : Number; public function get id():Number { return id; } public function set

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Oriol Gual
I've found my error thanks to another post, I didn't know that the var should have a different name, like _id.Sorry and thanks :POriol.2006/8/14, Oriol Gual [EMAIL PROTECTED]:Doing some more testing:- I've created a dummy class to test it, no problem:

[flexcoders] flex2 final - datagrid sortableColumns=false and itemDoubleClick event issue

2006-08-14 Thread bhaq1972
i have a datagrid with the following attributes. mx:DataGrid doubleClickEnabled=true sortableColumns=false itemDoubleClick=mx.controls.Alert.show('item double clicked') i'm finding that if i doubleClick the header, i'm getting the itemDoubleClick evnt being trigged. is this the correct

Re: [flexcoders] Type Coercion failed Error when returning date from web service

2006-08-14 Thread Oriol Gual
I finally solve it declaring the var private and creating the getter and setter:private var _date : Date; public function get data_inici():Date{ return _date ;} public function set data_inici(value:*):void { _date = new Date(value); }The * is important in order to create a Date form a

[flexcoders] flex2 final - how set flashing cursor in textinput

2006-08-14 Thread bhaq1972
how do i place the cursor onto the first textinput on my form in actionscript. the setFocus() and setSelection() methods aren't quite what i'm looking for. regards bod -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] unable to get a camera by passing the name from the names list

2006-08-14 Thread Dan Rossi
Hi, i think ive discovered a bug with the flash 9 player. Im unable to collect the camera from the names list like so _camera = Camera.getCamera(Camera.names[1]); if keeps returning null, even though when tracing Camera.names[1], its returning the name any ideas ? __._,_.___ --

[flexcoders] PrintDataGrid page filling

2006-08-14 Thread phildouglas
Does anyone know much about using the PrintDataGrid class with multiple pages beyond whats included in the flex livedocs. I'm trying to print a graph with a table, and so need the chart at the top of the first page, followed by the datagrid. If the data is longer than one page then i need to

[flexcoders] WhiteBoard

2006-08-14 Thread Weldon MacDonald
My application has a whiteboaerd requirement, but these people can't afford the full ride for FDS. What are the limitations on the free version? Are there alternatives? Weldon MacDonald -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Re: dynamic vbox backgroundcolor in renderer

2006-08-14 Thread amigo_fd
Hello, I tried doing this, but also without any luck ... the click event shows the correct text status0 or status1, so the data is correctly inserted into the renderer ?xml version=1.0? mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; horizontalAlign=center horizontalGap=5 mx:Script

[flexcoders] Re: dynamic vbox backgroundcolor in renderer

2006-08-14 Thread amigo_fd
found a solution ! mx:Script ![CDATA[ private function setImportStyle(doStyle:String):void { importcolor.styleName = doStyle; } ]]

[flexcoders] Re: Clarification needed on how WSDL affects conversion of AS objects to SOAP

2006-08-14 Thread ben.clinkinbeard
Hi Matt, My current problem and questions are concerning serialization, not deserialization. Flex is creating SOAP requests differently for 2 methods of the same service, even though the AS is virtually identical. My only guess is that its due to the WSDL. Here is a recap from my previous posts.

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Samuel D. Colak
Title: Re: [flexcoders] Duplicate function error using setters Ok you have a cyclic error where the property is the same as a value object. Change the value object to something else, for instance the code below ! package com.example.vo { import com.adobe.cairngorm.vo.ValueObject;

[flexcoders] One Website, Multiple Applications - Flex Builder 2 Setup

2006-08-14 Thread lostinrecursion
Hi all, First of all let me thank you for creating and contributing to such a wonderful group of Flex professionals. I have to say that most of the answers I have gleaned over time have come from this community and not from those other official forums. On to my question: I have a website I am

[flexcoders] Referencing objects in parent documents

2006-08-14 Thread mcmcbrianfarrell
Hi, noob question here. I need to access some xml data obtained via an httpservice in a parent state. So far in my data attribute for the field I have data={parentDocument.parentDocument.datarequest.lastResult.physician.lastname} this seems to work but its just plain ugly and if i change any

[flexcoders] File Upload :Complete path of File needed

2006-08-14 Thread Kumar
Hi All, Below is the code that I am using for uploading files. In this code I am able to get only name of the file which is to being uploaded, What I want is to get the full path of the file for example c:/new/abxfile.txt. Can some one help me out of these? ?xml

[flexcoders] Re: One Website, Multiple Applications - Flex Builder 2 Setup

2006-08-14 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, lostinrecursion [EMAIL PROTECTED] wrote: It would seem most effective to use one Flex Project for both applications for code reuse purposes and general organization. You may want to take a look at this thread with a similar topic:

[flexcoders] XML/Chart Scripting help

2006-08-14 Thread Daniel Tuppeny
Hi all, I've done this before, but I can't find the source, and now need to mage changes! I'm trying to draw a pie chart from an XML doc. The XML comes from an external source, and I've just simplified it for this example, so no comments about using mx:model etc. etc.! :) The bit I'm

[flexcoders] Bug applying filter to resized VBox

2006-08-14 Thread hank williams
When I resize a VBox (by resizing the browser window) that I have applied a filter to, the filter does not resize properly, making the VBox look bad. If I remove the filter everything looks great. Is there anything special I need to do when rebuild the filter? It appears that the old filter bits

[flexcoders] Event listeners: Removing a listener prevents future added listeners

2006-08-14 Thread polestar11
Hi there I'm struggling with a series of KeyboardEvents. Here is the scenario: - I have mouse-down and mouse-up event listeners for my UIComponent. - In the mouse-down event I add a new listener for key-up(so that I can capture mouse-down + a key pressed) - I remove the key-up listener in the

[flexcoders] Re: expandItem() not working on my tree :( - fixed

2006-08-14 Thread fuad_kamal
OK, since nobody replied, I solved it myself. Solution is a bit strange, but basically referring to treeData2[0] works to expand the first node, while intuitively you might think that it should be treedData2.node[0]. hmmm... here's the working code: --- ?xml version=1.0 encoding=utf-8?

Re: [flexcoders] Duplicate function error using setters

2006-08-14 Thread Tom Chiverton
On Monday 14 August 2006 10:58, Oriol Gual wrote: Sorry and thanks :P Not a problem - always worth posting code, esp. if it's an odd error in something simple :-) -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP.

[flexcoders] trace.... redirection possible?

2006-08-14 Thread Samuel Colak
Dear all, is there any way of overriding the trace construct to go elsewhere? - such as a custom class - or is this only active in debug? Regards Samuel -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] XML/Chart Scripting help

2006-08-14 Thread Daniel Tuppeny
I can't even get this simple chart to work: mx:XML format="e4x" id="myXmlTest" data item name="danny" val="25" / item name="danny2" val="22" / /data /mx:XML mx:PieChart dataProvider="{myXmlTest}" id="myChart" top="0" left="0" width="100%" height="100%" showDataTips="true" mx:series

[flexcoders] Pen response quirky on tablet pc with Flash Player 9

2006-08-14 Thread sof4real03
Has the Adobe team tested the Flash Player 9 against the latest Windows 2005 Tablet PC edition? Flash Player 7 responded fairly well to pen gestures such as textInput focus and double click, but 9 is responding poorly. Should I be listening for a certain event other than mouseEvents or is this a

[flexcoders] exiting a tabset.

2006-08-14 Thread mthielman11
Hello all I have a problem. I have created a tabnavigator component. I want to set up one of the tabs to exit the tabset and take me back to the main grid results page. The way it is set up is the canvases of the tabs are mxml components that are loaded in to the tabs. The tabset as a

[flexcoders] Array direction with repeater and bar chart....

2006-08-14 Thread parksch2
Hi all, I currently have a bar chart with n elements and right next to it a repeater that displays the growth of each element compared to last years value. Both objects use the same array as a data provider. The problem is that the direction for the bar chart start from the bottom and the

[flexcoders] Server side updates to a bound Object

2006-08-14 Thread Paul Dale
I've got a datagrid bound to ArrayCollection via a destination. Pretty close to the standard example. This part works. What I haven't been able to get to work is to make an update to the java object on the server and have that be reflected in the client. My ArrayCollection is [Bindable]

[flexcoders] expandItem() doesn't seem to work w/dynamic dataprovider - BUG?

2006-08-14 Thread fuad_kamal
expandItem() on a node on a Tree works fine when the dataprovider is a hard-coded XML or XMLList in the mxml, but when the dataprovider is a variable of type XML or XMLList, expandItem() doesn't do anything. code example (should expand the node, but doesn't): --- ?xml version=1.0

RE: [flexcoders] Chart error when mouse rolls over

2006-08-14 Thread Matt Horn
IIRC, this is caused by having an older player and a newer build of Flex 2. Try syncing them up with the release versions. hth, matt horn flex docs -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Lingwai Sent: Friday, August 11,

[flexcoders] Dynamic datagrid columns

2006-08-14 Thread Tom Fitzpatrick
The dynamic column methods for the datagrid seem to have disappeared between 1.5 2. I've looked around for examples or descriptions of Flex 2 replacements for methods such as dataGrid.addColumn() and dataGric.removeAllColumns() that were available in 1.5, but haven't come up with much. Anyone

RE: [flexcoders] Re: Problem with List in TitleWindow

2006-08-14 Thread Tobias Patton
I reported this as a bug to Adobe, and was told that the workaround is to set cacheAsBitmap for the PopUpWindow to false. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Lowder Sent: Friday, August 11, 2006 4:51 PM To:

RE: [Junk E-Mail - LOW] [flexcoders] Dynamic datagrid columns

2006-08-14 Thread Shannon Hicks
Yes. Here's a little sample code, hopefully you can figure out what I did :) public function getProductsResult(event:ResultEvent):void {acProducts = event.result as ArrayCollection;var newColumns:Array = dgStoreStates.columns;var cf:ClassFactory = new

[flexcoders] Extending CSSStyleDeclaration

2006-08-14 Thread sergio_trejo_r
Is there a way to extend the CSSStyleDeclaration class in such a way that I can store/calculate the style values in my application? For example, I want to create a style CSS1 that depends on a different style CSS0. If a style property is not assigned to CSS1 then it should get the value from the

[flexcoders] setStyle(styleProperty, null) or setStyle(styleProperty, undefined)?

2006-08-14 Thread Sergey Kovalyov
Hi All! How to reset one particular style property? Do I need to call setStyle(styleProperty, null) or setStyle(styleProperty, undefined)? Or any other solution is suitable in this particular case? Thank you in advance! Regards, Sergey. -- Flexcoders Mailing List FAQ:

[flexcoders] Re: flex2 final - how set flashing cursor in textinput

2006-08-14 Thread Tim Hoff
Hi Bod, This might help a little: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=462 -TH--- In flexcoders@yahoogroups.com, "bhaq1972" [EMAIL PROTECTED] wrote: how do i place the cursor onto the first textinput on my form in actionscript. the setFocus() and

[flexcoders] Re: Bug applying filter to resized VBox

2006-08-14 Thread Tim Hoff
Hi Hank, That sounds a little odd. You might try cacheAsBitmap = true and/or force a redraw with invalidateDisplayList() on the resize event. -TH --- In flexcoders@yahoogroups.com, hank williams [EMAIL PROTECTED] wrote: When I resize a VBox (by resizing the browser window) that I have

[flexcoders] Flex 2 Garbage Collection (based on AS3 changes)

2006-08-14 Thread lostinrecursion
Hi all, I used garbage collection methods a lot in my prior RIAs to keep the application running smooth as it progressed. But, now, being that I am not a total pro, I'm not sure how we accomplish this. Actionscript 3.0 does not allow the delete keyword to be used when trying to get rid of

[flexcoders] Re: One Website, Multiple Applications - Flex Builder 2 Setup

2006-08-14 Thread lostinrecursion
Much appreciated. I hit that topic's subject line but steered awy because it mentioned Cairngorm, but clearly the topic is exactly what I needed. Thanks so much. On my way to build. I've got all the advice I need. -Kenny --- In flexcoders@yahoogroups.com, Stefan Schmalhaus [EMAIL PROTECTED]

[flexcoders] Re: setStyle(styleProperty, null) or setStyle(styleProperty, undefined)?

2006-08-14 Thread sergio_trejo_r
--- In flexcoders@yahoogroups.com, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! How to reset one particular style property? Do I need to call setStyle(styleProperty, null) or setStyle(styleProperty, undefined)? Or any other solution is suitable in this particular case? Thank you in

Re: [flexcoders] Is FDS the right choice for me?

2006-08-14 Thread Jay Gibb
Thanks Tom. My intuition tells me that polling would generate a significant amount of overhead for the server when several thousand users are connected, so I'm thinking that allowing the server to send data to clients when it determines that they need it would make the system scale

[flexcoders] Cairngorm:One controller, so many commands, so many delegates, so many events

2006-08-14 Thread flxcoder
Now I have about 4-5 events that correspond with the app server and get data back. Each of these events get registered with the CairngormEvent. When the controller executes these events it needs a command associated with the event. Each such command needs a delegate. So for my one interaction

[flexcoders] ASDoc now available on Labs

2006-08-14 Thread Matt Chotin
http://labs.adobe.com/wiki/index.php/ASDoc Enjoy! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] ASDoc is now available for download

2006-08-14 Thread stephenmartin2
ASDoc, the tool we use at Adobe to generate documentation from ActionScript source code, is now available on labs: http://labs.adobe.com/wiki/index.php/ASDoc Stephen -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Re: WebService - What's wrong with this code?

2006-08-14 Thread Tom Lee
Thanks, Ben - Your code works fine. My code, even after I manually edited to make it identical to yours, does not. I can only conclude that Flex Builder is on crack. Seriously, I went over it line by line... No differences except whitespace. I hope this is not going to become a behavioral

RE: [flexcoders] ASDoc now available on Labs

2006-08-14 Thread Clint Modien
Awesome news J thanks Matt!! Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 10:54 AM

[flexcoders] Calling functions from an itemRenderer

2006-08-14 Thread Rick Root
I've got an itemRenderer in a datagrid that's rendering a linkbutton with a script. The following doesn't work because it's not valid XML, with the symbols in the click value... mx:DataGridColumn headerText=Entity ID width=100 dataField=ENTITYID mx:itemRenderer

RE: [flexcoders] ASDoc now available on Labs

2006-08-14 Thread Brian Deitte
And I'll be trying to awaken myself from my hibernation on flexcoders, so if you have any questions about it, fire away. -Brian -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 1:54 PM To:

RE: [flexcoders] Flex 2 Garbage Collection (based on AS3 changes)

2006-08-14 Thread Brian Deitte
Setting it to null (along with removing any other references to the class) is the answer. The variable is removed when it is out of scope: so if you define the variable in a function, it is removed when the function ends. If it's a class-level variable and you still have the class around,

[flexcoders] Re: File Upload :Complete path of File needed

2006-08-14 Thread gotgoose09
I have also tried to figure this out and through searching found that you can't get the full path because of sandbox security. --- In flexcoders@yahoogroups.com, Kumar [EMAIL PROTECTED] wrote: Hi All, Below is the code that I am using for uploading files. In this code I am able

Re: [flexcoders] Calling functions from an itemRenderer

2006-08-14 Thread Brendan Meutzner
Rick,Have a look at the ExternalInterface functionality to call a _javascript_ function which resides in your HTML page which will satisfy your popup requirements...Brendan On 8/14/06, Rick Root [EMAIL PROTECTED] wrote: I've got an itemRenderer in a datagrid

RE: [flexcoders] trace.... redirection possible?

2006-08-14 Thread Brian Deitte
There's no way to redirect trace that I know of, other than to a different file location. trace is only active when you are using the debug player. There's various debug projects that use a cutom method rather than trace and print out the debug messages in a different format. I don't know of

Re: [flexcoders] Calling functions from an itemRenderer

2006-08-14 Thread Douglas Knudsen
extract the URLRequest() call to a AS method. make sure your mx:script block has the CDATA schtuffs.DKOn 8/14/06, Rick Root [EMAIL PROTECTED] wrote:I've got an itemRenderer in a datagrid that's rendering a linkbutton with a script.The following doesn't work because it's not valid XML, with the

[flexcoders] exception during transcoding:

2006-08-14 Thread dadrobson
I keep getting the following compiler message: exception during transcoding: That is the entire message. It's interesting that there is no explanation as to what caused the exception; the colon at the end makes me think that something should follow, but nothing does. I'm left without a clue as

[flexcoders] Re: Split Application in Sections. Prevent one loading only.

2006-08-14 Thread falecomozig
I don´t know if it´s possible to interfere in the preloading funcs. In flash, I usuly set a flag when the movie has beeen already loaded, so it only load once. Maybe it´s possible to do something like this in flex, with the tab navigator. Maybe you know how to.. =) Thanks.. Zig --- In

[flexcoders] Variations of sending arguments to a WebService in AS

2006-08-14 Thread kaleb_pederson
Hello, I'm trying to send some arguments to a webservice, but every variation I have tried other than generating the XML from scratch keeps failing (eg. sends an empty message body). Relevant parts of the WSDL are as follows: message name=sendStrings part element=tns:sendStrings

Re: [flexcoders] Calling functions from an itemRenderer

2006-08-14 Thread Rick Root
Douglas Knudsen wrote: extract the URLRequest() call to a AS method. make sure your mx:script block has the CDATA schtuffs. This is what I had done, as mentioned here: I originally had a function defined in the same file that did that and I called like like this:

RE: [flexcoders] exception during transcoding:

2006-08-14 Thread Roger Gonzalez
Odds are good that there's a Flash 8 SWF tag in the file that we don't support in Flex 2. You're only looking at the error messages, I think uncaught compiler exceptions are logged in "About Flex Builder 2 Configuration Details Error Log". (Or run mxmlc at the command line.) We have a

[flexcoders] A simple printing question

2006-08-14 Thread hank williams
I am using FlexPrintJob to print a component that just has some html text in it. The problem is the text is more than one page, and the print code doesnt seem to be able to break the pages at line boundaries. Will any configuration of the API do this on its own? The thought of doing manual

[flexcoders] Re: How to detect absolute image URL when using mx.controls.Image control?

2006-08-14 Thread Sergey Kovalyov
No ideas? :( On 8/13/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! Sure, image URL is placed in source property of mx.controls.Image instance. But there could be relative path that is not starting from either http://; or https://;. Also the reference to the embeded resource could be

RE: [flexcoders] Cairngorm:One controller, so many commands, so many delegates, so many events

2006-08-14 Thread Darren Houle
Yes, however, I try to create files that can be reused... that way different save buttons can use the same save event, command and/or the same save service. Oversimplifying, I know, but that's the general idea. If you have an app that performs lots of CRUD then you can generalize your code

[flexcoders] Re: ASDoc now available on Labs

2006-08-14 Thread Geoffrey Williams
Any Idea what would fire off the following: Error: The definition is in circular inheritance. I can get it going by specifying individual classes but when I use - doc-sources I get an output of a few of those errors. --- In flexcoders@yahoogroups.com, Brian Deitte [EMAIL PROTECTED] wrote: And

[flexcoders] Problem after displaying video in TextArea

2006-08-14 Thread tonyx_788
Hi, i'm almost finish with my work but i have one last problemi'm using e4x to make a datagrid filter searchso i have a textinput,datagrid and a textareamx:TextInput id="inputText" width="134" change="xlc.refresh()" fontSize="12" /mx:DataGrid dataProvider="{xlc}"

[flexcoders] Re: Calling functions from an itemRenderer

2006-08-14 Thread Doug Lowder
I think you could have also used outerDocument.launchDetailsWindow (), as per http://livedocs.macromedia.com/flex/2/langref/mxml/component.html --- In flexcoders@yahoogroups.com, Rick Root [EMAIL PROTECTED] wrote: Douglas Knudsen wrote: extract the URLRequest() call to a AS method.

[flexcoders] Cairngorm: Opening sibling view?

2006-08-14 Thread flxcoder
I have a heirarchy of classes in my viewstate A. A has child aa, ab and ac. aa, ab and ac are siblings, think about them as being 3 canvases under A. aa has tabNavigator X ab received data and wants to set aa.X.selectedIndex = 1 or something. How can I get reference to the id X since X is a

[flexcoders] Re: Variations of sending arguments to a WebService in AS

2006-08-14 Thread ben.clinkinbeard
I didn't read through all of your code but here is the method I have been using with success. var op:Operation = service.getOperation(GetDataByGrouping) as Operation; op.resultFormat = e4x; // temp object to store arguments var args:Object = new Object(); args.groupingRequests = new Object();

Re: [flexcoders] Is FDS the right choice for me?

2006-08-14 Thread hank williams
Are there any alternative techniques with the Adobe family of products, or is Flex/FDS/ColdFusion/Actionscript my only option if server push is a key requirement? Yes, Flash Media Server was the way to do push before FDS. I believe FDS either includes some code or architectural elements from

Re: [flexcoders] Re: Bug applying filter to resized VBox

2006-08-14 Thread hank williams
Thanks Tim, but neither worked. It really is starting to feel like bug. I suspect I could isolate it pretty easily... but I need to find the time. I'm trying to push a first release out the door. For the time being I just dont apply the filter and everything is OK. Regards Hank On 8/14/06, Tim

[flexcoders] Re: exception during transcoding:

2006-08-14 Thread dadrobson
Hi Roger, There's nothing in the error log. I resolved the issue using the following steps: 1. Decompiled the SWF using the Sothink Decompiler 2. Recompiled it using the the Flash IDE --- In flexcoders@yahoogroups.com, Roger Gonzalez [EMAIL PROTECTED] wrote: Odds are good that there's a

[flexcoders] SOT: Flash Player 9 distribution

2006-08-14 Thread Rick Root
I don't want to have to tell my client base *NOT* to download the Yahoo Toolbar, and it annoys the heck out of me that Adobe puts that on their download page and checks it by default. Are there any other options besides directing people to the adobe page herE:

RE: [flexcoders] Re: ASDoc now available on Labs

2006-08-14 Thread Brian Deitte
Hi, I would just stick to doc-classes then. :) Well, I'm not sure why you'd get that with doc-sources. The compiler believes that you have something similar to a class A which extends B which extends A. If you could send me the files you use to reproduce this or a smaller test case, I can look

RE: [flexcoders] SOT: Flash Player 9 distribution

2006-08-14 Thread Kelly @ Dekayd Media Inc.
I agree. I think trying to trick people into installing third party crap software is stupid and I would hope that Adobe makes enough money on its own that it doesnt need to sellout to Yahoo. --Kelly From: flexcoders@yahoogroups.com

Re: [flexcoders] SOT: Flash Player 9 distribution

2006-08-14 Thread John Dowdell
Rick Root wrote: I don't want to have to tell my client base *NOT* to download the Yahoo Toolbar, and it annoys the heck out of me that Adobe puts that on their download page and checks it by default. Are there any other options besides directing people to the adobe page herE:

Re: [flexcoders] Re: ASDoc now available on Labs

2006-08-14 Thread Paul BH
I'm getting the same too - I seem to be getting in particularly on interface definitions - I'll try and make a simple reproducable case when I get a spare minute or two...taPBH On 8/14/06, Brian Deitte [EMAIL PROTECTED] wrote: Hi, I would just stick to

RE: [flexcoders] Re: ASDoc now available on Labs

2006-08-14 Thread Brian Deitte
Thanks. I'd love to dig into this more and figure out what's happening. -Brian From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul BHSent: Monday, August 14, 2006 4:29 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Re: ASDoc now

[flexcoders] Anyone know of an automatic generator of multiple Flex apps from a single SWF?

2006-08-14 Thread tombaggett
I've briefly reviewed the Ariaware Optimizer product, read Roger Gonalez' Multi-SWF apps and ApplicationDomain blog entries and Ted Patrick's Flex Shared Libraries posts, which leads me to a question. Should I be concerned with manually breaking my Flex app into smaller on-demand pieces or

[flexcoders] Asynchronous calls in Flex 1.5

2006-08-14 Thread digital_eyezed
Hi, Silly question really, I have an app that does this in a function: getTheData.method1(datef,datet,accessGroups,1,1); getTheData.method2(datef,datet,accessGroups,1,1); However, when you look at the dubug, method2 doesn't start until method1 is finished, I thought that they were meant to be

[flexcoders] removing a key from object

2006-08-14 Thread Doug Arthur
How do you remove a key from an Object in flex? This is what I currently have:UserData.getInstance().recordMap[vendorOrder.detail_id] = null; What I really want to doiscompletely remove vendorOrder.detail_id from the recordMap Object completely, not just set it null. Thanks! - Doug

RE: [flexcoders] Cairngorm:One controller, so many commands, so many delegates, so many events

2006-08-14 Thread Dimitrios Gianninas
What I do is typically is have one delegate that groups server interaction for every specific portion of the app. So one delegate is used by several commands. For an example ticketing app I'd have a UserDelegate (for specific user interaction, might have several method) and TicketDelegate

[flexcoders] Operation.arguments is populated but nulls are sent

2006-08-14 Thread ben.clinkinbeard
I am having a very odd error, and it only happens sometimes. I am creating an object structure and then assigning that to the arguments property of my mx.rpc.soap.Operation object like this: op.arguments = args; I then call the SOAP method like this: var call:AsyncToken =

[flexcoders] Re: Cairngorm: Opening sibling view?

2006-08-14 Thread Tim Hoff
Hi there, For simple applications you can reference siblings by traversing the dispay list: Application.application.A.aa.X.selectedIndex = 1;. However, since you are using Cairngorm, you can maintain encapsulation by binding the state (selectedIndex) to the ModelLocator. Jesse's going to have a

[flexcoders] Re: Asynchronous calls in Flex 1.5

2006-08-14 Thread Doug Lowder
Tricky stuff there. Peter Ent has a really helpful article on this:http://weblogs.macromedia.com/pent/archives/2005/02/operating_in_pa.cfm --- In flexcoders@yahoogroups.com, "digital_eyezed" [EMAIL PROTECTED] wrote: Hi, Silly question really, I have an app that does this in a function:

[flexcoders] Re: removing a key from object

2006-08-14 Thread Doug Lowder
You might be able to use the delete operator for this. http://livedocs.macromedia.com/flex/2/langref/operators.html#delete --- In flexcoders@yahoogroups.com, "Doug Arthur" [EMAIL PROTECTED] wrote: How do you remove a key from an Object in flex? This is what I currently have:

[flexcoders] Flex2: Error: VideoPlayerNetStream was unable to invoke callback onLastSecond

2006-08-14 Thread Tobias Patton
Has anyone seen this error? Im writing a control that displays an FLV file, allowing the user to pause, start, seek, etc. I sometimes get this error right before the FLV movie finishes. Thanks. Tobias. Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095:

RE: [flexcoders] Re: Best way to reference items in a parent MXML component?

2006-08-14 Thread Gordon Smith
How would a child call a function in the parent though? parentDocument.someMethod(); - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of ben.clinkinbeard Sent: Saturday, August 12, 2006 3:12 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: Macintosh hqx

2006-08-14 Thread Jason
Yeah, I am having problems as well. Does anyone else know how to make a OS X 'projector' FP9 SWFs? --jason --- In flexcoders@yahoogroups.com, Jeremy Lu [EMAIL PROTECTED] wrote: Second that, nice product and support. But seems Zinc v2.5 for FP9 is still a bit buggy, almost everything I

RE: [flexcoders] Draw Label Border

2006-08-14 Thread Gordon Smith
That's kind of a heavyweight solution. I'd recommend subclassing Label and overriding updateDisplayList() to draw a border. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sergey Kovalyov Sent: Saturday, August 12, 2006 7:04 AM

RE: [flexcoders] Re: Best way to reference items in a parent MXML component?

2006-08-14 Thread Gordon Smith
You can also simply use parentDocument.someMethod(); - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Franck de Bruijn Sent: Saturday, August 12, 2006 10:35 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Best

[flexcoders] Re: Asynchronous calls in Flex 1.5

2006-08-14 Thread digital_eyezed
Thanks a lot, I thought something strange was going on! Cheers, Iain --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: Tricky stuff there. Peter Ent has a really helpful article on this: http://weblogs.macromedia.com/pent/archives/2005/02/operating_in_pa.c fm

[flexcoders] Re: Cairngorm:One controller, so many commands, so many delegates, so many event

2006-08-14 Thread Jason
I tried combining similar events, commands, delegates with mixed success. For instance if I had one event called "UpdateTreeDataEvent" where I assigned different events as static vars like "ADD", "ADD_CHILD", "EDIT", "DELETE", etc. I could call specific events in that event class withvar

RE: [flexcoders] trace.... redirection possible?

2006-08-14 Thread Gordon Smith
Consider using the mx.logging.Log class instead of the trace() function. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Samuel Colak Sent: Monday, August 14, 2006 7:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

Re: [flexcoders] Flex2: Error: VideoPlayerNetStream was unable to invoke callback onLastSecond

2006-08-14 Thread Burak KALAYCI
Hi, onLastSecond is a custom event injected by our software FLVMDI ( http://www.buraks.com/flvmdi ) and Captionate ( http://www.captionate.com ). We were not aware of any issues related with it, till your post. It will be great if anyone else, especially from Adobe, can shed some light on this.

  1   2   >