[flexcoders] FDS 2.0

2006-08-14 Thread Mika Kiljunen
Hi, It’s a bit unclear to me… does FDS 2.0 contain remote object support or is it contained with Enterprise license only?   Hint… Adobe could put more info to the Adobe site concerning the differences of FDS licenses, please… J   -Mika       __._,_.___ -- Flexcoders

[flexcoders] Re: Trouble Printing lots of images--PLEASE HELP!!!!!!

2006-08-14 Thread Tim Hoff
Hi Wayne, This a little out of my area, but maybe it will spark an idea. Instead of loading the images that you want to print, one-at-a-time, into a canvas. You could load all of the images, at the same time, into a Repeater (or a list-based control). On creationComplete of the Repeater, ad

RE: [flexcoders] FDS:one-to-many with lazy evaluation

2006-08-14 Thread Matt Chotin
I believe the FlexCab sample has an example of this.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dmitry Miller Sent: Monday, August 14, 2006 5:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FDS:one-to-many with lazy evaluatio

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

2006-08-14 Thread Matt Chotin
You should be calling op.send(), if you call GetDataByGrouping() you’re ignoring the arguments.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of ben.clinkinbeard Sent: Monday, August 14, 2006 2:14 PM To: flexcoders@yahoogroups.com Su

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

2006-08-14 Thread Matt Chotin
It won’t be done automatically for you in the near-term; that’s a pretty hard problem to solve.  You will want to do it manually for now.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of tombaggett Sent: Monday, August 14, 2006 1:20

RE: [flexcoders] WhiteBoard

2006-08-14 Thread Matt Chotin
The free version is limited to 1 cpu with no clustering.  So depending on how many users you’re expecting it could be sufficient.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Weldon MacDonald Sent: Monday, August 14, 2006 3:13 AM

[flexcoders] Trouble Printing lots of images--PLEASE HELP!!!!!!

2006-08-14 Thread wayneposner
I've been trying to figure this one out for about a week now with no success. I'm trying to load a bunch of images dynamically from an XML file, pass each image, one at a time, to a Canvas and then print that Canvas, but only being prompted with the print dialog for the first image. If I just

[flexcoders] Videodisplay and NetConnection object must be connected errors

2006-08-14 Thread Dan Rossi
Hi, alot of the time when trying to use the VideoDisplay object i keep getting these exception errors. It seems the ns is being created before an actual connection is established. Is this a bug ? ArgumentError: Error #2126: NetConnection object must be connected.     at flash.net::NetStream/

[flexcoders] Re: passing a parameter to a flex application via a url

2006-08-14 Thread Doug Lowder
For clarity, 21-26 would look like the following: var myvars = new String(document.location).split('?')[1]; // --> --- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > Hi Hank, > > Line 21 would be a new line, not a replacement. That'll push the > flashvars line

[flexcoders] Re: passing a parameter to a flex application via a url

2006-08-14 Thread Doug Lowder
Hi Hank, Line 21 would be a new line, not a replacement. That'll push the flashvars line from 73 to 74, where you'll add your extra parameters. --- In flexcoders@yahoogroups.com, "hank williams" <[EMAIL PROTECTED]> wrote: > > Thanks Doug, > > This is **very** helpful. The only thing is I am n

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

2006-08-14 Thread Tom Fitzpatrick
Shan - yes, that was enough to get me going. It's actually easier than in 1.5. Thanks! - Tom Shannon Hicks wrote: > > Yes. Here's a little sample code, hopefully you can figure out what I > did :) > >public function getProductsResult(event:ResultEvent):void { > acProducts = event.res

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

2006-08-14 Thread Jeremy Lu
This had been discussed last week, Andrew provided a solution, try this: _camera = Camera.getCamera( "1" );Note it's a "1" (string) in the function. Jeremy.On 8/14/06, Dan Rossi <[EMAIL PROTECTED]> wrote: Hi, i think ive discovered a bug with the flash 9 p

Re: [flexcoders] Image manipulation on client side

2006-08-14 Thread Rick Root
edugalvez wrote: > > Any idea? I don't wanna say it can't be done but... I'm pretty sure it can't be done. Not with the flash player at least. Not on the client side. Why not upload to the server and then manipulate? Rick -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexco

Re: [flexcoders] Image manipulation on client side

2006-08-14 Thread Rick Root
edugalvez wrote: > > Any idea? To expand on my last message.. if you're using something like Coldfusion on the backside, you could upload the jpg and load it into the flex app dynamically (I think)... and then use web service / flex remoting calls to a CFC that would perform server side image

[flexcoders] FDS:one-to-many with lazy evaluation

2006-08-14 Thread Dmitry Miller
Hello, everyone Does anyone have a sample on managed lazy one-to-many FDS association? I could not find one on Adobe site nor on google. Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcod

Re: [flexcoders] Re: passing a parameter to a flex application via a url

2006-08-14 Thread hank williams
Thanks Doug, This is **very** helpful. The only thing is I am not quite sure where you want me to put the thing at line 21. Just for context 21 - 25 look like this: // --> If I replaced line 21 I would be replacing the end of a comment block. Did you mean to insert between the existing 21

[flexcoders] Re: passing a parameter to a flex application via a url

2006-08-14 Thread Doug Lowder
In FB2, open the html-template folder, right-click the index.template.html file and select open with -> text editor. The following changes will pass your url-string parameters on to the swf via the flashvars parameter: line 21: var myvars = new String(document.location).split('?')[1]; line 74

RE: [flexcoders] Select Multiple Dates

2006-08-14 Thread Deepa Subramaniam
Set the allowMultipleSelection property to true.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pateyog Sent: Monday, August 14, 2006 3:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Select Multiple Dates   Does anybo

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

2006-08-14 Thread ben.clinkinbeard
I am assuming that will require casting, correct? I think I tried that and by default parent or parentDocument (can't remember which I tried) returns a DisplayObject or something. So I guess I would need something like this? AnalysisStack(parentDocument).someMethod(); Thanks, Ben --- In flexcode

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

2006-08-14 Thread Dimitrios Gianninas
You can reuse the same event, but forgo the constructor. Have the event  class have the following fields:   public var xmlData:XML; public var itemId:Number;   So set which ever one u want based on the type of update u are doing, the command will extra what data it needs from the event. That

[flexcoders] passing a parameter to a flex application via a url

2006-08-14 Thread hank williams
I want to pass some information to my flex app on startup, and I want that info to be embedded in the url. The problem is that in order for flex to run nice it sits in some kind of swf html object which is a ctually the thing that calls the swf. So my question is how do I retain the benefits of th

[flexcoders] Need help using check box to remove data from chart and datagrid

2006-08-14 Thread jlingwai
I'm tring to have a datagrid update automatically when a check box is either checked or unchecked. I'm able to view all the data, but unable to remove data when the box is uncheck. Thanks, Josh -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.tx

[flexcoders] Re: removing a key from object

2006-08-14 Thread Doug Arthur
Ok, I sent this email too soon. I have figured it out.   delete UserData.getInstance().recordMap[vendorOrder.detail_id];   - Doug  On 8/14/06, Doug Arthur <[EMAIL PROTECTED]> wrote: How do you remove a key from an Object in flex?   This is what I currently have:UserData.getInstance().recordMap

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

2006-08-14 Thread kaleb_pederson
Ben, thanks for your comments. I added that to my list of variations and it results in the same traceback as does my variation six -- that is, it generates an error saying that sendStrings (or arg0) was an unexpected parameter found in the input :(. However... without seeing the relevant porti

[flexcoders] Re: Could not resolve to a component implementation." problem

2006-08-14 Thread boreasx
Hi it may be a late message but JVM causes problems on some operating systems in other than English Locale (My os is in Turkish Locale) . The workaround for this problem is to add two arguments to the jvm.config file. Those arguments overrides the local settings of the operating systems and for

[flexcoders] XML vs. Array data provider... inline renderer for DataGridColumn discrepancy

2006-08-14 Thread Jeff Kroll
I'm stuck! I can't get an inline renderer for DataGridColumn to work with an XML data provider, even though it works just fine for an Array data provider. Please see the example code.   Thanks in advance! Jeff     http://www.adobe.com/2006/mxml" height="350" width="250">          

[flexcoders] Select Multiple Dates

2006-08-14 Thread pateyog
Does anybody know how to make the tag to select multiple dates. Thanks in advance. -- 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

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

2006-08-14 Thread kaleb_pederson
Ben, unfortunately I can't give you any help... but this is about identical to what I see every time I try to send arguments in any non-trivial fashion (eg. wrapped in a sequence or using complex types). Basically, every time I send arguments ... they show up as nulls (eg. with empty bodies).

[flexcoders] Image manipulation on client side

2006-08-14 Thread edugalvez
Any idea? --- In flexcoders@yahoogroups.com, "edugalvez" <[EMAIL PROTECTED]> wrote: Hi all. How can my flex 2 application manipulate images on the client file system? Read manipulate as sepia-toning, resizing, rotating, exif-reading and uploading to server. Mainly jpgs. 1000 thanks. --- En

Re: [flexcoders] SOT: Flash Player 9 distribution

2006-08-14 Thread Rick Root
John Dowdell wrote: > > FAQ here: > http://www.adobe.com/products/flashplayer/productinfo/faq/#item-4-1 > > > Summary, as I recall: Those few IE/Win users who do not use the normal > ActiveX background installation, but are in

[flexcoders] Comobox dataprovider from an array

2006-08-14 Thread Jeremy Rottman
I am returning an array from my cfc, that holds data that I need to use to populate a combobox. I am returing the array objects NAME and ID from my cfc, I am trying to assign the return object NAME as the label of the combobox and assign the return object ID as the data for the combo box. this

RE: [flexcoders] removing a key from object

2006-08-14 Thread Gordon Smith
If recordMap is really just a plain Object, then you would do       delete UserData.getInstance().recordMap[vectorOrder.detail_id];   - Gordon   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Doug Arthur Sent: Monday, August 14, 2006 1:37

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.

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] tra

[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 nav:U

[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

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:

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

[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

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 S

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

2006-08-14 Thread Tobias Patton
Has anyone seen this error? I’m 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: VideoPlayer.as$

[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:> UserData.get

[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: 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

[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 = service.GetDataByGroupi

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] 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 do is completely remove vendorOrder.detail_id from the recordMap Object completely, not just set it null.   Thanks! - Doug __._,

[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] 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

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 ava

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 doc-cl

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: > http:/

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 doesn’t need to sellout to Yahoo.       --Kelly         From: flexcoders@yahoogroups.com [mailto:flexcoders@

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

[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: http://www.macromedia.com/go/getfl

[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

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 Ho

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 fr

[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();

[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 ch

[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 m

[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 textarea height="531"  x="5"  variableRowHeight="true" wordWrap="true" >                                               im u

[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: >

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 a

[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 > resourc

[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 paginat

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 hav

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: >

[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: ... And from the XSD:

[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 flexcoder

[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 t

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 t

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 a

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

[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 c

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, there's

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: flex

[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... I originally had a function defined

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

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 pat

[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: http://www.

[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: http:/

[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 w

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 better.

[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? > > Tha

[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] 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 refe

[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] 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=1&Object=File&objectID=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 se

[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: http://groups.yahoo.com/g

[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

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 ClassFactory(com.we

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: flexcoders@yahoog

[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] 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] 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): --- http://www.adobe.com/2006/mxml"

[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] AutoSy

[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 repe

[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 wh

[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 kn

  1   2   >